summaryrefslogtreecommitdiff
path: root/src/mongo/s/analyze_shard_key_cmd.idl
blob: b579adab485422d36cb4834db7d0279a57041d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
# Copyright (C) 2022-present MongoDB, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the Server Side Public License, version 1,
# as published by MongoDB, Inc.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# Server Side Public License for more details.
#
# You should have received a copy of the Server Side Public License
# along with this program. If not, see
# <http://www.mongodb.com/licensing/server-side-public-license>.
#
# As a special exception, the copyright holders give permission to link the
# code of portions of this program with the OpenSSL library under certain
# conditions as described in each individual source file and distribute
# linked combinations including the program with the OpenSSL library. You
# must comply with the Server Side Public License in all respects for
# all of the code used other than as permitted herein. If you modify file(s)
# with this exception, you may extend this exception to your version of the
# file(s), but you are not obligated to do so. If you do not wish to do so,
# delete this exception statement from your version. If you delete this
# exception statement from all source files in the program, then also delete
# it in the license file.
#

global:
  cpp_namespace: "mongo::analyze_shard_key"
  cpp_includes:
    - "mongo/client/read_preference.h"
    - "mongo/s/analyze_shard_key_util.h"

imports:
  - "mongo/client/read_preference_setting.idl"
  - "mongo/db/basic_types.idl"
  - "mongo/db/keypattern.idl"

enums:
  MonotonicityType:
    description: "The monotonicity type of a shard key."
    type: string
    values:
      kMonotonic: "monotonic"
      kNotMonotonic: "not monotonic"
      kUnknown: "unknown"

structs:
  ValueFrequencyMetrics:
    description: "The value and frequency of a shard key value."
    strict: false
    fields:
      value:
        type: object_owned
      frequency:
        type: long
        validator: { gt: 0 }

  MonotonicityMetrics:
    description: "The metrics about the monotonicity of a shard key, i.e. whether its value is
                  monotonically changing in insertion order."
    strict: false
    fields:
      recordIdCorrelationCoefficient:
        type: double
        description: "The RecordId correlation coefficient calculated by the monotonicity check.
                      This is only set if the monotonicity check occurred, i.e. if the shard key
                      has a supporting index and the collection is not clustered."
        validator:
          gte: -1
          lte: 1
        optional: true
      type:
        type: MonotonicityType
        description: "The monotonicity type."

  KeyCharacteristicsMetrics:
    description: "The metrics about the characteristics of a shard key."
    strict: false
    fields:
      numDocs:
        type: long
        description: "The number of the documents in the collection."
        validator: { gte: 0 }
        optional: true
      isUnique:
        type: bool
        description: "Whether the shard key index enforces a uniqueness constraint."
        optional: true
      numDistinctValues:
        type: long
        description: "The number of distinct shard key values in the collection."
        validator: { gte: 0 }
        optional: true
      mostCommonValues:
        type: array<ValueFrequencyMetrics>
        description: "The value and frequency of the most common shard key values."
        optional: true
      monotonicity:
        type: MonotonicityMetrics
        description: "The monotonicity metrics for the shard key."
        optional: true
      avgDocSizeBytes:
        type: long
        description: "The average document size in bytes."
        validator: { gte: 0 }
        optional: true
      numOrphanDocs:
        type: long
        description: "The number of the orphan documents in the collection."
        validator: { gte: 0 }
        optional: true

  ReadSampleSize:
    description: "The number of sampled read queries by command name."
    strict: false
    fields:
      total:
        type: long
        validator: { gte: 0 }
        default: 0
      find:
        type: long
        validator: { gte: 0 }
        default: 0
      aggregate:
        type: long
        validator: { gte: 0 }
        default: 0
      count:
        type: long
        validator: { gte: 0 }
        default: 0
      distinct:
        type: long
        validator: { gte: 0 }
        default: 0

  WriteSampleSize:
    description: "The number of sampled write queries by command name."
    strict: false
    fields:
      total:
        type: long
        validator: { gte: 0 }
        default: 0
      update:
        type: long
        validator: { gte: 0 }
        default: 0
      delete:
        type: long
        validator: { gte: 0 }
        default: 0
      findAndModify:
        type: long
        validator: { gte: 0 }
        default: 0

  ReadDistributionMetrics:
    description: "The metrics about the read distribution calculated using sampled read queries."
    strict: false
    fields:
      sampleSize:
        type: ReadSampleSize
      numSingleShardReads:
        type: long
        cpp_name: numSingleShard
        validator: { gte: 0 }
        optional: true
      percentageOfSingleShardReads:
        type: double
        cpp_name: percentageOfSingleShard
        validator:
          gte: 0
          lte: 100
        optional: true
      numMultiShardReads:
        type: long
        cpp_name: numMultiShard
        validator: { gte: 0 }
        optional: true
      percentageOfMultiShardReads:
        type: double
        cpp_name: percentageOfMultiShard
        validator:
          gte: 0
          lte: 100
        optional: true
      numScatterGatherReads:
        type: long
        cpp_name: numScatterGather
        validator: { gte: 0 }
        optional: true
      percentageOfScatterGatherReads:
        type: double
        cpp_name: percentageOfScatterGather
        validator:
          gte: 0
          lte: 100
        optional: true
      numReadsByRange:
        type: array<long>
        cpp_name: numByRange
        description: "The number of dispatched read requests for each chunk range sorted from
                      MinKey to MaxKey."
        optional: true

  WriteDistributionMetrics:
    description: "The metrics about the write distribution calculated using sampled write queries."
    strict: false
    fields:
      sampleSize:
        type: WriteSampleSize
      numSingleShardWrites:
        type: long
        cpp_name: numSingleShard
        validator: { gte: 0 }
        optional: true
      percentageOfSingleShardWrites:
        type: double
        cpp_name: percentageOfSingleShard
        validator:
          gte: 0
          lte: 100
        optional: true
      numMultiShardWrites:
        type: long
        cpp_name: numMultiShard
        validator: { gte: 0 }
        optional: true
      percentageOfMultiShardWrites:
        type: double
        cpp_name: percentageOfMultiShard
        validator:
          gte: 0
          lte: 100
        optional: true
      numScatterGatherWrites:
        type: long
        cpp_name: numScatterGather
        validator: { gte: 0 }
        optional: true
      percentageOfScatterGatherWrites:
        type: double
        cpp_name: percentageOfScatterGather
        validator:
          gte: 0
          lte: 100
        optional: true
      numWritesByRange:
        type: array<long>
        cpp_name: numByRange
        description: "The number of dispatched write requests for each chunk range sorted from
                      MinKey to MaxKey."
        optional: true
      numShardKeyUpdates:
        type: long
        validator: { gte: 0 }
        optional: true
      percentageOfShardKeyUpdates:
        type: double
        validator:
          gte: 0
          lte: 100
        optional: true
      numSingleWritesWithoutShardKey:
        type: long
        validator: { gte: 0 }
        optional: true
      percentageOfSingleWritesWithoutShardKey:
        type: double
        validator:
          gte: 0
          lte: 100
        optional: true
      numMultiWritesWithoutShardKey:
        type: long
        validator: { gte: 0 }
        optional: true
      percentageOfMultiWritesWithoutShardKey:
        type: double
        validator:
          gte: 0
          lte: 100
        optional: true

  analyzeShardKeyResponse:
    description: "The response for the 'analyzeShardKey' command."
    strict: false
    inline_chained_structs: true
    chained_structs:
      KeyCharacteristicsMetrics: keyCharacteristics
    fields:
      readDistribution:
        type: ReadDistributionMetrics
        optional: true
      writeDistribution:
        type: WriteDistributionMetrics
        optional: true
      note:
        description: "The note about how to interpret the metrics."
        type: string
        optional: true

commands:
  analyzeShardKey:
    description: "The command for calculating metrics for evaluating a shard key for a collection."
    command_name: analyzeShardKey
    strict: false
    namespace: type
    api_version: ""
    type: namespacestring
    fields:
      key:
        type: KeyPattern
        description: "The shard key to evaluate."
        validator:
          callback: validateShardKeyPattern
      $readPreference:
        type: readPreference
        cpp_name: readPreference
        description: >-
            The read preference to use for metrics calculation. The default is set to
            "secondaryPreferred" to minimize the impact on user workloads.
        default: ReadPreferenceSetting{ReadPreference::SecondaryPreferred}