caiconghui opened a new issue #2738: Support replication_num setting for table level URL: https://github.com/apache/incubator-doris/issues/2738 **Is your feature request related to a problem? Please describe.** Now, there is only global level or partition level for replication_num setting, we need to set replication_num explicitly on alter table add partition statement every time. **Describe the solution you'd like** Support replication_num setting for table level, as a property stored in olap table. just like the following: mysql> show create table doris_test_partition1; +-----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +-----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | doris_test_partition1 | CREATE TABLE `doris_test_partition1` ( `olap_date` date NOT NULL COMMENT "", `id` int(11) NOT NULL COMMENT "", `name` varchar(100) NOT NULL COMMENT "" ) ENGINE=OLAP UNIQUE KEY(`olap_date`, `id`) COMMENT "OLAP" PARTITION BY RANGE(`olap_date`) (PARTITION p20191122 VALUES [('1900-01-01'), ('2019-11-23')), PARTITION p20191123 VALUES [('2019-11-23'), ('2019-11-24')), PARTITION p1111 VALUES [('2019-11-24'), ('2019-11-25')), PARTITION p111 VALUES [('2019-11-25'), ('2019-11-26')), PARTITION p1111111 VALUES [('2019-12-24'), ('2019-12-25'))) DISTRIBUTED BY HASH(`id`) BUCKETS 5 PROPERTIES ( "storage_type" = "COLUMN", "replication_num" = "1" ); | +-----------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.03 sec) mysql>
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
