-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(NODE-6329): client bulk write happy path
- Loading branch information
Showing
26 changed files
with
2,617 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import type { Document } from '../bson'; | ||
import { type ClientBulkWriteCursorResponse } from '../cmap/wire_protocol/responses'; | ||
import type { MongoClient } from '../mongo_client'; | ||
import { ClientBulkWriteOperation } from '../operations/client_bulk_write/client_bulk_write'; | ||
import { type ClientBulkWriteOptions } from '../operations/client_bulk_write/common'; | ||
import { executeOperation } from '../operations/execute_operation'; | ||
import type { ClientSession } from '../sessions'; | ||
import { mergeOptions, MongoDBNamespace } from '../utils'; | ||
import { | ||
AbstractCursor, | ||
type AbstractCursorOptions, | ||
type InitialCursorResponse | ||
} from './abstract_cursor'; | ||
|
||
/** @public */ | ||
export interface ClientBulkWriteCursorOptions | ||
extends AbstractCursorOptions, | ||
ClientBulkWriteOptions {} | ||
|
||
/** | ||
* @public | ||
*/ | ||
export class ClientBulkWriteCursor extends AbstractCursor { | ||
public readonly command: Document; | ||
/** @internal */ | ||
private cursorResponse?: ClientBulkWriteCursorResponse; | ||
/** @internal */ | ||
private clientBulkWriteOptions: ClientBulkWriteOptions; | ||
|
||
/** @internal */ | ||
constructor(client: MongoClient, command: Document, options: ClientBulkWriteOptions = {}) { | ||
super(client, new MongoDBNamespace('admin'), options); | ||
|
||
this.command = command; | ||
this.clientBulkWriteOptions = options; | ||
} | ||
|
||
get response(): ClientBulkWriteCursorResponse { | ||
if (this.cursorResponse) return this.response; | ||
throw new Error('no cursor response'); | ||
} | ||
|
||
clone(): ClientBulkWriteCursor { | ||
const clonedOptions = mergeOptions({}, this.clientBulkWriteOptions); | ||
delete clonedOptions.session; | ||
return new ClientBulkWriteCursor(this.client, this.command, { | ||
...clonedOptions | ||
}); | ||
} | ||
|
||
/** @internal */ | ||
async _initialize(session: ClientSession): Promise<InitialCursorResponse> { | ||
const clientBulkWriteOperation = new ClientBulkWriteOperation(this.command, { | ||
...this.clientBulkWriteOptions, | ||
...this.cursorOptions, | ||
session | ||
}); | ||
|
||
const response = await executeOperation(this.client, clientBulkWriteOperation); | ||
this.cursorResponse = response; | ||
|
||
return { server: clientBulkWriteOperation.server, session, response }; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { type Document } from 'bson'; | ||
|
||
import { ClientBulkWriteCursorResponse } from '../../cmap/wire_protocol/responses'; | ||
import type { Server } from '../../sdam/server'; | ||
import type { ClientSession } from '../../sessions'; | ||
import { AbstractOperation, Aspect, defineAspects } from '../operation'; | ||
import { type ClientBulkWriteOptions } from './common'; | ||
|
||
export class ClientBulkWriteOperation extends AbstractOperation<ClientBulkWriteCursorResponse> { | ||
command: Document; | ||
override options: ClientBulkWriteOptions; | ||
|
||
override get commandName() { | ||
return 'bulkWrite' as const; | ||
} | ||
|
||
constructor(command: Document, options: ClientBulkWriteOptions) { | ||
super(options); | ||
this.command = command; | ||
this.options = options; | ||
} | ||
|
||
override async execute( | ||
server: Server, | ||
session: ClientSession | undefined | ||
): Promise<ClientBulkWriteCursorResponse> { | ||
return await server.command( | ||
this.ns, | ||
this.command, | ||
{ | ||
...this.options, | ||
...this.bsonOptions, | ||
documentsReturnedIn: 'firstBatch', | ||
session | ||
}, | ||
ClientBulkWriteCursorResponse | ||
); | ||
} | ||
} | ||
|
||
defineAspects(ClientBulkWriteOperation, [Aspect.WRITE_OPERATION]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import { ClientBulkWriteCursor } from '../../cursor/client_bulk_write_cursor'; | ||
import { type MongoClient } from '../../mongo_client'; | ||
import { ClientBulkWriteCommandBuilder } from './command_builder'; | ||
import { | ||
type AnyClientBulkWriteModel, | ||
type ClientBulkWriteOptions, | ||
type ClientBulkWriteResult | ||
} from './common'; | ||
import { ClientBulkWriteResultsMerger } from './results_merger'; | ||
|
||
/** | ||
* Responsible for executing a client bulk write. | ||
* @internal | ||
*/ | ||
export class ClientBulkWriteExecutor { | ||
client: MongoClient; | ||
options: ClientBulkWriteOptions; | ||
operations: AnyClientBulkWriteModel[]; | ||
|
||
/** | ||
* Instantiate the executor. | ||
* @param client - The mongo client. | ||
* @param operations - The user supplied bulk write models. | ||
* @param options - The bulk write options. | ||
*/ | ||
constructor( | ||
client: MongoClient, | ||
operations: AnyClientBulkWriteModel[], | ||
options?: ClientBulkWriteOptions | ||
) { | ||
this.client = client; | ||
this.options = options || {}; | ||
this.operations = operations; | ||
} | ||
|
||
/** | ||
* Execute the client bulk write. Will split commands into batches and exhaust the cursors | ||
* for each, then merge the results into one. | ||
* @returns The result. | ||
*/ | ||
async execute(): Promise<ClientBulkWriteResult> { | ||
// The command builder will take the user provided models and potential split the batch | ||
// into multiple commands due to size. | ||
const commmandBuilder = new ClientBulkWriteCommandBuilder(this.operations, this.options); | ||
const commands = commmandBuilder.buildCommands(); | ||
const resultsMerger = new ClientBulkWriteResultsMerger(this.options); | ||
// For each command will will create and exhaust a cursor for the results. | ||
for (const command of commands) { | ||
const cursor = new ClientBulkWriteCursor(this.client, command, this.options); | ||
for (const docs of await cursor.toArray()) { | ||
resultsMerger.merge(command.ops.documents, cursor.response, docs); | ||
} | ||
} | ||
return resultsMerger.result; | ||
} | ||
} |
Oops, something went wrong.