You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CNDB-16289: switch index hints limit to use Short.MAX_VALUE (#2174)
### What is the issue
Currently `maxIncludedOrExcludedIndexCount` is using
`getSecondaryIndexesPerTableFailThreshold` but the coordinator will
always validate that the indexes mentioned by the index hints exist in
the schema, and there cannot be repeated index in the hints because the
hints are disjoint sets. So the number of index hints is implicitly
limited by the number of existing indexes, therefore we should use
Short.MAX_VALUE like main does.
### What does this PR fix and why was it fixed
Change the index hint limit to use Short.MAX_VALUE
0 commit comments