ShardManagement 二进制 ShardingKey 最大值
ShardManagement Binary ShardingKey Max Value
我目前正在设置我的 shardmap
管理器、分片映射...通过提供的 PowerShell
脚本 here。
虽然示例使用 int 作为 ShardingKey
类型,但我有一个 binary(16) ShardingKey
,有谁知道如何确定 max binary(16) 的高键并将其传递给 Add-RangeMapping
?
Add-RangeMapping
function calls the Range(low, high)
constructor. In order to create a range with a max high value, it would need to call the Range(low)
constructor。因此,您必须适当地编辑 Add-RangeMapping
函数(或者直接调用库代码而不使用 Add-RangeMapping
函数)。
PowerShell 帮助程序脚本并未涵盖完整的弹性数据库客户端库表面区域,因此您可能会发现更多空白。
我目前正在设置我的 shardmap
管理器、分片映射...通过提供的 PowerShell
脚本 here。
虽然示例使用 int 作为 ShardingKey
类型,但我有一个 binary(16) ShardingKey
,有谁知道如何确定 max binary(16) 的高键并将其传递给 Add-RangeMapping
?
Add-RangeMapping
function calls the Range(low, high)
constructor. In order to create a range with a max high value, it would need to call the Range(low)
constructor。因此,您必须适当地编辑 Add-RangeMapping
函数(或者直接调用库代码而不使用 Add-RangeMapping
函数)。
PowerShell 帮助程序脚本并未涵盖完整的弹性数据库客户端库表面区域,因此您可能会发现更多空白。