mongodb聚合嵌入式文档值

时间:2013-09-13 11:54:48

标签: mongodb mongodb-query

我在mongodb中使用了一些聚合函数。

说我有这样的文件

 [
 {
    _id: "1",
    periods: [
      {
         _id: "12",
         tables: [
           {
              _id: "121",
              rows: [
                  { _id: "1211", text: "some text"},
                  { _id: "1212", text: "some other text"},
                  { _id: "1213", text: "yet another text"},

              ]
           }
         ]
      },
      {
         _id: "13",
         tables: [
           {
              _id: "131",
              rows: [
                  { _id: "1311", text: "different text"},
                  { _id: "1312", text: "Oh yeah"}                      
              ]
           }
         ]
      }
    ]
 },
 {
    _id: "2",
    periods: [
      {
         _id: "21",
         tables: [
           {
              _id: "212",
              rows: [
                  { _id: "2121", text: "period2 text"},
                  { _id: "2122", text: "period2 other text"},
                  { _id: "2123", text: "period2 yet another text"},

              ]
           }
         ]
      }
    ]
 }
 ]

现在我想使用mongodb查询来检索一个特定顶级项目的所有唯一文本。

例如,聚合顶部_id的所有文本1.这意味着我想要获得两个期间子树中的所有文本。

预期产出如下:

在_id:1

上过滤聚合文本
[
   "some text",
   "some other text",
   "yet another text",
   "different text",
   "Oh yeah"
]

在_id:2

上过滤聚合文本
[
  "period2 some text",
  "period2 some other text",
  "period2 yet another text"
]

到目前为止,我已设法聚合所有文本,但最终会出现在多个数组中,而我还没有设法使用$ match过滤它们,

我当前的聚合查询如下所示

[ 
    { "$project" : { "text" : "$periods.tables.rows.text" , "_id" : "$_id"}},
    { "$unwind" : "$text"},
    { "$group" : { "_id" : "$_id" , "texts" : { "$addToSet" : "$text"}}},
    { "$project" : { "_id" : 0 , "texts" : 1}} 
]

它给了我一个像这样的结果

的结果
{ "texts" : [ 
        [ [ "Some text" , "Some other text" , "yet another text"] , [ "different text" , "oh yeah" ] ],
        [ [ "period2 some text", "period2 some other text", "period2 yet another text"]]
    ]}

如果我添加$ match:{_ id:1},则不会返回任何结果。

任何人都可以帮我解决这个问题,或者指出我如何解决问题。我一直在寻找资源,但似乎没有找到关于如何使用这些聚合函数的任何好文档。 mongodb文档只使用简单的文档。

PS我知道我可以使用mapreduce来做到这一点,但希望能够使用聚合函数。

1 个答案:

答案 0 :(得分:16)

放松只会降低一个级别,所以你必须拨打多少次,如果你这样做,

[ 
    { "$project" : { "text" : "$periods.tables.rows.text" , "_id" : "$_id"}},
    { "$unwind" : "$text"},
    { "$unwind" : "$text"},
    { "$unwind" : "$text"},
    { "$group" : { "_id" : "$_id" , "texts" : { "$addToSet" : "$text"}}},
    { "$project" : { "_id" : 0 , "texts" : 1}} 
]

它会按预期工作。