123456789101112131415161718192021222324252627 |
- # This scenario creates a single-instance standalone Neo4j
- # machine, with a custom memory configuration.
- ###############################################################
- core:
- standalone: true
- resources:
- limits:
- memory: 2G
- requests:
- memory: 2G
- dbms:
- memory:
- use_memrec: false
- heap:
- initial_size: 1024m
- max_size: 1024m
- pagecache:
- size: 123m
- transaction:
- memory_allocation: ON_HEAP
- max_size: 60m
- global_max_size: 200m
- acceptLicenseAgreement: "yes"
- neo4jPassword: mySecretPassword
|