diff --git a/tests/_helm/values/e2e-amd/distributed-pulsar b/tests/_helm/values/e2e-amd/distributed-pulsar index 3783ca72c7..c8cd2a9ae4 100644 --- a/tests/_helm/values/e2e-amd/distributed-pulsar +++ b/tests/_helm/values/e2e-amd/distributed-pulsar @@ -87,6 +87,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e-amd/standalone b/tests/_helm/values/e2e-amd/standalone index 85e827834c..389238418c 100644 --- a/tests/_helm/values/e2e-amd/standalone +++ b/tests/_helm/values/e2e-amd/standalone @@ -44,6 +44,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e-amd/standalone-kafka-mmap b/tests/_helm/values/e2e-amd/standalone-kafka-mmap index 7cb71232b5..e1ae1c20da 100644 --- a/tests/_helm/values/e2e-amd/standalone-kafka-mmap +++ b/tests/_helm/values/e2e-amd/standalone-kafka-mmap @@ -51,6 +51,10 @@ extraConfigFiles: scalarField: true scalarIndex: true growingMmapEnabled: true + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e-amd/standalone-one-pod b/tests/_helm/values/e2e-amd/standalone-one-pod index bdf6df687b..00e948889a 100644 --- a/tests/_helm/values/e2e-amd/standalone-one-pod +++ b/tests/_helm/values/e2e-amd/standalone-one-pod @@ -36,6 +36,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 image: all: pullPolicy: Always diff --git a/tests/_helm/values/e2e/distributed-pulsar b/tests/_helm/values/e2e/distributed-pulsar index a60ca2b99c..fa10b1d828 100644 --- a/tests/_helm/values/e2e/distributed-pulsar +++ b/tests/_helm/values/e2e/distributed-pulsar @@ -87,6 +87,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e/standalone b/tests/_helm/values/e2e/standalone index 8a12348e81..1a96e57a5c 100644 --- a/tests/_helm/values/e2e/standalone +++ b/tests/_helm/values/e2e/standalone @@ -44,6 +44,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e/standalone-kafka-mmap b/tests/_helm/values/e2e/standalone-kafka-mmap index bc7573fc72..d70bc9c4ec 100644 --- a/tests/_helm/values/e2e/standalone-kafka-mmap +++ b/tests/_helm/values/e2e/standalone-kafka-mmap @@ -51,6 +51,10 @@ extraConfigFiles: scalarField: true scalarIndex: true growingMmapEnabled: true + quotaAndLimits: + flushRate: + collection: + max: 4 metrics: serviceMonitor: enabled: true diff --git a/tests/_helm/values/e2e/standalone-one-pod b/tests/_helm/values/e2e/standalone-one-pod index bdf6df687b..00e948889a 100644 --- a/tests/_helm/values/e2e/standalone-one-pod +++ b/tests/_helm/values/e2e/standalone-one-pod @@ -36,6 +36,10 @@ extraConfigFiles: queryNode: segcore: exprEvalBatchSize: 512 + quotaAndLimits: + flushRate: + collection: + max: 4 image: all: pullPolicy: Always diff --git a/tests/python_client/testcases/test_compaction.py b/tests/python_client/testcases/test_compaction.py index 7be23d229d..979509d699 100644 --- a/tests/python_client/testcases/test_compaction.py +++ b/tests/python_client/testcases/test_compaction.py @@ -384,7 +384,7 @@ class TestCompactionParams(TestcaseBase): collection_w.create_index(ct.default_float_vec_field_name, ct.default_index) collection_w.compact() - sleep(ct.max_compaction_interval + 1) + sleep(10) # modified by nico, debug compaction time from 60s to 10s # verify queryNode load the compacted segments collection_w.load()