开发者社区 问答 正文

如何通过优化Explorer表的分片数来均匀机器负载?

如何通过优化Explorer表的分片数来均匀机器负载?

展开
收起
三分钟热度的鱼 2024-06-06 15:35:40 59 分享 版权
1 条回答
写回答
取消 提交回答
  • 表的分片数应根据集群的机器数量进行调整。例如,如果集群机器有14台,可以通过设置"hash_bucket"为14,使得链接都均匀分布在14台机器上,避免部分机器负载过高。具体的配置可能如下:

    {  
      "shardConfig_partition_columns": "test_column",  
      "hash_bucket": "14",  
      "update_model": "Row",  
      "shardConfig_task_replicants": "2",  
      "storage_engine": "test_engine",  
      "storage_explorer_tier": "test"  
    }
    
    2024-06-06 16:26:30
    赞同 展开评论
问答地址: