From ec937ff18f697a1cece96f122a4eadccf392c338 Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Wed, 9 Oct 2024 08:32:30 -0600 Subject: [PATCH 1/3] comments --- source/client-side-operations-timeout/tests/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/client-side-operations-timeout/tests/README.md b/source/client-side-operations-timeout/tests/README.md index 79263c552d..629e4e699e 100644 --- a/source/client-side-operations-timeout/tests/README.md +++ b/source/client-side-operations-timeout/tests/README.md @@ -606,6 +606,10 @@ Tests in this section MUST only run against replica sets and sharded clusters wi This test MUST only run against server versions 8.0+. This test must be skipped on Atlas Serverless. +This test MUST only run against standalones on server versions 4.4 and higher. The insertMany call takes an exceedingly +long time on replicasets and sharded clusters. Drivers MAY adjust the timeouts used in this test to allow for differing +bulk encoding performance. + 1. Using `internalClient`, drop the `db.coll` collection. 2. Using `internalClient`, set the following fail point: From 46c4c100d5cba348e855fcfbf9cc238a0a746d47 Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Wed, 9 Oct 2024 14:03:23 -0600 Subject: [PATCH 2/3] remove redundant server version requirement --- source/client-side-operations-timeout/tests/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/client-side-operations-timeout/tests/README.md b/source/client-side-operations-timeout/tests/README.md index 629e4e699e..9937a8ad01 100644 --- a/source/client-side-operations-timeout/tests/README.md +++ b/source/client-side-operations-timeout/tests/README.md @@ -606,9 +606,8 @@ Tests in this section MUST only run against replica sets and sharded clusters wi This test MUST only run against server versions 8.0+. This test must be skipped on Atlas Serverless. -This test MUST only run against standalones on server versions 4.4 and higher. The insertMany call takes an exceedingly -long time on replicasets and sharded clusters. Drivers MAY adjust the timeouts used in this test to allow for differing -bulk encoding performance. +This test MUST only run against standalones. The insertMany call takes an exceedingly long time on replicasets and +sharded clusters. Drivers MAY adjust the timeouts used in this test to allow for differing bulk encoding performance. 1. Using `internalClient`, drop the `db.coll` collection. From 2371a6b38d3f13782c297476043e1cacd54d264e Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Wed, 9 Oct 2024 14:31:37 -0600 Subject: [PATCH 3/3] remove redundant server version requirement --- source/client-side-operations-timeout/tests/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client-side-operations-timeout/tests/README.md b/source/client-side-operations-timeout/tests/README.md index 9937a8ad01..4b0f107829 100644 --- a/source/client-side-operations-timeout/tests/README.md +++ b/source/client-side-operations-timeout/tests/README.md @@ -606,7 +606,7 @@ Tests in this section MUST only run against replica sets and sharded clusters wi This test MUST only run against server versions 8.0+. This test must be skipped on Atlas Serverless. -This test MUST only run against standalones. The insertMany call takes an exceedingly long time on replicasets and +This test MUST only run against standalones. The bulkWrite call takes an exceedingly long time on replicasets and sharded clusters. Drivers MAY adjust the timeouts used in this test to allow for differing bulk encoding performance. 1. Using `internalClient`, drop the `db.coll` collection.