Количество групп 2 элемента объекта массива mongodb - PullRequest
0 голосов
/ 05 сентября 2018

У меня есть следующий массив:

[
  {
    “counter”: 123456,
    “user”: “USER1”,
    “last”: “USER1”
  },
  {
    “counter”: 123,
    “user”: “USER1”,
    “last”: “USER2”
  },
  {
    “counter”: 111,
    “user”: “USER2”,
    “last”: “USER2”
  },
  {
    “counter”: 1122,
    “user”: “USER2”,
    “last”: “USER2”
  },
  {
    “counter”: 112233,
    “user”: “USER1”,
    “last”: “USER2”
  },
]

Я выполняю следующий запрос на mongodb:

{$group: {
  _id: “$user”,
  total: {$sum: 1},
  last: {$sum: {$cond: [
    {$eq: ['$last’, '$user']}, 1, 0
  ]}}
}}

Я бы хотел получить следующий результат:

[
  {
    _id: “USER1”
    total: 3,
    last: 1
  },
{
    _id: “USER2”
    total: 2,
    last: 4
  }
]

Но я получаю это:

[
  {
    _id: “USER1”
    total: 3,
    last: 1
  },
{
    _id: “USER2”
    total: 2,
    last: 2
  }
]

Когда я делаю группу, я не могу считать последний пункт удовлетворительно

Как я могу получить ожидаемый результат? Спасибо за вашу помощь.

1 Ответ

0 голосов
/ 10 сентября 2018

У вас есть только 2 "USER2", и вы не можете $ 4 последних на этот _id. попробуйте использовать compose _id, если вам нужно по индексу в пользователе.

db.teste.aggregate([
  {$group:{
    _id: {user:"$user",last:"$last"},
    total: {$sum:1},
    last: {
      $sum: {
        $cond:[ {$eq: ["$last", user]}, 1, 0]
      }
    }
  }}
])

Если вам нужно добавить строку или другие вхождения в разные поля. Запрос:

db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [
      {$group:{
        _id: null,
        user:{$sum:{$cond:[
          {$eq:["$user", "$$indice"]}, 1, 0
        ]}},
        last:{$sum:{$cond:[
          {$eq:["$last", "$$indice"]}, 1, 0
        ]}}
      }},
      {$project:{
        _id: 0
      }}
    ],
    as: "res"
  }}
])

От нуля до героя:

//First we'll extract only what we need find, on this case distinct users
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }}
])

//Here we will get the indexes of the search and reinsert in our filter using $let (nodejs var)
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [],
    as: "res"
  }}
])

//Let's counter the total of reinserted elements
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [
      {$group:{
        _id: null,
        total:{$sum:1}
      }}
    ],
    as: "res"
  }}
])

//Now let's test a true condition
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [
      {$group:{
        _id: null,
        user:{$sum:{$cond:[
          {$eq:[true, true]}, 1, 0
        ]}}
      }}
    ],
    as: "res"
  }}
])

//cond tested let's extract what we want
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [
      {$group:{
        _id: null,
        user:{$sum:{$cond:[
          {$eq:["$user", "$$indice"]}, 1, 0
        ]}},
        last:{$sum:{$cond:[
          {$eq:["$last", "$$indice"]}, 1, 0
        ]}}
      }}
    ],
    as: "res"
  }}
])

//Let's take the _id of the sub-colection because we do not need it
db.teste.aggregate([
  {$group:{
    _id: "$user"
  }},
  {$lookup:{
    from: "teste",
    let: { indice: "$_id" },
    pipeline: [
      {$group:{
        _id: null,
        user:{$sum:{$cond:[
          {$eq:["$user", "$$indice"]}, 1, 0
        ]}},
        last:{$sum:{$cond:[
          {$eq:["$last", "$$indice"]}, 1, 0
        ]}}
      }},
      {$project:{
        _id: 0
      }}
    ],
    as: "res"
  }}
])
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...