ShardEngine相关属性在分片策略中有何意义?
运行 .show database
返回以下结果:
{
"MaxRowCount": 750000,
"MaxExtentSizeInMb": 1024,
"MaxOriginalSizeInMb": 2048,
"UseShardEngine": true,
"ShardEngineMaxRowCount": 1048576,
"ShardEngineMaxExtentSizeInMb": 8192,
"ShardEngineMaxOriginalSizeInMb": 3072
}
最后四个 ShardEngine 相关 json 属性的意义是什么? 文档没有提及它们。
Running .show database <DB name> policy sharding
for an ADX cluster with V3 kusto engine returns the below result:
{
"MaxRowCount": 750000,
"MaxExtentSizeInMb": 1024,
"MaxOriginalSizeInMb": 2048,
"UseShardEngine": true,
"ShardEngineMaxRowCount": 1048576,
"ShardEngineMaxExtentSizeInMb": 8192,
"ShardEngineMaxOriginalSizeInMb": 3072
}
What is the significance of the last four ShardEngine related json properties? The docs do not mention them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当
UseShaedEngine
为 true 时,名称以ShardEngine
开头的属性适用,即适用于使用 v3 引擎的表/数据库。 https://learn.microsoft.com/en-us/ azure/data-explorer/engine-v3最终,适用于先前版本引擎的第二组属性将从策略中删除。
Properties whose names start with
ShardEngine
apply whenUseShaedEngine
is true, i.e. to tables/databases that are using the v3 engine. https://learn.microsoft.com/en-us/azure/data-explorer/engine-v3Eventually, the second set of properties, that apply to the previous version of the engine, would be removed from the policy.