MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Co-Occurrence-Zählung unter Verwendung des Mongo-Aggregationsframeworks

Die Aggregation ist ziemlich lang, aber es funktioniert. Die Idee ist, dass Sie Paare bilden müssen (x,y) basierend auf Ihren client_interactions Reihe. Dies kann mit $reduce erfolgen und $map . Dann müssen Sie $unwind ausführen und ein paar $group Phasen, um Ihre aggregierten Daten zu "wickeln". Sie benötigen außerdem $arrayToObject um Ihre Schlüssel dynamisch zu erstellen.

db.collection.aggregate([
    {
        $addFields: {
            "client_interactions": {
                $filter: { input: "$client_interactions", cond: { $eq: [ "$$this.productType", "A" ] } }
            }
        }
    },
    {
        $project: {
            a: {
                $reduce: {
                    input: "$client_interactions",
                    initialValue: [],
                    in: {
                        $concatArrays: [
                            "$$value",
                            { $map: { input: "$client_interactions", as: "c",  in: { x: "$$this.productId", y: "$$c.productId" } } }
                        ]
                    }
                }
            }
        }
    },
    {
        $unwind: "$a"
    },
    {
        $match: {
            $expr: {
                $ne: [ "$a.x", "$a.y" ]
            }
        }
    },
    {
        $sort: {
            "a.x": 1,
            "a.y": 1
        }
    },
    {
        $group: {
            _id: "$a",
            count: { $sum: 1 }
        }
    },
    {
        $group: {
            _id: "$_id.x",
            arr: { $push: { k: "$_id.y", v: "$count" } }
        }
    },
    {
        $group: {
            _id: null,
            "co-ocurrences-count": { $push: { k: "$_id", v: { $arrayToObject: "$arr" } } }
        }
    },
    {
        $project: {
            _id: 0,
            "co-ocurrences-count": { $arrayToObject: "$co-ocurrences-count" }
        }
    }
])

Mongo-Spielplatz