mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-27 18:05:00 +00:00
41 lines
824 B
YAML
41 lines
824 B
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
|
||
|
|
||
|
# Increase Fuseki data volume
|
||
|
fuseki-data:
|
||
|
driver: local
|
||
|
driver_opts:
|
||
|
type: none
|
||
|
o: bind
|
||
|
device: ./docker-volume/fuseki-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
|