2

この質問には 2 つの部分があります。コレクションの構造は次のとおりです。

_id: MongoID、
agent_id: 文字列、
結果: 文字列、created_on
: ISO DATE、
...その他のフィールド...

パート 1:
望ましい出力: 各 agent_id に対する 1 つの結果、および結果の組み合わせとカウント: PostgreSQL を使用した同等の SQL による TUPLE 表現。

( "1234", "Success", 4 ),
( "1234", "Failure", 4 ),
( "4567", "Success", 3 ),
( "7896", "Failure", 2 ),
.....

SELECT agent_id, result, count(*)
FROM table
GROUP BY agent_id, result
HAVING created_on >= now()::date;

以下のmongoクエリを思いつきました....概念または構文エラーがあると思います。ドキュメントには、パイプラインの早い段階で $match:を使用するように書かれていますが、 $match を単独で実行するとクエリが制限されますが、 $group を追加するとすぐに、多くの結果が得られます。また、複数のフィールドでグループ化する方法を理解できないようです。以下のクエリを編集して、上記の SQL クエリのような結果を得るにはどうすればよいですか?

db.collection.aggregate(
  { $match : 
    { created_on: 
        { $gte: new Date('08-13-2012') //some arbitrary date
    }
  }, $group:
    { _id:"$agent_id" }, 
   $project:
  {_id:0, agent_id:1, result:1}
})

パート 2) 最初の結果セットは適切ですが、最適ではありません。PostgreSQL を使用すると、次のような結果セットを得ることができます。

( "1234", { "Success", "Failure" }, { 4, 3 } ),
( "4567", { "Success", "Failure" }, { 3, 0 } ),
( "7896", { "Success", "Failure" }, { 0, 2 } )

配列データ型と set_to_array 関数 (カスタム関数) を使用して Postgresql でこれを行うことができます。Pg 固有の SQL は次のとおりです。

SELECT agent_id, set_to_array(result), set_to_array( count(*) )
FROM table
GROUP BY agent_id, result
HAVING created_on >= now()::date;

mongodb の同等のデータ構造は次のようになると思います。

[
   { "1234", [ { "success": 4 }, { "failure": 4 } ] },
   { "4567", [ { "success": 3 }, { "failure": 0 } ] },
   { "7896", [ { "success": 0 }, { "failure": 0 } ] }
]

mongodb 集約フレームワークでこれらの望ましい圧縮結果を達成することは可能ですか?

4

1 に答える 1

3

どうぞ:

いくつかのテスト データを作成しました。

db.test.insert({agent_id:"1234", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1234", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"成功", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324", result:"失敗", created_on:new Date()}); db.test.insert({agent_id:"1324",

db.test.aggregate(
  {
    $match:{ /* filter out the things you want to aggregate */
      created_on:{$gte:new Date(1000000)}
    }
  }, 
  {
    $group: {_
      _id: { /* the things you want to group on go in the _id */
        agent_id:"$agent_id", 
        result:"$result"
      }, 
      count:{$sum:1} /* simple count */
    }
  }, 
  {
    $project: { /* take the id out into the separate fields for your tuple. */
      _id:0, 
      agent_id:"$_id.agent_id", 
      result:"$_id.result", 
      count:"$count"
    }
  });

与えます:

{
"result" : [
    {
        "count" : 7,
        "agent_id" : "1324",
        "result" : "Failure"
    },
    {
        "count" : 4,
        "agent_id" : "1324",
        "result" : "Success"
    },
    {
        "count" : 4,
        "agent_id" : "1234",
        "result" : "Success"
    },
    {
        "count" : 3,
        "agent_id" : "1234",
        "result" : "Failure"
    }
],
"ok" : 1
} 

パート 2 の追加 -- パート 1 とかなり似ていますが、カウントはもう少し複雑です。基本的に、カウントしたいものと一致する場合にのみカウントします。

db.test.aggregate(
  {
    $match: { 
      created_on: {$gte:new Date(1000000)}
    }
  }, 
  {
    $group: {
      _id: { 
        agent_id:"$agent_id"
      }, 
      failure: {
        $sum:{
          $cond:[
            {$eq:["$result","Failure"]}, 
            1, 
            0
          ]
        }
      }, 
      success: {
        $sum: { 
          $cond:[
            {$eq:["$result","Success"]}, 
            1, 
            0
          ]
        }
      } 
    } 
  }, 
  {
    $project: {
      _id: 0, 
      agent_id: "$_id.agent_id", 
      failure: "$failure", 
      success: "$success"
    }
  });

与えます:

{
"result" : [
    {
        "failure" : 7,
        "success" : 4,
        "agent_id" : "1324"
    },
    {
        "failure" : 3,
        "success" : 4,
        "agent_id" : "1234"
    }
],
"ok" : 1
}
于 2012-10-03T02:21:38.007 に答える