I made a script in local development machine mongoDb 4.0 its working flawless but for client server MongoDb is 2.6 so $dateToString is not supported. is there any substitute using $dateToString into mongoDb 2.6.
Using MongoDb 4.0 :
JavaScript
x
10
10
1
db.getCollection('orgData').aggregate([
2
{$match:{'orgId' : 5} },
3
{$unwind :'$events.click'},
4
{'$project' :{'events.click' : 1}},
5
{$group :{
6
'_id' :{'$dateToString' : {format: "%Y-%m-%d",date:'$events.click.mongo_datetime'} }
7
,'count' : {'$sum' : 1}
8
}}
9
]);
10
Output :
JavaScript
1
12
12
1
/* 1 */
2
{
3
"_id" : "2019-03-01",
4
"count" : 1427.0
5
}
6
7
/* 2 */
8
{
9
"_id" : "2019-02-28",
10
"count" : 2244.0
11
}
12
But in MongoDb 2.6 Iam getting Error :
JavaScript
1
21
21
1
assert: command failed: {
2
"errmsg" : "exception: invalid operator '$dateToString'",
3
"code" : 15999,
4
"ok" : 0
5
} : aggregate failed
6
Error: command failed: {
7
"errmsg" : "exception: invalid operator '$dateToString'",
8
"code" : 15999,
9
"ok" : 0
10
} : aggregate failed
11
at Error (<anonymous>)
12
at doassert (src/mongo/shell/assert.js:11:14)
13
at Function.assert.commandWorked (src/mongo/shell/assert.js:244:5)
14
at DBCollection.aggregate (src/mongo/shell/collection.js:1149:12)
15
at (shell):1:29
16
2019-09-13T17:28:57.980+1000 Error: command failed: {
17
"errmsg" : "exception: invalid operator '$dateToString'",
18
"code" : 15999,
19
"ok" : 0
20
} : aggregate failed at src/mongo/shell/assert.js:13
21
Database design :
Advertisement
Answer
In MongoDB 2.6 you would need to use the date operators together with the string operator $concat
to achieve the desired expression
as substitute. Consider the following example :
JavaScript
1
26
26
1
db.getCollection('orgData').aggregate([
2
{ '$match': { 'orgId' : 5 } },
3
{ '$unwind': '$events.click' },
4
{ '$group' :{
5
'_id': {
6
'$concat': [
7
{ '$substr': [
8
{ '$year': '$events.click.mongo_datetime' },
9
0,4
10
] },
11
'-',
12
{ '$substr': [
13
{ '$month': '$events.click.mongo_datetime' },
14
0,2
15
] },
16
'-',
17
{ '$substr': [
18
{ '$dayOfMonth': '$events.click.mongo_datetime' },
19
0,2
20
] }
21
]
22
},
23
'count': { '$sum' : 1 }
24
} }
25
]);
26
Note: the $project
pipeline stage becomes redundant if used before a $group
pipeline step since $group
will change the document schema as a result.