Questions tagged [marathon]

Marathon is an Apache Mesos framework for long-running services.

Marathon is a Mesos framework for long-running services.

Marathon provides a REST API for starting, stopping, and scaling services. Marathon is written in Scala and can run in highly-available mode by running multiple Marathon instances.

Marathon is a meta framework: you can start other Mesos frameworks such as Chronos or Storm. It can launch anything that can be launched in a standard shell. In fact, you can even start other Marathon instances via Marathon.

Download, Project, Community.

523 questions
0
votes
1 answer

When marathon restarts process, possible to pass different command-line flag?

I notice that when I am running a process under marathon and I restart it, the process automatically starts back up. The way the logic of the process works, if it is restarted, it enters a recovery mode where it tries to replay its state. The…
Hristo Asenov
  • 439
  • 1
  • 4
  • 8
0
votes
1 answer

Marathon doesn't deploy an app via PUT /v2/apps/{appId}

Unfortunately I face problems with deployment to Marathon. I do curl -X PUT -H 'Content-Type: application/json' -i http://marathon_url/v2/apps/lookout -d@lookout.json And receive response: HTTP/1.1 100 Continue HTTP/1.1 200 OK Connection:…
Pavel
  • 548
  • 5
  • 23
0
votes
1 answer

marathon & docker - why is marathon trying to execute docker image continuosly?

I am running a command to start a docker container like "docker run -p 8080:8080 tomcat:7.0" using the marathon UI. Marathon does deploy the container to one of my slave nodes, however, it keeps trying to start a container again and again and…
user3012653
  • 85
  • 1
  • 13
0
votes
1 answer

Docker volume plugin marathon

Docker Volume plugins are released with Docker 1.8. I am trying to run a Docker container using Mesos/Marathon and I am able to run Docker container with volumes. What I am not able to do is connecting an external volume plugin. As per marathon…
0
votes
2 answers

Limitations in Mesos and Marathon Regarding Docker

We have this scenario. We have 3/3 master/slave arch for Mesos. Each sleeve is identical, 4GB RAM and 4 Core CPUs. We have started 10 marathon Apps with 1core CPU and 1GB RAM. We started the containers, but not utilizing them, as per the system it's…
Rajiv Reddy
  • 153
  • 1
  • 9
0
votes
1 answer

Get completion status from Marathon?

I am running WordPress sites using Marathon. First I hit the Marathon POST API to create app, then I hit the Marathon PUT API with the environment variables (database-related). Marathon takes some time to start the app (until that time, it is…
manish
  • 966
  • 2
  • 11
  • 35
0
votes
1 answer

Marathon, Mesos - start app on ports from my range

It is possible to start app on Mesos with Marathon on ports which range I set? . For example I want start this app: { "id": "http", "cmd": "python -m SimpleHTTPServer $PORT", "mem": 50, "cpus": 0.1, "instances": 1 } only on posts from this range…
My Name
  • 57
  • 7
0
votes
2 answers

Need help on Zookeeper events and Queues

We have a backend module which listen ActiveMQ, after changing the backend arch, we are using Mesos,Marathon and Zookeeper, Now we want to listen Zookeeper events, if any update come to zookeeper. Is there any Client or anything, for connect to…
0
votes
1 answer

marathon docker jobs hanged in deployment state

Hi I have been successfull so far with simple jobs in marathon but it stuck when i have tried deploying a deocker job in mesos through marathon framework. I am using a json file as below to deploy a docker job: { "id": "pga-docker", "cpus":…
psaha4
  • 339
  • 3
  • 17
0
votes
1 answer

How can I update the CSS and links in marathon UI?

I used docker,Marathon and Mesos in my server infrastructure. I want to change few things in Marathon UI. Is it possible? If yes then from where I can find the installed codebase of Marathon UI.?
0
votes
1 answer

How to debug applications deployed on mesos with Marathon, Chronos etc

Per my knowledge, with Marathon/Chronos framework, applications can be deployed to slave nodes that fulfill their resource requirement. But I can't find any information on if those applications fail for internal defects, then if application…
0
votes
2 answers

How to add a new group to an existing marathon application group hierarchy

After deploying a new marathon application group with a hierarchy something like below (note showing as yaml instead of json for readability) : id: root_id groups: - id: data_center_id groups: - id: category_id groups: - id:…
Harris.Atlarge
  • 171
  • 1
  • 1
  • 5
0
votes
1 answer

Mesos, Marathon, Docker, Wildfly

I have 3 node Mesos cluster with Marathon framework. On slaves i have Docker and I want deploy few Wildfly instances on one node. How can i deploy few instances of Wildfly docker containers on one slave Mesos node by Marathon?
My Name
  • 57
  • 7
0
votes
1 answer

Setting Team City Build Agent Port Number in Marathon

Trying to deploy a teamcity build agent on the Mesosphere Marathon platform and having problems with the port mappings. By default the teamcity server will try to talk to the teamcity agent on port 9090 Therefor I set the container port like so…
Alex Laverty
  • 485
  • 1
  • 7
  • 16
0
votes
1 answer

how to run mysql container using Apache Mesos/Marathon

I'm trying to use Apache Marathon to run my container based application. For this I've installed Mesos, Zookeeper, marathon and Docker. Is there anything other than that I need to install. I'm trying Simple docker-based application in…
Maripi
  • 81
  • 1
  • 4