Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
ac4b3d39
Commit
ac4b3d39
authored
Nov 16, 2013
by
Will Daly
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled mongo journaling for devstack and Jenkins
parent
903e8644
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
0 deletions
+12
-0
playbooks/jenkins_worker.yml
+2
-0
playbooks/roles/mongo/defaults/main.yml
+4
-0
playbooks/roles/mongo/templates/mongodb.conf.j2
+5
-0
playbooks/vagrant-devstack.yml
+1
-0
No files found.
playbooks/jenkins_worker.yml
View file @
ac4b3d39
...
...
@@ -6,6 +6,8 @@
hosts
:
jenkins_worker
sudo
:
True
gather_facts
:
True
vars
:
mongo_enable_journal
:
False
roles
:
-
common
-
edxlocal
...
...
playbooks/roles/mongo/defaults/main.yml
View file @
ac4b3d39
...
...
@@ -35,3 +35,7 @@ mongo_create_users: !!null
# cloudformation stack, this group name can used to pull out
# the name of the stack the mongo server resides in.
mongo_aws_stack_name
:
"
tag_aws_cloudformation_stack-name_"
# In environments that do not require durability (devstack / Jenkins)
# you can disable the journal to reduce disk usage
mongo_enable_journal
:
True
playbooks/roles/mongo/templates/mongodb.conf.j2
View file @
ac4b3d39
...
...
@@ -19,7 +19,12 @@ bind_ip = {{ MONGO_BIND_IP }}
port = {{ mongo_port }}
# Enable journaling, http://www.mongodb.org/display/DOCS/Journaling
{% if mongo_enable_journal %}
journal=true
{% else %}
journal=false
nojournal=true
{% endif %}
{% if MONGO_CLUSTERED %}
keyFile = {{ mongo_key_file }}
...
...
playbooks/vagrant-devstack.yml
View file @
ac4b3d39
...
...
@@ -7,6 +7,7 @@
openid_workaround
:
True
devstack
:
True
edx_platform_commit
:
'
master'
mongo_enable_journal
:
False
vars_files
:
-
"
group_vars/all"
roles
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment