We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tablet schema: CREATE TABLE test.table_auto ( idint NOT NULL,namevarchar(65533) NOT NULL,TIME_STAMP datetime NOT NULL ) ENGINE=OLAP DUPLICATE KEY(id) AUTO PARTITION BY RANGE (date_trunc(TIME_STAMP, 'week')) () DISTRIBUTED BY HASH(id) BUCKETS 10 PROPERTIES ( "replication_allocation" = "tag.location.default: 3", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" );
CREATE TABLE test.table_auto (
int NOT NULL,
varchar(65533) NOT NULL,
datetime NOT NULL ) ENGINE=OLAP DUPLICATE KEY(
) AUTO PARTITION BY RANGE (date_trunc(
, 'week')) () DISTRIBUTED BY HASH(
) BUCKETS 10 PROPERTIES ( "replication_allocation" = "tag.location.default: 3", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" );
Problem: After using the insert into statement to write data to the table_auto table in batches, the CPU of the BE node will rise to more than 85%.
The text was updated successfully, but these errors were encountered:
OK, I will schedule to solve it
Sorry, something went wrong.
No branches or pull requests
Search before asking
Description
tablet schema:
CREATE TABLE test.table_auto (
idint NOT NULL,
namevarchar(65533) NOT NULL,
TIME_STAMPdatetime NOT NULL ) ENGINE=OLAP DUPLICATE KEY(
id) AUTO PARTITION BY RANGE (date_trunc(
TIME_STAMP, 'week')) () DISTRIBUTED BY HASH(
id) BUCKETS 10 PROPERTIES ( "replication_allocation" = "tag.location.default: 3", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_medium" = "hdd", "storage_format" = "V2", "inverted_index_storage_format" = "V1", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false", "group_commit_interval_ms" = "10000", "group_commit_data_bytes" = "134217728" );
Problem: After using the insert into statement to write data to the table_auto table in batches, the CPU of the BE node will rise to more than 85%.
Solution
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: