@@ -14,6 +14,8 @@ Sharding
14
14
shards end up with different prepareUnique and unique index settings
15
15
- :issue: `SERVER-70793 ` Make database metadata refresh first check new
16
16
metadata under the IS lock before taking X lock
17
+ - :issue: `SERVER-71092 ` shard_id_test.cpp relies on a pure behavior of
18
+ std::string: :compare function
17
19
- :issue: `SERVER-71689 ` Refresh the CatalogCache before dropping the
18
20
local collection
19
21
- :issue: `SERVER-72301 ` Use ordered:false when inserting chunks in
@@ -45,7 +47,7 @@ Internals
45
47
TestRemainingInitialSyncEstimatedMillisMetric unit test can be 0 ms
46
48
- :issue: `SERVER-65259 ` Cursor leak in aggregation that requires merging
47
49
on shard
48
- - :issue: `SERVER-65385 ` Disable signal processing for Google
50
+ - :issue: `SERVER-65385 ` Disable threshold checks for Google
49
51
Microbenchmarks on DEBUG/Sanitizer variants
50
52
- :issue: `SERVER-66337 ` Ensure that check for the interrupt is done on
51
53
every getNext() call in datasize_kill_op.js
@@ -60,6 +62,8 @@ Internals
60
62
clustered collections
61
63
- :issue: `SERVER-67406 ` Sorting a cursor on sharded coll returns
62
64
documents that are missing $-prefixed fields
65
+ - :issue: `SERVER-67795 ` Add serverstatus tracking to know how many users
66
+ use updateMany and DeleteMany
63
67
- :issue: `SERVER-67898 ` BalancerCollectionStatus return wrong chunk size
64
68
for session collection
65
69
- :issue: `SERVER-68125 ` Index build on multi-key fields can consume more
@@ -84,8 +88,10 @@ Internals
84
88
shardCollection
85
89
- :issue: `SERVER-69890 ` Concurrent movePrimary and removeShard can move
86
90
database to a no-longer existent shard
87
- - :issue: `SERVER-69944 ` Resmoke's globstar.py does not properly parse *
88
- before **
91
+ - :issue: `SERVER-69902 ` Stop bucket_unpacking_with_sort_plan_cache.js
92
+ from running in parallel with fsyncLock tests
93
+ - :issue: `SERVER-69944 ` Resmoke's globstar.py does not properly parse
94
+ ``* `` before ``** ``
89
95
- :issue: `SERVER-70024 ` ldap_provider_check.js needs to be updated for
90
96
rhel9
91
97
- :issue: `SERVER-70100 ` Ensure that shardCollection emits an oplog event
@@ -96,8 +102,11 @@ Internals
96
102
object too large
97
103
- :issue: `SERVER-70323 ` Convert invariant to tassert in
98
104
collection_sharding_runtime
105
+ - :issue: `SERVER-70394 ` Fix self-swap in
106
+ MultiPlanStage::removeRejectedPlans
99
107
- :issue: `SERVER-70553 ` Add module support to the mongo test runner
100
108
- :issue: `SERVER-70594 ` Add updated build variants to sys-perf
109
+ - :issue: `SERVER-70694 ` Platform Support: Add support for RHEL9 ARM64
101
110
- :issue: `SERVER-70720 ` Evergreen for WT should capture parent process
102
111
id as part of top output
103
112
- :issue: `SERVER-70768 ` balancer use wrong chunk size for jumbo chunks
@@ -155,6 +164,8 @@ Internals
155
164
- :issue: `SERVER-71609 ` splitOrMarkJumbo must not over-split chunks
156
165
- :issue: `SERVER-71614 ` Add a case to accept to hide an index if it is
157
166
not compatible with shard key
167
+ - :issue: `SERVER-71632 ` Re-enable dropDatabase FSM test in stepdown
168
+ suites
158
169
- :issue: `SERVER-71638 ` Don't let to hide the last shard key index using
159
170
a key pattern
160
171
- :issue: `SERVER-71666 ` Reduce number of scanned index entries on chunk
@@ -170,13 +181,15 @@ Internals
170
181
- :issue: `SERVER-71759 ` dataSize command doesn't yield
171
182
- :issue: `SERVER-71769 ` Add a new log message when a secondary node is
172
183
skipping a two-phase index build
184
+ - :issue: `SERVER-71771 ` Defragmenter should cap chunk size estimation
173
185
- :issue: `SERVER-71787 ` Balancer needs to attach forceJumbo to moveRange
174
186
command
175
187
- :issue: `SERVER-71788 ` Defragmentation should handle ChunkTooBig errors
176
188
- :issue: `SERVER-71880 ` _shardsvrDropCollectionParticipant with
177
189
fromMigrate=true does not abort index builds
178
190
- :issue: `SERVER-71921 ` Task update_timeseries_fuzzer times out on some
179
191
variants
192
+ - :issue: `SERVER-71924 ` Reduce verbosity of chunk merge change log event
180
193
- :issue: `SERVER-71939 ` Update BucketCatalogTest::Task class with
181
194
failpoint
182
195
- :issue: `SERVER-71982 ` Add directConnection=True to standalone.py for
@@ -193,6 +206,8 @@ Internals
193
206
orphanCleanupDelaySecs to the default value on teardown
194
207
- :issue: `SERVER-72222 ` MapReduce with single reduce optimization fails
195
208
when merging results in sharded cluster
209
+ - :issue: `SERVER-72276 ` Remove all outdated entries from
210
+ backports_required_for_multiversion_tests.yml
196
211
- :issue: `SERVER-72288 ` microbenchmark tests fail after "Enable M1 Mac
197
212
support for DSI"
198
213
- :issue: `SERVER-72408 ` Default timeout for
@@ -206,10 +221,16 @@ Internals
206
221
- :issue: `SERVER-72506 ` Fix key error in benchmarks analysis script
207
222
- :issue: `SERVER-72533 ` Shards must send validAfter field on
208
223
_configsvrCommitChunksMerge on v6.0
224
+ - :issue: `SERVER-72535 ` Sharded clusters allow creating the 'admin',
225
+ 'local', and 'config' databases with alternative casings
209
226
- :issue: `SERVER-72581 ` Increase timeout for
210
227
replica_sets_jscore_passthrough on macos-arm64 variant
211
228
- :issue: `SERVER-72613 ` Speed up taking core dumps with the hang
212
229
analyzer
230
+ - :issue: `SERVER-72831 ` Fix use after move in
231
+ sharding_util::processShardResponses
232
+ - :issue: `SERVER-72877 ` Mongos retargeting logic in stepdown hooks
233
+ should skip views
213
234
- :issue: `WT-9268 ` Delay deletion of the history store record to
214
235
reconciliation
215
236
- :issue: `WT-9428 ` Fix two asserts in rec_visibility.c
0 commit comments