-
Type:
Task
-
Resolution: Fixed
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
-
None
This ticket is a POC and will not be merged into master until the performance improvements are shown. We can break this ticket up into multiple tickets if it becomes too complicated, but the steps are:
- Adding the new option in createCollection for users to opt in to add sum and avg in the control for bucket collections. This will involve adding a new option to the timeseries field in the createCollection command. The options are defined here.
- Store these sum and avg values in the control field in buckets collection. You can see where the buckets collection are defined here
- Update sum and avg as new documents are added in the buckets collection.
There are three cases where we want to modify and keep track of the sum in a document write / update:
- Make a new bucket and need to set our sums to its initial values
- Insert into an open bucket and need to update control.sum values
- Update a document in our collection and therefore need to update control.sum
This ticket covers case 1. Case 3 is separated into another ticket WRITING-15235 , since updates and deletes are completed by a still ongoing project. As for case 2, this tickets covers when documents are inserted into existing open buckets. For insertions into existing closed buckets that require reopening, this is separated into ticket WRITING-15257
- is depended on by
-
SERVER-85053 POC: update sum and count when inserting into existing closed buckets that require reopening
-
- Closed
-
-
SERVER-85097 POC: update sum and count values for document updates
-
- Closed
-
-
SERVER-85098 POC: pushdown $group queries on sum and avg
-
- Closed
-