これはコマンドであり、エラーが生成されます:
db.tweets.aggregate(
{$project:{'entities.hashtags.text':1}},
{$unwind:'$entities.hashtags'},
{$group:{_id:'$entities.hashtags.text'}})
{
"errmsg" : "exception: aggregation result exceeds maximum document size (16MB)",
"code" : 16389,
"ok" : 0
}
私は次のクエリを実行したいと思います:
entities.hashtags.text でグループ化し、存在するハッシュタグごとにそのハッシュタグを含むドキュメントの数をカウントします。
これはドキュメントの一部です:
...
エンティティ: {
media: [
...
],
urls: [],
hashtags: [
{
text: "makeuploos",
indices: [
54,
65
]
},
{
text: "onbewerkt",
indices: [
66,
76
]
},
{
text: "hoer",
indices: [
77,
82
]
}
],
...
これどうやってするの??