Commit f3351b2a by Edward Zarecor Committed by GitHub

Merge pull request #3595 from edx/e0d/mongo-smallfiles

Basic support for smallfiles
parents 0a9a7e7c a3975c4e
......@@ -32,6 +32,8 @@ MONGO_USERS:
MONGO_CLUSTERED: false
MONGO_BIND_IP: 127.0.0.1
MONGO_USE_SMALLFILES: true
##
mongo_logpath: "{{ mongo_log_dir }}/mongodb.log"
......
......@@ -16,6 +16,10 @@ logappend={{ mongo_logappend }}
bind_ip = {{ MONGO_BIND_IP }}
{% endif %}
{% if MONGO_USE_SMALLFILES %}
smallfiles = true
{% endif %}
port = {{ mongo_port }}
# Enable journaling, http://www.mongodb.org/display/DOCS/Journaling
......
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