Commit 83ee70c3 by Adam Palay

set page cache size

parent 13d02386
...@@ -28,6 +28,7 @@ neo4j_https_port: 7473 # default in package is 7473 ...@@ -28,6 +28,7 @@ neo4j_https_port: 7473 # default in package is 7473
neo4j_http_port: 7474 # default in package is 7474 neo4j_http_port: 7474 # default in package is 7474
neo4j_listen_address: "0.0.0.0" neo4j_listen_address: "0.0.0.0"
neo4j_heap_max_size: "3000" neo4j_heap_max_size: "3000"
neo4j_page_cache_size: "3000"
neo4j_log_dir: "/var/log/neo4j" neo4j_log_dir: "/var/log/neo4j"
# Properties file settings # Properties file settings
......
...@@ -45,6 +45,15 @@ ...@@ -45,6 +45,15 @@
- install - install
- install:base - install:base
- name: set neo4j page cache size
lineinfile:
dest: "{{ neo4j_wrapper_config_file }}"
regexp: "dbms.memory.pagecache.size="
line: "dbms.memory.pagecache.size={{ neo4j_page_cache_size }}"
tags:
- install
- install:configuration
- name: set neo4j heap size - name: set neo4j heap size
lineinfile: lineinfile:
dest: "{{ neo4j_wrapper_config_file }}" dest: "{{ neo4j_wrapper_config_file }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment