bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Waiting to run
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Blocked by required conditions
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Blocked by required conditions
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Blocked by required conditions
Java Checkstyle / java-checkstyle (push) Waiting to run
Maven Collate Tests / maven-collate-ci (push) Waiting to run
OpenMetadata Service Unit Tests / Detect Changes (push) Waiting to run
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Blocked by required conditions
Publish Package to Maven Central Repository / publish-maven-packages (push) Waiting to run
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
version: "3.9"
|
|
|
|
# Override file to increase disk storage for persistent volumes
|
|
# Place this file in the same directory as docker-compose-rdf.yml
|
|
|
|
volumes:
|
|
# Increase Elasticsearch data volume
|
|
es-data:
|
|
driver: local
|
|
driver_opts:
|
|
type: none
|
|
o: bind
|
|
device: ./docker-volume/elasticsearch-data
|
|
|
|
# Fuseki data volume. Renamed from `fuseki-data` (and host path changed
|
|
# from `./docker-volume/fuseki-data` to `./docker-volume/fuseki-tdb2-data`)
|
|
# to match docker-compose-rdf.yml — see ../development/docker-compose-fuseki.yml
|
|
# for the migration rationale (new on-disk layout vs the old stain image).
|
|
fuseki-tdb2-data:
|
|
driver: local
|
|
driver_opts:
|
|
type: none
|
|
o: bind
|
|
device: ./docker-volume/fuseki-tdb2-data
|
|
|
|
services:
|
|
# Additional Elasticsearch optimizations
|
|
elasticsearch:
|
|
ulimits:
|
|
memlock:
|
|
soft: -1
|
|
hard: -1
|
|
nofile:
|
|
soft: 65536
|
|
hard: 65536
|
|
sysctls:
|
|
- vm.max_map_count=262144
|
|
|
|
# Additional Fuseki optimizations
|
|
fuseki:
|
|
ulimits:
|
|
nofile:
|
|
soft: 65536
|
|
hard: 65536 |