OpenMetadata/docker/docker-compose-quickstart/docker-compose.override.yml
Sriharsha Chintalapani a6d544a5d8
RDF Ontology, Json LD, DCAT vocabulary support by mapping OM Schemas to RDF (#22852)
* Support for RDF, SPARQL, SQL-TO-SPARQL

* Tests are working

* Add  RDF relations tests

* improve Knowledge Graph UI, tags , glossary term relations

* Lang translations

* Fix level depth querying

* Add semantic search interfaces , integration into search

* cleanup

* Update generated TypeScript types

* Fix styling

* remove duplicated ttl file

* model generator cleanup

* Update OM - DCAT vocab

* Update DataProduct Schema

* Improve JsonLD Translator

* Update generated TypeScript types

* Fix Tests

* Fix java checkstyle

* Add RDF workflows

* fix unit tests

* fix e2e

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
2025-08-17 18:36:26 -07:00

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