Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SERVER-60156 Add a way to bypass storageValid() for time-series updates | Yuhong Zhang | 2021-09-29 | 1 | -0/+8 |
| | |||||
* | SERVER-58578 Timeseries bucket compression | Henrik Edin | 2021-09-16 | 1 | -1/+1 |
| | | | | | | | | | | | | All fields under data will be compressed using BSON Binary Subtype 7. Measurements are sorted by time field. Buckets are compressed in a separate update operation when the BucketCatalog is closing the bucket and no further writes to it will be performed. Compression operation are transparant for the user, if it fails for any reason the bucket will be left uncompressed. | ||||
* | SERVER-57446 fix clang-tidy header issues and add header-filter | Daniel Moody | 2021-08-02 | 1 | -2/+2 |
| | |||||
* | SERVER-56755 Collect and expose statistics for insert and updates with dots ↵ | Ruoxin Xu | 2021-05-14 | 1 | -0/+11 |
| | | | | and dollars fields | ||||
* | SERVER-54585 Move support for `findAndModify` to the write_ops utilities | Kaloian Manassiev | 2021-02-18 | 1 | -1/+1 |
| | | | | ... also clean up the include files. | ||||
* | SERVER-47731 Add FCV check for $v:2 delta oplog entries | Ian Boros | 2020-07-31 | 1 | -1/+2 |
| | |||||
* | SERVER-47726 Log delta-style oplog entries from pipeline based updates | Ian Boros | 2020-07-09 | 1 | -1/+1 |
| | |||||
* | SERVER-42302 Move Document/Value library to db/exec/document_value directory. | David Storch | 2019-10-01 | 1 | -1/+1 |
| | | | | | | Document/Value is now used throughout the query execution engine, and therefore should move into the directory which holds query execution code. | ||||
* | SERVER-41043 Add 'let' field support for merge stage | Anton Korshunov | 2019-05-23 | 1 | -0/+1 |
| | |||||
* | SERVER-40585 UpdateNode should not derive from UpdateExecutor | James Wahlin | 2019-04-29 | 1 | -12/+14 |
| | |||||
* | SERVER-40381 Add the ability to specify a pipeline to an update command | James Wahlin | 2019-04-11 | 1 | -21/+47 |
| | |||||
* | SERVER-39257 Implement visitor pattern for UpdateNode | Ted Tuckman | 2019-03-26 | 1 | -0/+9 |
| | |||||
* | SERVER-38760 Serialize update commands to BSON | Jacob Evans | 2019-02-28 | 1 | -0/+10 |
| | |||||
* | SERVER-39560 - remove leading blank line on all C++ files | Billy Donahue | 2019-02-13 | 1 | -1/+0 |
| | | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines. | ||||
* | SERVER-39060 Add upsert function to Stitch Support Library | Justin Seyster | 2019-01-28 | 1 | -7/+3 |
| | |||||
* | SERVER-31012: expose optional way of retrieving FieldRef's for fields that ↵ | Nick Zolnierz | 2018-11-30 | 1 | -1/+10 |
| | | | | were modified by an update | ||||
* | SERVER-37651 Update header files with new license | Ramon Fernandez | 2018-10-22 | 1 | -8/+10 |
| | |||||
* | SERVER-32348 Make UpdateDriver::parse() throw an exception instead of ↵ | Minji | 2018-06-29 | 1 | -6/+5 |
| | | | | returning error Status | ||||
* | SERVER-30854 Remove ModifierInterface update code. | Justin Seyster | 2017-12-14 | 1 | -50/+18 |
| | | | | | | | | We left the deleted update system in 3.6 to support upgrades from 3.4, but newer versions will always use the new UpdateNode update system. Fun fact: this commit deletes more lines than were inserted by the previous 100 commits. | ||||
* | SERVER-31845 Bypass query subsystem to improve config.transactions update ↵ | Randolph Tan | 2017-11-29 | 1 | -0/+1 |
| | | | | performance | ||||
* | SERVER-30731 MatchExpressionParser::parse() should require an ExpressionContext | Tess Avitabile | 2017-09-29 | 1 | -1/+2 |
| | |||||
* | SERVER-29136 Plumb update document key through to op log | Nathan Myers | 2017-09-25 | 1 | -6/+0 |
| | |||||
* | SERVER-30705 Add $v field for update semantics in oplog updates. | Justin Seyster | 2017-09-14 | 1 | -8/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the new UpdateNodes class hierarchy, there are two code paths for applying an update to a document that have slightly different semantics. The order of fields in the resulting document can vary depending on which code path is used to apply an update. A difference in ordering between documents in a replica set is considered a "mismatch," so we need to ensure that secondaries always apply updates using the same update system that the primary uses. When an update executes as part of the application of an oplog entry, the update is now allowed to have a $v field, which allows it to specify which semantics were used by the operation that we are replicating by applying the entry. When the primary uses the new semantics (because it is a 3.6 mongod with featureCompatibilityVersion set to 3.6), it includes {$v: 1} in the oplog's update document to indicate that the secondary should apply with the newer 'UpdateNode' semantics. There are two other places where we need this behavior: 1) In role_graph_update.cpp, where the handleOplogUpdate observer needs to update its in-memory BSON representation of a role to reflect an update in the admin database and 2) in the applyOps command, which is used for testing how oplog entries get applied. Both these code paths set the fromOplogApplication flag, which replaces the old fromReplication flag, and they also gain behavior that used to be exclusive to oplog applications from replication. (Specifically, they skip update validation checks, which should have already passed before the oplog entry was created.) | ||||
* | SERVER-28773 Create insert mode for SetNode | Tess Avitabile | 2017-08-02 | 1 | -3/+4 |
| | |||||
* | SERVER-30243: Move ArrayFilter class to expressions library, allowing for ↵ | Natalia Jacobowitz | 2017-07-25 | 1 | -3/+4 |
| | | | | future re-usability with JSON Schema | ||||
* | SERVER-28776 Create ObjectReplaceNode | Tess Avitabile | 2017-07-25 | 1 | -1/+1 |
| | |||||
* | SERVER-29162 UpdateNode implementation should only validate modified fields | Tess Avitabile | 2017-06-30 | 1 | -14/+20 |
| | |||||
* | SERVER-28762 Conditionally parse an update expression as an UpdateNode tree | Tess Avitabile | 2017-06-19 | 1 | -4/+18 |
| | |||||
* | SERVER-28621 Parse BSON update expression into an UpdateNode tree | Tess Avitabile | 2017-04-20 | 1 | -0/+203 |