This is an automated email from the ASF dual-hosted git repository.
tallison pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new d091813a8 try to fix memory pressure complaints in opensearch
integration tests
d091813a8 is described below
commit d091813a828af50e9c555f66c67d18c80ef31d95
Author: tallison <[email protected]>
AuthorDate: Tue Dec 30 15:43:00 2025 -0500
try to fix memory pressure complaints in opensearch integration tests
---
.../java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
index 4a4b75f8a..f105be64a 100644
---
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
+++
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/OpenSearchTest.java
@@ -72,7 +72,9 @@ public class OpenSearchTest {
@BeforeAll
public static void setUp() {
- CONTAINER = new
OpensearchContainer<>(OPENSEARCH_IMAGE).withSecurityEnabled();
+ CONTAINER = new
OpensearchContainer<>(OPENSEARCH_IMAGE).withSecurityEnabled()
+ .withEnv("cluster.routing.allocation.disk.threshold_enabled",
"false");
+
CONTAINER.start();
HttpClientFactory httpClientFactory = new HttpClientFactory();
httpClientFactory.setUserName(CONTAINER.getUsername());