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 1c8ae0b2d TIKA-4155 -- try setting minimum shared memory size to 3GB
1c8ae0b2d is described below
commit 1c8ae0b2dbb62e9ee1c937355a2d59702d7c9c59
Author: tallison <[email protected]>
AuthorDate: Wed Oct 11 10:16:34 2023 -0400
TIKA-4155 -- try setting minimum shared memory size to 3GB
---
.../apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
index b6982a9b3..d6c81d2c5 100644
---
a/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
+++
b/tika-integration-tests/tika-pipes-opensearch-integration-tests/src/test/java/org/apache/tika/pipes/opensearch/tests/TikaPipesOpenSearchTest.java
@@ -38,7 +38,8 @@ public class TikaPipesOpenSearchTest extends
TikaPipesXSearchBase {
new GenericContainer<>(DockerImageName.parse(DOCKER_IMAGE_NAME))
.withExposedPorts(9200)
.withStartupTimeout(Duration.of(180, ChronoUnit.SECONDS))
- .withEnv("discovery.type", "single-node");
+ .withEnv("discovery.type", "single-node")
+ .withSharedMemorySize(3221225472l);
@BeforeEach