summaryrefslogtreecommitdiff
path: root/jstests/core/timeseries
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-56366 Update FCV constants to recognize 5.1 as latestJon Streets2021-07-2344-73/+29
|
* SERVER-57437 Support basic insert routing for sharded time-series collectionsNikita Lapkov2021-07-211-2/+2
|
* SERVER-58617 Allow updates on time-series collections with no metaFieldAlison Lu2021-07-211-2/+50
|
* SERVER-57735 Translate a single update on a time-series collection's ↵Alison Lu2021-07-201-119/+323
| | | | metaField into an update on its buckets collection
* SERVER-58492 Add support for time-series metaField-only deletes with letKris Satya2021-07-191-4/+50
|
* SERVER-58390 Add support for time-series metaField-only deletes with collationKris Satya2021-07-191-1/+10
|
* SERVER-58495 ensure unique collection names in time-series test ↵Benety Goh2021-07-161-8/+10
| | | | timeseries_list_collections.js
* SERVER-58494 ensure unique collection names in time-series test ↵Benety Goh2021-07-161-7/+5
| | | | timeseries_list_collections_filter_name.js
* SERVER-57729 Fixed namespace error when dropping a collectionlukebhan2021-07-141-0/+38
| | | | | | | | | | | | fixed linter ts bucket fix fixed test Deleted empty line changed collection name fixed test naming
* SERVER-58295 Temporarily disable multiversion tests that fail due to ↵Vishnu Kaushik2021-07-143-0/+3
| | | | SERVER-56366
* SERVER-58171 Changing time-series granularity does not update view definitionDan Larkin-York2021-07-141-1/+62
|
* SERVER-57736 Add timeseries delete operation for metaField only queriesKris Satya2021-07-133-36/+159
|
* SERVER-56019 re-enable timeseries_index.js in ↵Benety Goh2021-07-131-3/+0
| | | | replica_sets_initsync_jscore_passthrough.yml
* SERVER-56235 Update error messages for index types that are dependent on a ↵Louis Williams2021-07-081-11/+11
| | | | collection being time-series, not clustered
* SERVER-57734 Determine if an update's update document only modifies a ↵Alison Lu2021-07-071-0/+89
| | | | timeseries collection's metaField
* SERVER-57736 Modify isTimeseriesMetadataOnlyQuery to handle multiple ↵Kris Satya2021-07-012-0/+11
| | | | metaField only dot notation queries
* SERVER-57733 Add uassert for update operations that depend on non-metaFields ↵Kris Satya2021-06-302-6/+104
| | | | for timeseries collections
* SERVER-57493 Remove requires_find_command jstest tagAdityavardhan Agrawal2021-06-3034-201/+167
|
* SERVER-57315 Enable shardCollection command for a time series collectionArun Banala2021-06-291-0/+6
|
* Create timeseries delete method and jstestAlison Lu2021-06-251-0/+27
|
* SERVER-57717 Add uassert for timeseries update operationsKris Satya2021-06-241-0/+30
|
* SERVER-57562 Check if Collection or View exist on namespace before creating ↵Henrik Edin2021-06-171-0/+74
| | | | timeseries bucket collection.
* SERVER-56492 Normalize objects within arrays in time-series metadataKris Satya2021-06-151-0/+33
|
* SERVER-55664 EphemeralForTest supports clustered _id indexesLouis Williams2021-06-1512-89/+11
|
* SERVER-56265 test checks for clustered index support before verifying ↵Benety Goh2021-06-111-5/+8
| | | | support for text indexes on time-series collections
* SERVER-57539 Move timeseries_create_drop.js to noPassthroughJason Chan2021-06-091-104/+0
|
* SERVER-56265 Cleanly fail unsupported queries on timeseries collectionsEric Cox2021-06-071-0/+86
|
* Revert "SERVER-56265 Cleanly fail unsupported queries on timeseries collections"Eric Cox2021-06-041-84/+0
| | | | This reverts commit 7e0bc86f525d56dedca7d8bf9c858d5a8b49fae1.
* SERVER-56265 Cleanly fail unsupported queries on timeseries collectionsEric Cox2021-06-031-0/+84
|
* SERVER-56798 Time-series 'granularity' parameter controls rounding for ↵Dan Larkin-York2021-06-015-4/+146
| | | | minimum bucket time
* SERVER-56797 Allow collMod to change time-series bucket granularityDan Larkin-York2021-05-261-0/+96
|
* SERVER-56933 Return options to create an identical time-series collection ↵Gregory Noma2021-05-245-0/+277
| | | | from listCollections
* SERVER-56934 Make expireAfterSeconds a top-level collection optionGregory Noma2021-05-245-43/+43
|
* SERVER-56124 Provide an alias to $_internalUnpackBucket for Atlas Online ArchiveEthan Zhang2021-05-172-1/+168
|
* SERVER-56233 Support wildcard multikey paths on clustered collectionsLouis Williams2021-05-131-0/+28
|
* SERVER-55105 Support configurable time-series bucket 'granularity'Louis Williams2021-05-132-7/+95
| | | | | | The 'granularity' option specifcies the expected ingestion rate of new measurements. Valid options are 'seconds', 'minutes', or 'hours'. The default is 'seconds'.
* SERVER-55331 fix sort order in timeseries tests when querying buckets collectionBenety Goh2021-05-066-6/+6
|
* SERVER-56157 Timeseries MinMax is now stored in a flat data structure to ↵Henrik Edin2021-05-051-1/+14
| | | | | | | optimize traversal perf at the expense of inserts When users are inserting measurements with a consistent field order we don't need to search and can just traverse the MinMax structure in lock-step with the measurement. If users do not provide a consistent field order we fallback to map lookup when we reach a certain search threshold to limit impact of linear search.
* SERVER-56562 sort buckets collection query results by control.min._id in ↵Benety Goh2021-05-031-2/+2
| | | | test for more predictable comparison
* SERVER-55213 Distinguish between null and missing for metadata in ↵Yuhong Zhang2021-04-281-22/+12
| | | | time-series collections
* SERVER-54816 Perform ordered time-series inserts in a single storage transactionGregory Noma2021-04-2226-2368/+2321
|
* SERVER-53889 Enable time-series feature flag by defaultGregory Noma2021-04-2111-29/+93
|
* SERVER-54955 add does_not_support_transactions to timeseries testsBenety Goh2021-04-2128-2/+30
|
* SERVER-55752 Remove TODO and skip enabling wildcardProjection index testing ↵Dianna Hohensee2021-04-211-3/+0
| | | | with time-series: it is not supported.
* SERVER-56005 Remove test TODO and update file comment in ↵Dianna Hohensee2021-04-211-3/+1
| | | | jstests/core/timeseries/timeseries_special_indexes.js
* SERVER-54398 Extend query planner to generate bounded collection scan plans ↵Svilen Mihaylov2021-04-161-0/+233
| | | | for time series collections.
* SERVER-55994 add tests for user hints on time-series collection queriesBenety Goh2021-04-121-0/+20
|
* SERVER-55994 SERVER-56019 add temporary exclusion for timeseries_index.js to ↵Benety Goh2021-04-111-0/+2
| | | | replica_sets_initsync_jscore_passthrough.yml
* SERVER-55779 Clustered collections should store RecordIds as KeyStringLouis Williams2021-04-092-2/+32
|
* SERVER-55243 Add listIndexes and hide/unhide testing for other index typesDianna Hohensee2021-04-091-0/+73
|