PHP Classes

File: vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/mapReduce.json

Recommend this page to a friend!
  Classes of walid laggoune   MongoDB Queue PHP Query Execute   vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/mapReduce.json   Download  
File: vendor/mongodb/mongodb/tests/SpecTests/retryable-reads/mapReduce.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: MongoDB Queue PHP Query Execute
Query and execute multiple queries using MongoDB
Author: By
Last change:
Date: 4 years ago
Size: 4,426 bytes
 

Contents

Class file image Download
{ "runOn": [ { "minServerVersion": "4.0", "topology": [ "single", "replicaset" ] }, { "minServerVersion": "4.1.7", "topology": [ "sharded" ] } ], "database_name": "retryable-reads-tests", "collection_name": "coll", "data": [ { "_id": 1, "x": 0 }, { "_id": 2, "x": 1 }, { "_id": 3, "x": 2 } ], "tests": [ { "description": "MapReduce succeeds with retry on", "operations": [ { "name": "mapReduce", "object": "collection", "arguments": { "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "result": [ { "_id": 0.0, "value": 6.0 } ] } ], "expectations": [ { "command_started_event": { "command": { "mapReduce": "coll", "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "database_name": "retryable-reads-tests" } } ] }, { "description": "MapReduce fails with retry on", "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "mapReduce" ], "closeConnection": true } }, "operations": [ { "name": "mapReduce", "object": "collection", "arguments": { "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "error": true } ], "expectations": [ { "command_started_event": { "command": { "mapReduce": "coll", "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "database_name": "retryable-reads-tests" } } ] }, { "description": "MapReduce fails with retry off", "clientOptions": { "retryReads": false }, "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "mapReduce" ], "closeConnection": true } }, "operations": [ { "name": "mapReduce", "object": "collection", "arguments": { "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "error": true } ], "expectations": [ { "command_started_event": { "command": { "mapReduce": "coll", "map": { "$code": "function inc() { return emit(0, this.x + 1) }" }, "reduce": { "$code": "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }, "out": { "inline": 1 } }, "database_name": "retryable-reads-tests" } } ] } ] }