-
- Downloads
Use sessions in mongo aggregation pipelines (#35680)
* Use mongo sessions in aggregation pipelines Using sessions, cancel signal from streaming response can be handled correctly - query is killed also on database side. * Update tests * Let the middleware handle the exception While coding the other test, I've found out that if exception is handled in the `reducible-results`, code clogs for 3 minutes, which is `.maxTime` for aggregation. I don't know the exact reason yet, but for time being I'm leaving the exception handling to middleware. * Add testing string * Encode aggregation results as `BasicDBObject` Use this type instead of BSON's Document because code transforming DBObject to clojure structures is already in place. * Update exceptions handling and tests Exception handling now more resembles code in other drivers. Tests were updated to use mbql query instead of raw native to avoid differences between various mongodb versions. `$dateTrunc` was not available in version 4. * Increase cancelation interval in tests * Address remarks and update test to handle cold start By cold start I mean running it before dataset is initialized. * Remove unnecessary hint
Showing
- modules/drivers/mongo/src/metabase/driver/mongo/execute.clj 71 additions, 40 deletionsmodules/drivers/mongo/src/metabase/driver/mongo/execute.clj
- modules/drivers/mongo/test/metabase/driver/mongo/execute_test.clj 47 additions, 10 deletions...drivers/mongo/test/metabase/driver/mongo/execute_test.clj
Please register or sign in to comment