summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/aggregate_command.idl
blob: 80f83a4d1f94d25c0ada1ebf3f30632942bd7c98 (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
# Copyright (C) 2020-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"
    cpp_includes:
        - "mongo/db/pipeline/aggregation_request_helper.h"
        - "mongo/db/query/count_request.h"
        - "mongo/db/query/explain_options.h"

imports:
    - "mongo/idl/basic_types.idl"
    - "mongo/db/pipeline/exchange_spec.idl"
    - "mongo/db/pipeline/legacy_runtime_constants.idl"
    - "mongo/db/query/hint.idl"
    - "mongo/db/write_concern_options.idl"

types:
    pipeline:
        bson_serialization_type: any
        description: "An array of objects specifying the aggregation pipeline."
        cpp_type: "std::vector<mongo::BSONObj>" 
        deserializer: ::mongo::parsePipelineFromBSON
    aggregateCursor:
        bson_serialization_type: any
        description: "A cursor type representing the cursor field of aggregate command."
        cpp_type: SimpleCursorOptions
        serializer: ::mongo::serializeAggregateCursorToBSON
        deserializer: ::mongo::parseAggregateCursorFromBSON
    explainVerbosity:
        bson_serialization_type: any
        description: "The Verbosity value representing explain verbosity."
        cpp_type: "mongo::ExplainOptions::Verbosity"
        serializer: ::mongo::serializeExplainToBSON
        deserializer: ::mongo::parseExplainModeFromBSON

commands:
    aggregate:
        description: "Represents the user-supplied options to the aggregate command."
        cpp_name: AggregateCommand
        command_name: aggregate
        strict: true
        namespace: concatenate_with_db
        api_version: ""
        allow_global_collection_name: true
        fields:
            pipeline:
                description: "An unparsed version of the pipeline."
                type: pipeline
            explain:
                description: "Specifies to return the information on the processing of the pipeline."
                type: explainVerbosity
                optional: true
            allowDiskUse:
                description: "Enables writing to temporary files."
                type: optionalBool
            cursor:
                description: "To indicate a cursor with a non-default batch size."
                type: aggregateCursor
                default: SimpleCursorOptions()
            maxTimeMS:
                description: "Specifies a time limit in milliseconds for processing operations on a cursor. If you do not specify a value for maxTimeMS, operations will not time out."
                type: safeInt64
                validator: { gte: 0 }
                optional: true
            bypassDocumentValidation:
                description: "True if this should bypass the document validation."
                type: safeBool
                optional: true
            readConcern:
                description: "Specifies the read concern."
                type: object_owned
                optional: true
            collation:
                description: "Specifies the collation to use for the operation."
                type: object_owned
                optional: true
            hint:
                description: "The index name to use or the index specification document."
                type: indexHint
                optional: true
            writeConcern:
                description: "A document that expresses the write concern to use with the $out or $merge stage."
                type: WriteConcern
                optional: true
            let:
                description: "A document containing user-specified let parameter constants; i.e. values that do not change once computed."
                type: object_owned
                optional: true
            needsMerge:
                description: "True if this request represents the shards part of a split pipeline, and should produce mergeable output."
                type: optionalBool
            fromMongos:
                description: "True if this request originated from a mongoS."
                type: optionalBool

            # TODO: Mark the undocumented parameters below as 'unstable'.
            $queryOptions:
                description: "The unwrapped readPreference object, if one was given to us by the mongos command processor. This object will be empty when no readPreference is specified or if the request does not originate from mongos."
                cpp_name: unwrappedReadPref
                type: object_owned
                optional: true
            $_requestReshardingResumeToken:
                description: "True if this requests resharding resume token."
                cpp_name: requestReshardingResumeToken
                type: optionalBool
            exchange:
                description: "An optional exchange specification for this request. If set it means that the request represents a producer running as a part of the exchange machinery. This is an internal option; we do not expect it to be set on requests from users or drivers."
                type: ExchangeSpec
                optional: true
            runtimeConstants:
                description: "A legacy way to specify constant variables available during execution. 'let' is now preferred."
                type: LegacyRuntimeConstants
                cpp_name: legacyRuntimeConstants
                optional: true
            isMapReduceCommand:
                description: "True if an aggregation was invoked by the MapReduce command."
                type: optionalBool
            collectionUUID:
                description: "The expected UUID of the namespace the aggregation executes on."
                type: uuid
                optional: true
            use44SortKeys:
                # TODO SERVER-47065: A 5.0 node still has to accept the 'use44SortKeys' field, since it
                # could be included in a command sent from a 4.4 mongos or 4.4 mongod. In 5.1, this
                # code to tolerate the 'use44SortKeys' field can be deleted.
                description: "If true, this aggregation will use the 4.4 sort key format."
                type: bool
                ignore: true
            useNewUpsert:
                # TODO SERVER-46751: we must retain the ability to ingest the 'useNewUpsert' field for
                # 5.0 upgrade purposes, since a 4.4 mongoS will always send {useNewUpsert:true} to the
                # shards. We do nothing with it because useNewUpsert will be automatically used in 5.0
                # when appropriate. Remove this final vestige of useNewUpsert when 5.0 becomes
                # last-lts.
                description: "A flag to indicate wether or not to use new upsert option."
                type: bool
                ignore: true