You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by "nextdreamblue (via GitHub)" <gi...@apache.org> on 2023/04/17 13:18:52 UTC

[GitHub] [doris] nextdreamblue opened a new issue, #18755: [Bug] lost disable_auto_compaction info when fe restart

nextdreamblue opened a new issue, #18755:
URL: https://github.com/apache/doris/issues/18755

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues.
   
   
   ### Version
   
   master
   
   ### What's Wrong?
   
   create table with "disable_auto_compaction" = "true"
   
   ```
   CREATE TABLE `ggggg2` (
     `user_id` bigint(20) NULL,
     `is_delete` tinyint(4) NULL,
     `client_version_int` int(11) NULL,
     `reg_time` bigint(20) NULL,
     `reg_days` int(11) NULL,
     `is_vip` tinyint(4) NULL,
     `time_zone_48` tinyint(4) NULL,
     `learn_language1` int(11) NULL,
     `device_detail` varchar(64) NULL
   ) ENGINE=OLAP
   DUPLICATE KEY(`user_id`, `is_delete`, `client_version_int`)
   COMMENT 'OLAP'
   DISTRIBUTED BY HASH(`user_id`) BUCKETS 4
   PROPERTIES (
   "replication_allocation" = "tag.location.default: 1",
   "in_memory" = "false",
   "storage_format" = "V2",
   "disable_auto_compaction" = "false"
   );
   ```
   
   
   and restart fe
   show create table ggggg2, will get 
   ```
   MySQL [test]> show create table ggggg2\G
   *************************** 1. row ***************************
          Table: ggggg2
   Create Table: CREATE TABLE `ggggg2` (
     `user_id` bigint(20) NULL,
     `is_delete` tinyint(4) NULL,
     `client_version_int` int(11) NULL,
     `reg_time` bigint(20) NULL,
     `reg_days` int(11) NULL,
     `is_vip` tinyint(4) NULL,
     `time_zone_48` tinyint(4) NULL,
     `learn_language1` int(11) NULL,
     `device_detail` varchar(64) NULL
   ) ENGINE=OLAP
   DUPLICATE KEY(`user_id`, `is_delete`, `client_version_int`)
   COMMENT 'OLAP'
   DISTRIBUTED BY HASH(`user_id`) BUCKETS 4
   PROPERTIES (
   "replication_allocation" = "tag.location.default: 1",
   "in_memory" = "false",
   "storage_format" = "V2",
   "disable_auto_compaction" = "false"
   );
   1 row in set (0.01 sec)
   ```
   
   lost disable_auto_compaction=true info
   
   ### What You Expected?
   
   disable_auto_compaction = true
   
   ### How to Reproduce?
   
   _No response_
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] yiguolei closed issue #18755: [Bug] lost disable_auto_compaction info when fe restart

Posted by "yiguolei (via GitHub)" <gi...@apache.org>.
yiguolei closed issue #18755: [Bug] lost disable_auto_compaction info when fe restart
URL: https://github.com/apache/doris/issues/18755


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org