-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] #1
Merged
Merged
[WIP] #1
Changes from 9 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
3ec7d2e
Initial work in progress
yosifkit 48e94cc
mongod flags for replica set, more python scaffolding from mysql
yosifkit e2b3780
Mongodb can now scale up and down
yosifkit be640f6
Remove pprint
yosifkit 3eb8a4d
Add comments and changes based upon feedback from tgross
yosifkit 33bfafd
Add more improvements based upon Tim's comments
yosifkit b2333cb
Fix containerpilot service name to match backend name so that we get …
yosifkit cd3f401
Remove superfluous env in compose yml
yosifkit bcf96af
Improve mongo_update_replset_config to be more pythonic
yosifkit c2e14b3
Add envs for stepping down and stopping
yosifkit 35de507
Change sleep to time.sleep :o
yosifkit 597bfd4
When a primary is sent TERM, wait for election of new primary
yosifkit ac07083
Remove unused ContainerPilot class
yosifkit 1d5b83a
Add some env documentation; drop STOP_TIMEOUT since it doesn't affect…
yosifkit 03e9b23
add libssl-dev to fix pip cryptography build issue
jonatanblue 918de6c
Merge pull request #2 from jonatanblue/wip
misterbisson 011223e
Use IP addresses instead of hostnames, for portability
jasonpincin 5e052fb
Merge pull request #4 from jasonpincin/use-ip-addresses
jasonpincin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.DS_Store | ||
**/.DS_Store | ||
_env* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# build outputs | ||
*.pyc | ||
|
||
# credentials | ||
_env* | ||
manta | ||
manta.pub | ||
|
||
# temp | ||
python-manta/ | ||
|
||
# macos frustration | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
FROM mongo:3.2 | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
python \ | ||
python-dev \ | ||
gcc \ | ||
curl \ | ||
libffi-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# get Python drivers MySQL, Consul, and Manta | ||
RUN curl -Ls -o get-pip.py https://bootstrap.pypa.io/get-pip.py && \ | ||
python get-pip.py && \ | ||
pip install \ | ||
PyMongo==3.2.2 \ | ||
python-Consul==0.4.7 \ | ||
manta==2.5.0 \ | ||
mock==2.0.0 | ||
|
||
# Add ContainerPilot and set its configuration file path | ||
ENV CONTAINERPILOT_VER 2.0.1 | ||
ENV CONTAINERPILOT file:///etc/containerpilot.json | ||
RUN export CONTAINERPILOT_CHECKSUM=a4dd6bc001c82210b5c33ec2aa82d7ce83245154 \ | ||
&& curl -Lso /tmp/containerpilot.tar.gz \ | ||
"https://github.com/joyent/containerpilot/releases/download/${CONTAINERPILOT_VER}/containerpilot-${CONTAINERPILOT_VER}.tar.gz" \ | ||
&& echo "${CONTAINERPILOT_CHECKSUM} /tmp/containerpilot.tar.gz" | sha1sum -c \ | ||
&& tar zxf /tmp/containerpilot.tar.gz -C /usr/local/bin \ | ||
&& rm /tmp/containerpilot.tar.gz | ||
|
||
# configure ContainerPilot and MySQL | ||
COPY etc/* /etc/ | ||
COPY bin/* /usr/local/bin/ | ||
|
||
# override the parent entrypoint | ||
ENTRYPOINT [] | ||
|
||
CMD [ \ | ||
"containerpilot", \ | ||
"mongod", \ | ||
"--replSet=joyent" \ | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# mongodb | ||
Work in progress, not stable, expect force pushes of this repo | ||
# AutoPilot Pattern MongoDB | ||
|
||
*A robust and highly-scalable implementation of MongoDB in Docker using the Autopilot Pattern* | ||
|
||
## Architecture | ||
|
||
A running cluster includes the following components: | ||
- [ContainerPilot](https://www.joyent.com/containerpilot): included in our MongoDB containers to orchestrate bootstrap behavior and coordinate replica joining using keys and checks stored in Consul in the `health`, and `onChange` handlers | ||
- [MongoDB](https://www.mongodb.com/community): we're using MongoDB 3.2 and setting up a [replica set](https://docs.mongodb.com/manual/replication/) | ||
- [Consul](https://www.consul.io/): used to coordinate replication and failover | ||
|
||
## Running the cluster | ||
|
||
Starting a new cluster is easy once you have [your `_env` file set with the configuration details](#configuration) | ||
|
||
- for Triton, just run `docker-compose up -d` | ||
- for non-Triton, just run `docker-compose up -f local-compose.yml -d` | ||
|
||
In a few moments you'll have a running MongoDB ready for a replica set. Both the master and replicas are described as a single `docker-compose` service. During startup, [ContainerPilot](http://containerpilot.io) will ask Consul if an existing master has been created. If not, the node will initialize as a new MongoDB replica set and all future nodes will be added to the replica set by the current master. All master election is handled by [MongoDB itself](https://docs.mongodb.com/manual/core/replica-set-elections/) and the result is cached in Consul. | ||
|
||
**Run `docker-compose -f local-compose.yml scale mongodb=2` to add a replica (or more than one!)**. The replicas will automatically be added to the replica set on the master and will register themselves in Consul as replicas once they're ready. | ||
|
||
### Configuration | ||
|
||
Pass these variables via an `_env` file. | ||
|
||
- `LOG_LEVEL`: control the amount of logging from ContainerPilot | ||
|
||
Not yet implemented: | ||
- `MANTA_URL`: the full Manta endpoint URL. (ex. `https://us-east.manta.joyent.com`) | ||
- `MANTA_USER`: the Manta account name. | ||
- `MANTA_SUBUSER`: the Manta subuser account name, if any. | ||
- `MANTA_ROLE`: the Manta role name, if any. | ||
- `MANTA_KEY_ID`: the MD5-format ssh key id for the Manta account/subuser (ex. `1a:b8:30:2e:57:ce:59:1d:16:f6:19:97:f2:60:2b:3d`); the included `setup.sh` will encode this automatically | ||
- `MANTA_PRIVATE_KEY`: the private ssh key for the Manta account/subuser; the included `setup.sh` will encode this automatically | ||
- `MANTA_BUCKET`: the path on Manta where backups will be stored. (ex. `/myaccount/stor/triton-mysql`); the bucket must already exist and be writeable by the `MANTA_USER`/`MANTA_PRIVATE_KEY` | ||
|
||
### Sponsors | ||
|
||
Initial development of this project was sponsored by [Joyent](https://www.joyent.com). |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably should show this CMD (specifically the
--replSet
) being overridden in thedocker-compose.yml
file so that it's clear to someone reading through this that you can create multiple replSets by having multiple service blocks.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done (push coming shortly), also updating to have a minimal README.md on how to run.