forked from mongodb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidate.txt
346 lines (238 loc) · 9.55 KB
/
validate.txt
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
========
validate
========
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
.. dbcommand:: validate
The :dbcommand:`validate` command checks a collection's data and
indexes for correctness and returns the results.
Starting in version 5.0, the :dbcommand:`validate` command can also
find inconsistencies in the collection and fix them if possible.
.. include:: /includes/fact-validate-standalone-inconsistencies.rst
.. note::
The :dbcommand:`validate` command does not support :doc:`views
</core/views>` and raises an error when run against a view.
The :method:`db.collection.validate()` method in
:binary:`~bin.mongosh` provides a wrapper around
:dbcommand:`validate`.
Syntax
------
.. versionchanged:: 5.0
The command has the following syntax:
.. code-block:: javascript
db.runCommand( {
validate: <string>, // Collection name
full: <boolean>, // Optional
repair: <boolean> // Optional, added in MongoDB 5.0
} )
:binary:`~bin.mongosh` also provides a wrapper
:method:`db.collection.validate()`.
Command Fields
~~~~~~~~~~~~~~
The command takes the following fields:
.. list-table::
:header-rows: 1
:widths: 10 10 50
* - Field
- Type
- Description
* - ``validate``
- string
- The name of the collection to validate.
* - :ref:`full <cmd-validate-full>`
- boolean
- .. _cmd-validate-full:
*Optional*. A flag that determines whether the command
performs a slower but more thorough check or a faster but less thorough check.
- If ``true``, performs a more thorough check with the following
exception:
- Starting in MongoDB 4.4, full validation on the ``oplog``
for WiredTiger skips the more thorough check. The
:data:`validate.warnings` includes a notice of the behavior.
- If ``false``, omits some checks for a faster but less
thorough check.
The default is ``false``.
.. include:: /includes/fact-validate-wiredtiger-full-option.rst
* - :ref:`repair <cmd-validate-repair>`
- boolean
- .. _cmd-validate-repair:
.. include:: /includes/fact-validate-repair-option.rst
Behavior
--------
Performance
~~~~~~~~~~~
The :dbcommand:`validate` command can be slow, particularly on
larger data sets.
The :dbcommand:`validate` command obtains an exclusive lock ``W`` on
the collection. This will block all reads and writes on the collection
until the operation finishes. When run on a secondary, the
:dbcommand:`validate` operation can block all other operations on that
secondary until it finishes.
.. warning::
Due to the performance impact of validation, consider running
:dbcommand:`validate` only on :term:`secondary` replica set nodes.
You can use :method:`rs.stepDown()` to instruct the current
:term:`primary` node to become a secondary to avoid impacting a live
primary node.
Data Throughput Metrics
~~~~~~~~~~~~~~~~~~~~~~~
.. include:: /includes/extracts/4.4-validate-data-throughput.rst
Restrictions
~~~~~~~~~~~~~
MongoDB drivers automatically set :ref:`afterClusterTime
<afterClusterTime>` for operations associated with :ref:`causally
consistent sessions <causal-consistency>`. Starting in MongoDB 4.2, the
:dbcommand:`validate` command no longer support :ref:`afterClusterTime
<afterClusterTime>`. As such, :dbcommand:`validate` cannot be associatd
with :ref:`causally consistent sessions <causal-consistency>`.
Examples
--------
- To validate a collection ``myCollection`` using the default validation
setting (specifically, :ref:`full: false <cmd-validate-full>`):
.. code-block:: javascript
db.runCommand( { validate: "myCollection" } )
- To perform a full validation of collection ``myCollection``, specify
:ref:`full: true <cmd-validate-full>`:
.. code-block:: javascript
db.runCommand( { validate: "myCollection", full: true } )
- To repair collection ``myCollection``, specify
:ref:`repair: true <cmd-validate-repair>`:
.. code-block:: javascript
db.runCommand( { validate: "myCollection", repair: true } )
.. _validate-output:
Validate Output
---------------
.. include:: /includes/note-output-may-vary.rst
Specify :ref:`full: true <cmd-validate-full>` for more detailed output.
.. data:: validate.nInvalidDocuments
The number of invalid documents in the collection.
.. data:: validate.nrecords
The number of :term:`documents <document>` in the collection.
.. data:: validate.nIndexes
The number of indexes on the collection.
.. data:: validate.keysPerIndex
A document that contains the name and index entry count for each
index on the collection.
.. code-block:: javascript
:copyable: false
"keysPerIndex" : {
"_id_" : <num>,
"<index2_name>" : <num>,
...
}
Starting in MongoDB 4.2 (and 4.0.10+ and 3.6.13+),
:data:`~validate.keysPerIndex` identifies the index by its name
only. Earlier versions of MongoDB displayed the full namespace of
the index; i.e. ``<db>.<collection>.$<index_name>``
.. data:: validate.indexDetails
A document that contains the status of the index validation for each
index.
.. code-block:: javascript
:copyable: false
"indexDetails" : {
"_id_" : {
"valid" : <boolean>
},
"<index2_name>" : {
"valid" : <boolean>
},
...
}
Starting in MongoDB 4.2 (and 4.0.10+ and 3.6.13+),
- :data:`~validate.indexDetails` identifies the specific index (or
indexes) that is invalid. Earlier versions of MongoDB would mark
all indexes as invalid, if any of the indexes were invalid.
- :data:`~validate.indexDetails` identifies the index by its name
only. Earlier versions of MongoDB displayed the full namespace of
the index; i.e. ``<db>.<collection>.$<index_name>``.
.. data:: validate.ns
The full namespace name of the collection. Namespaces include the
database name and the collection name in the form
``database.collection``.
.. data:: validate.valid
A boolean that is ``true`` if :dbcommand:`validate` determines that
all aspects of the collection are valid. When ``false``, see the
:data:`~validate.errors` field for more information.
.. data:: validate.repaired
A boolean that is ``true`` if :dbcommand:`validate` repaired the
collection.
.. data:: validate.warnings
An array that contains warning messages, if any, regarding the
validate operation itself. The warning messages do not indicate that
the collection is itself invalid. For example:
.. code-block:: javascript
:copyable: false
"warnings" : [
"Could not complete validation of table:collection-28-6471619540207520785. This is a transient issue as the collection was actively in use by other operations."
],
.. data:: validate.errors
If the collection is not valid (i.e
:data:`~validate.valid` is false), this field will contain a message
describing the validation error.
.. data:: validate.extraIndexEntries
An array that contains information for each index entry that points
to a document that does not exist in the collection.
.. code-block:: javascript
:copyable: false
"extraIndexEntries" : [
{
"indexName" : <string>,
"recordId" : <NumberLong>, // for the non-existent document
"indexKey" : {
"<key1>" : <value>,
...
}
}
...
]
.. note::
For the :data:`~validate.extraIndexEntries` array, the sum of all
the ``indexKey`` field sizes has a limit of 1MB where the sizes
include both the keys and values for the ``indexKey``. If
the sum exceeds this size, the warning field displays a message.
*Available starting in MongoDB 4.2 (and 4.0.10+ and 3.6.13+)*
.. data:: validate.missingIndexEntries
An array that contains information for each document that is missing
the corresponding index entry.
.. code-block:: javascript
:copyable: false
"missingIndexEntries" : [
{
"indexName" : <string>,
"recordId" : <NumberLong>,
"idKey" : <_id key value>, // The _id value of the document. Only present if an ``_id`` index exists.
"indexKey" : { // The missing index entry
"<key1>" : <value>,
...
}
}
...
]
.. note::
For the :data:`~validate.missingIndexEntries` array, the sum of
the ``idKey`` field size and all its ``indexKey`` field sizes has
a limit of 1MB where the field sizes include both the keys and
values for the ``idKey`` and ``indexKey``. If the sum
exceeds this size, the warning field displays a message.
*Available starting in MongoDB 4.2 (and 4.0.10+ and 3.6.13+)*
.. data:: validate.corruptRecords
An array of ``RecordId`` values for documents that are unreadable,
possibly because the data is damaged. These documents are reported as
corrupt during validation. A ``RecordId`` is a 64-bit integer
internal key that uniquely identifies a document in a collection.
.. code-block:: javascript
:copyable: false
"corruptRecords" : [
NumberLong(1), // RecordId 1
NumberLong(2) // RecordId 2
]
.. versionadded:: 5.0
.. data:: validate.ok
An integer with the value ``1`` when the command succeeds. If the
command fails the :data:`~validate.ok` field has a value of ``0``.