From 0a53f479fbc38c8a617694c572ac81e9b403c0ac Mon Sep 17 00:00:00 2001 From: Pal Kerecsenyi Date: Fri, 22 May 2026 16:31:33 +0200 Subject: [PATCH] fix(dev): remove OpenSearch disk limit when running locally * On my machine, OpenSearch allocates itself a finite amount of disk space, which can mean that once the indexes are filled up with the initial fixture vocabulary data, some errors start occurring about the storage being full. * This config flag fixes this. It is only used on local dev instances, it never gets deployed anywhere, so it will not have a wider impact. It just helps to prevent some local bugs, at least for me --- docker-services.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-services.yml b/docker-services.yml index ce2db7e1..a5bce11d 100644 --- a/docker-services.yml +++ b/docker-services.yml @@ -65,6 +65,7 @@ services: environment: # settings only for development. DO NOT use in production! - bootstrap.memory_lock=true + - cluster.routing.allocation.disk.threshold_enabled=false - "OPENSEARCH_JAVA_OPTS=-Xms1024m -Xmx1024m" - "DISABLE_INSTALL_DEMO_CONFIG=true" - "DISABLE_SECURITY_PLUGIN=true"