summaryrefslogtreecommitdiff
path: root/src/mongo/s/write_ops/batch_write_op.h
blob: cf058a5ec232cb955d06198aede6b16285a1b1b8 (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
/**
 *    Copyright (C) 2013 MongoDB Inc.
 *
 *    This program is free software: you can redistribute it and/or  modify
 *    it under the terms of the GNU Affero General Public License, version 3,
 *    as published by the Free Software Foundation.
 *
 *    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
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *    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 GNU Affero General 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.
 */

#pragma once

#include <set>
#include <vector>

#include "mongo/base/disallow_copying.h"
#include "mongo/base/owned_pointer_vector.h"
#include "mongo/base/status.h"
#include "mongo/platform/unordered_map.h"
#include "mongo/s/ns_targeter.h"
#include "mongo/s/write_ops/batched_command_request.h"
#include "mongo/s/write_ops/batched_command_response.h"
#include "mongo/s/write_ops/wc_error_detail.h"
#include "mongo/s/write_ops/write_error_detail.h"
#include "mongo/s/write_ops/write_op.h"

namespace mongo {

    class TargetedWriteBatch;
    struct ShardError;
    struct ShardWCError;
    class TrackedErrors;
    struct BatchWriteStats;

    /**
     * The BatchWriteOp class manages the lifecycle of a batched write received by mongos.  Each
     * item in a batch is tracked via a WriteOp, and the function of the BatchWriteOp is to
     * aggregate the dispatched requests and responses for the underlying WriteOps.
     *
     * Overall, the BatchWriteOp lifecycle is similar to the WriteOp lifecycle, with the following
     * stages:
     *
     * 0) Client request comes in, batch write op is initialized
     *
     * 1a) One or more ops in the batch are targeted using targetBatch, resulting in
     *     TargetedWriteBatches for these ops.
     * 1b) There are targeting errors, and the batch must be retargeted after refreshing the
     *     NSTargeter.
     *
     * 2) (Child BatchCommandRequests are be built for each TargetedWriteBatch before sending)
     *
     * 3) Responses for sent TargetedWriteBatches are noted, errors are stored and aggregated per-
     *    write-op.  Errors the caller is interested in are returned.
     *
     * 4) If the batch write is not finished, goto 0
     *
     * 5) When all responses come back for all write ops, errors are aggregated and returned in
     *    a client response
     *
     */
    class BatchWriteOp {
    MONGO_DISALLOW_COPYING(BatchWriteOp);
    public:

        BatchWriteOp();

        ~BatchWriteOp();

        /**
         * Initializes the BatchWriteOp from a client batch request.
         */
        void initClientRequest( const BatchedCommandRequest* clientRequest );

        /**
         * Targets one or more of the next write ops in this batch op using a NSTargeter.  The
         * resulting TargetedWrites are aggregated together in the returned TargetedWriteBatches.
         *
         * If 'recordTargetErrors' is false, any targeting error will abort all current batches and
         * the method will return the targeting error.  No targetedBatches will be returned on
         * error.
         *
         * Otherwise, if 'recordTargetErrors' is true, targeting errors will be recorded for each
         * write op that fails to target, and the method will return OK.
         *
         * (The idea here is that if we are sure our NSTargeter is up-to-date we should record
         * targeting errors, but if not we should refresh once first.)
         *
         * Returned TargetedWriteBatches are owned by the caller.
         */
        Status targetBatch( const NSTargeter& targeter,
                            bool recordTargetErrors,
                            vector<TargetedWriteBatch*>* targetedBatches );

        /**
         * Fills a BatchCommandRequest from a TargetedWriteBatch for this BatchWriteOp.
         */
        void buildBatchRequest( const TargetedWriteBatch& targetedBatch,
                                BatchedCommandRequest* request ) const;

        /**
         * Stores a response from one of the outstanding TargetedWriteBatches for this BatchWriteOp.
         * The response may be in any form, error or not.
         *
         * There is an additional optional 'trackedErrors' parameter, which can be used to return
         * copies of any write errors in the response that the caller is interested in (specified by
         * errCode).  (This avoids external callers needing to know much about the response format.)
         */
        void noteBatchResponse( const TargetedWriteBatch& targetedBatch,
                                const BatchedCommandResponse& response,
                                TrackedErrors* trackedErrors );

        /**
         * Stores an error that occurred trying to send/recv a TargetedWriteBatch for this
         * BatchWriteOp.
         */
        void noteBatchError( const TargetedWriteBatch& targetedBatch,
                             const WriteErrorDetail& error );

        /**
         * Aborts any further writes in the batch with the provided error.  There must be no pending
         * ops awaiting results when a batch is aborted.
         *
         * Batch is finished immediately after aborting.
         */
        void abortBatch( const WriteErrorDetail& error );

        /**
         * Returns false if the batch write op needs more processing.
         */
        bool isFinished();

        /**
         * Fills a batch response to send back to the client.
         */
        void buildClientResponse( BatchedCommandResponse* batchResp );

        //
        // Accessors
        //

        int numWriteOps() const;

        int numWriteOpsIn( WriteOpState state ) const;

    private:

        // Incoming client request, not owned here
        const BatchedCommandRequest* _clientRequest;

        // Array of ops being processed from the client request
        WriteOp* _writeOps;

        // Current outstanding batch op write requests
        // Not owned here but tracked for reporting
        std::set<const TargetedWriteBatch*> _targeted;

        // Write concern responses from all write batches so far
        OwnedPointerVector<ShardWCError> _wcErrors;

        // Upserted ids for the whole write batch
        OwnedPointerVector<BatchedUpsertDetail> _upsertedIds;

        // Stats for the entire batch op
        scoped_ptr<BatchWriteStats> _stats;
    };

    struct BatchWriteStats {

        BatchWriteStats();

        int numInserted;
        int numUpserted;
        int numMatched;
        int numModified;
        int numDeleted;

    };

    /**
     * Data structure representing the information needed to make a batch request, along with
     * pointers to where the resulting responses should be placed.
     *
     * Internal support for storage as a doubly-linked list, to allow the TargetedWriteBatch to
     * efficiently be registered for reporting.
     */
    class TargetedWriteBatch {
    MONGO_DISALLOW_COPYING(TargetedWriteBatch);
    public:

        TargetedWriteBatch( const ShardEndpoint& endpoint ) :
            _endpoint( endpoint ) {
        }

        const ShardEndpoint& getEndpoint() const {
            return _endpoint;
        }

        /**
         * TargetedWrite is owned here once given to the TargetedWriteBatch
         */
        void addWrite( TargetedWrite* targetedWrite ) {
            _writes.mutableVector().push_back( targetedWrite );
        }

        const std::vector<TargetedWrite*>& getWrites() const {
            return _writes.vector();
        }

    private:

        // Where to send the batch
        const ShardEndpoint _endpoint;

        // Where the responses go
        // TargetedWrite*s are owned by the TargetedWriteBatch
        OwnedPointerVector<TargetedWrite> _writes;
    };

    /**
     * Simple struct for storing an error with an endpoint.
     *
     * Certain types of errors are not stored in WriteOps or must be returned to a caller.
     */
    struct ShardError {

        ShardError( const ShardEndpoint& endpoint, const WriteErrorDetail& error ) :
            endpoint( endpoint ) {
            error.cloneTo( &this->error );
        }

        const ShardEndpoint endpoint;
        WriteErrorDetail error;
    };

    /**
     * Simple struct for storing a write concern error with an endpoint.
     *
     * Certain types of errors are not stored in WriteOps or must be returned to a caller.
     */
    struct ShardWCError {

        ShardWCError( const ShardEndpoint& endpoint, const WCErrorDetail& error ) :
            endpoint( endpoint ) {
            error.cloneTo( &this->error );
        }

        const ShardEndpoint endpoint;
        WCErrorDetail error;
    };

    /**
     * Helper class for tracking certain errors from batch operations
     */
    class TrackedErrors {
    public:

        ~TrackedErrors();

        void startTracking( int errCode );

        bool isTracking( int errCode ) const;

        void addError( ShardError* error );

        const std::vector<ShardError*>& getErrors( int errCode ) const;

        void clear();

    private:

        typedef unordered_map<int, std::vector<ShardError*> > TrackedErrorMap;
        TrackedErrorMap _errorMap;
    };

}