diff --git a/filebeat/docker-compose.yml b/filebeat/docker-compose.yml index 5a447d6cd66..19302ae1e6f 100644 --- a/filebeat/docker-compose.yml +++ b/filebeat/docker-compose.yml @@ -40,8 +40,6 @@ services: extends: file: ${ES_BEATS}/testing/environments/${TESTING_ENVIRONMENT}.yml service: elasticsearch - environment: - script.cache.max_size: "500" kafka: build: ${ES_BEATS}/testing/environments/docker/kafka diff --git a/filebeat/tests/system/test_modules.py b/filebeat/tests/system/test_modules.py index 911bda08b75..d0fbace31a5 100644 --- a/filebeat/tests/system/test_modules.py +++ b/filebeat/tests/system/test_modules.py @@ -75,14 +75,6 @@ def init(self): self.index_name = "test-filebeat-modules" - body = { - "transient": { - "script.max_compilations_rate": "2000/1m" - } - } - - self.es.transport.perform_request('PUT', "/_cluster/settings", body=body) - @parameterized.expand(load_fileset_test_cases) @unittest.skipIf(not INTEGRATION_TESTS, "integration tests are disabled, run with INTEGRATION_TESTS=1 to enable them.") diff --git a/filebeat/tests/system/test_pipeline.py b/filebeat/tests/system/test_pipeline.py index 7b5b6c381bd..bfe1e8a7b99 100644 --- a/filebeat/tests/system/test_pipeline.py +++ b/filebeat/tests/system/test_pipeline.py @@ -45,14 +45,6 @@ def test_input_pipeline_config(self): pass self.wait_until(lambda: not self.es.indices.exists(index_name)) - body = { - "transient": { - "script.max_compilations_rate": "100/1m" - } - } - - self.es.transport.perform_request('PUT', "/_cluster/settings", body=body) - self.render_config_template( path=os.path.abspath(self.working_dir) + "/log/*", elasticsearch=dict( diff --git a/x-pack/filebeat/docker-compose.yml b/x-pack/filebeat/docker-compose.yml index af81ccb13fb..0c0b477a611 100644 --- a/x-pack/filebeat/docker-compose.yml +++ b/x-pack/filebeat/docker-compose.yml @@ -26,6 +26,4 @@ services: extends: file: ${ES_BEATS}/testing/environments/${STACK_ENVIRONMENT}.yml service: elasticsearch - environment: - script.cache.max_size: "500"