Home

Awesome

marathon-consul Build Status Coverage Status Go Report Card Download latest version

We no longer develop this project. If you'd like to take over and continue its maintenance, please fork this repository and let us know by Github issues.

Register Marathon Tasks as Consul Services for service discovery.

marathon-consul takes information provided by the Marathon event bus and forwards it to Consul agents. It also re-syncs all the information from Marathon to Consul on startup and repeats it with given interval.

Note: In the future release Event Bus (callbacks) will be considered deprecated and eventually removed in favor of Event Stream (SSE). Right now marathon-consul is supporting both solutions. SSE is provided as experimental feature, disabled by default (more).

Code

This project is based on

Differences

Installation

Installing from source code

To simply compile and run the source code:

go run main.go [options]

To run the tests:

make test

To build the binary:

make build

Installing from binary distribution

Binary distribution of marathon-consul can be downloaded directly from the releases page. Download the build dedicated to your OS. After unpacking the archive, run marathon-consul binary. You can also add some options, for example:

marathon-consul --marathon-location=marathon.service.consul:8080 --sync-interval=5m --log-level=debug

Installing via APT package manager

If you are a Debian/Ubuntu user, you can easily install marathon-consul as a deb package using APT package manager. Both upstart and systemd service managers are supported. All releases are published as deb packages to our repository at Bintray.

To install marathon-consul with apt-get, simply follow the instructions:

# add our public key to apt
curl -s https://bintray.com/user/downloadSubjectPublicKey?username=allegro | sudo apt-key add -
# add the repository url
echo "deb http://dl.bintray.com/v1/content/allegro/deb /" | sudo tee /etc/apt/sources.list.d/marathon-consul.list
# update apt cache
sudo apt-get -y update
# install latest release of marathon-consul
sudo apt-get -qy install marathon-consul

Run it with service marathon-consul start. The configuration file is located at /etc/marathon-consul.d/config.json.

Installing with Docker

To build docker image run

make docker

Then you can run it with

docker run -d -P allegro/marathon-consul [options]

If you want to use SSL you will need to expose cert store to Docker. The Following line is only example, your cert store might be different depending on your system.

docker run '/etc/ssl/certs/ca-certificates.crt:/etc/ssl/certs/ca-certificates.crt' -P  allegro/marathon-consul

Usage

Marathon masters

Mesos agents

Tagging tasks

  "id": "my-new-app",
  "labels": {
    "consul": ""
  }
  "id": "my-new-app",
  "labels": {
    "consul": "",
    "varnish": "tag",
    "metrics": "tag"
  }
curl -X GET http://localhost:8500/v1/catalog/service/my-new-app
...
"ServiceName": "my-new-app",
"ServiceTags": [
  "marathon",
  "varnish",
  "metrics",
  "marathon-task:my-new-app.6a95bb03-6ad3-11e6-beaf-080027a7aca0"
],

If you need to register your task under multiple ports, refer to Advanced usage section below.

Task healthchecks

Command healthchecks

Healthchecks commands are registered in Consul with a simple variable substitution.

Using a special shell syntax can break this variable substitution ($HOST, ${PORT0} ...)

Sync

Options

ArgumentDefaultDescription
config-filePath to a JSON file to read configuration from. Note: Will override options set earlier on the command line
consul-authfalseUse Consul with authentication
consul-auth-passwordThe basic authentication password
consul-auth-usernameThe basic authentication username
consul-enable-tag-overridefalseDisable the anti-entropy feature for all services
consul-ignored-healthchecksA comma separated blacklist of Marathon health check types that will not be migrated to Consul, e.g. command,tcp
consul-local-agent-hostConsul Agent hostname or IP that should be used for startup sync and service listing operations
consul-name-separator.Separator used to create default service name for Consul
consul-get-services-retry3Number of retries on failure when performing requests to Consul. Each retry uses different cached agent
consul-max-agent-failures3Max number of consecutive request failures for agent before removal from cache
consul-port8500Consul port
consul-sslfalseUse HTTPS when talking to Consul
consul-ssl-ca-certPath to a CA certificate file, containing one or more CA certificates to use to validate the certificate sent by the Consul server to us
consul-ssl-certPath to an SSL client certificate to use to authenticate to the Consul server
consul-ssl-verifytrueVerify certificates when connecting via SSL
consul-tagmarathonCommon tag name added to every service registered in Consul, should be unique for every Marathon-cluster connected to Consul
consul-timeout3sTime limit for requests made by the Consul HTTP client. A Timeout of zero means no timeout
consul-tokenThe Consul ACL token
events-queue-size1000Size of events queue
event-max-size4096Maximum size of event to process (bytes)
listen:4000Accept connections at this address
log-fileSave logs to file (e.g.: /var/log/marathon-consul.log). If empty logs are published to STDERR
log-formattextLog format: JSON, text
log-levelinfoLog level: panic, fatal, error, warn, info, or debug
marathon-locationlocalhost:8080Marathon URL
marathon-passwordMarathon password for basic auth
marathon-protocolhttpMarathon protocol (http or https)
marathon-ssl-verifytrueVerify certificates when connecting via SSL
marathon-timeout30sTime limit for requests made by the Marathon HTTP client. A Timeout of zero means no timeout
marathon-usernameMarathon username for basic auth
marathon-leaderMarathon cluster-wide node name (defaults to <hostname>:8080), the some leader specific calls will be made only if the specified node is the current Marathon-leader. Set to * to always act like a Leader.
metrics-interval30sMetrics reporting interval
metrics-locationGraphite URL (used when metrics-target is set to graphite)
metrics-prefixdefaultMetrics prefix (default is resolved to <hostname>.<app_name>
metrics-targetstdoutMetrics destination stdout or graphite (empty string disables metrics)
sentry-dsnSentry DSN. If it's not set sentry will be disabled
sentry-envSentry environment
sentry-levelerrorSentry alerting level (info
sentry-timeout1sSentry hook initialization timeout
sse-retries0Number of times to recover SSE stream.
sse-retry-backoff0sConfiguration of initial time between retries to recover SSE stream.
sync-enabledtrueEnable Marathon-consul scheduled sync
sync-forcefalseForce leadership-independent Marathon-consul sync (run always)
sync-interval15m0sMarathon-consul sync interval
workers-pool-size10Number of concurrent workers processing events

Endpoints

EndpointDescription
/healthhealthcheck - returns OK

Advanced usage

Register under multiple ports

If you need to map your Marathon task into multiple service registrations in Consul, you can configure marathon-consul via Marathon's portDefinitions:

  "id": "my-new-app",
  "labels": {
    "consul": "",
    "common-tag": "tag"
  },
  "portDefinitions": [
    {
      "labels": {
        "consul": "my-app-custom-name"
      }
    },
    {
      "labels": {
        "consul": "my-app-other-name",
        "specific-tag": "tag"
      }
    }
  ]

This configuration would result in two service registrations:

curl -X GET http://localhost:8500/v1/catalog/service/my-app-custom-name
...
"ServiceName": "my-app-custom-name",
"ServiceTags": [
  "marathon",
  "common-tag",
  "marathon-task:my-new-app.6a95bb03-6ad3-11e6-beaf-080027a7aca0"
],
"ServicePort": 31292,
...

curl -X GET http://localhost:8500/v1/catalog/service/my-app-other-name
...
"ServiceName": "my-app-other-name",
"ServiceTags": [
  "marathon",
  "common-tag",
  "specific-tag",
  "marathon-task:my-new-app.6a95bb03-6ad3-11e6-beaf-080027a7aca0"
],
"ServicePort": 31293,
...

If any port definition contains the consul label, then advanced configuration mode is enabled. As a result, only the ports containing this label are registered, under the name specified as the label's value – with empty value resolved to default name. Names don't have to be unique – you can have multiple registrations under the same name, but on different ports, perhaps with different tags. Note that the consul label still needs to be present in the top-level application labels, even though its value won't have any effect.

Tags configured in the top-level application labels will be added to all registrations. Tags configured in the port definition labels will be added only to corresponding registrations.

All registrations share the same marathon-task tag.

Migration to version 1.x.x

Until 1.x.x marathon-consul would register services in Consul with registration id equal to related Marathon task id. Since 1.x.x registration ids are different and an additional tag, marathon-task, is added to each registration.

If you update marathon-consul from version 0.x.x to 1.x.x, expect the synchronization phase during the first startup to reregister all healthy services managed by marathon-consul to the new format. Unhealthy services will get deregistered in the process.

SSE Support

While using SSE please consider:

HTTP callbacks support

Marathon-Consul does not support HTTP callbacks. Marathon deprecated support for HTTP callbacks in 1.4. This mechanism is no longer available starting from Marathon 1.5.

Known limitations

The following section describes known limitations in marathon-consul.

Release

To release new version of marathon-consul follow steps:

  1. Commit all changes you need for release to master branch.
  2. git checkout master
  3. git checkout -b release/<version> e.g., git checkout -b release/1.3.1
  4. make version v=<version> e.g., make version v=1.3.1
  5. git push
  6. Create pull request from branch release/<version> to master.
  7. Once pull request gets merged put tag on this commit (remember to update your master with git pull) git tag <version> -f e.g., git tag 1.3.1 -f. Create annotated tag with release notes in it.
  8. Travis will automatically prepare github release from tag on master. Go there and update release notes.
  9. Copy github release to bintray.

License

Marathon-consul is released under the Apache 2.0 license (see LICENSE)