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
1
vote
3 answers

Mesos Framework

I want to distribute Docker containers on a cluster by using java and define dependencies, so that when one container is finished I can parse the produced output in my java code. There are many mesos frameworks that can achieve that and I'm not sure…
Whatever
  • 115
  • 1
  • 2
  • 7
1
vote
1 answer

Difference b/w installing docker container using docker vs using marathon mesos

When I install a docker tomcat container using docker I can see it is assigned an ip etc. However when I use marathon/mesos to deploy and run a docker container I see is is not assigned an ip. I ran the docker inspect in both the cases and found…
ashishjain
  • 1,243
  • 1
  • 11
  • 12
1
vote
1 answer

Mesos & Kafka: how to configure and run multiple kafka brokers on mesos cluster?

I know that native integration with Mesos API is planned for Kafka 0.9 release. Meanwhile it is would be great to run and scale Kafka brokers using Marathon. Does anybody have the experience of doing it already?
Vladimir Lebedev
  • 1,207
  • 1
  • 11
  • 25
1
vote
1 answer

Using Marathon json to create new implementations

We've been exploring marathon to deploy into a docker cluster. In the application architecture, we have a postgresql database which the application server need to access. In the development stage, we relied on fig to create links between dockers…
Mo J. Mughrabi
  • 6,747
  • 16
  • 85
  • 143
1
vote
2 answers

Mesos slaves deactivating

I have three machines setup. Each Machine has Zookeeper, Mesos master and slave, and Marathon. I am attempting to use Marathon to start a simple rails application follow this tutorial. Whenever I try and create the task, the two mesos slaves that…
Justin Wood
  • 9,941
  • 2
  • 33
  • 46
0
votes
1 answer

deregistered instance showing unreachable in mesos , how to clear this?

i am using mesos-marathon cluster for my setup and i have 40 instances registered with mesos . i want to remove 1 instance from the cluster. To do that , i just stopped that ec2 instance and reduce the number of dns instance in marathon. But it is…
0
votes
0 answers

Java Array Marathon progam

Write a method that takes as input an array of integers and returns an integer. Pass the array of times to this method. The returned value should be the index corresponding to the person with the lowest time. You can then use the returned integer in…
0
votes
1 answer

Lauching swing applicaiton which has exe extention in marathon java driver

We have java swing application which has the extension of .exe so how to configure JavaProfile() to launch with Marathon JavaDriver? JavaProfile profile = new JavaProfile(JavaProfile.LaunchMode.EXECUTABLE_JAR); …
NikSU
  • 21
  • 6
0
votes
1 answer

Deploy docker container on DC/OS

I am trying to deploy a few docker containers on a DC/OS. I was successfully able to deploy a simple docker container. But I need to deploy a container with some additional parameters attached to it. Like attaching a directory like a volume and…
0
votes
1 answer

Automatically down nodes in Akka cluster with marathon-api after deployment

I have an application deploying an Akka cluster using marathon-api with ClusterBootstrap When a deployment runs it does the following: Adds a new instance with the new version of the application Kills one of the old instances Repeat until is…
Ale
  • 102
  • 1
  • 7
0
votes
1 answer

Marathon Getting appId: Specify a path

I was Deploying Mesos Marathon cluster on ! Master server and 2 slave server. I Set up everything Fine with the load balancer but after setup everythinh i am getting this error from marathon. I was trying to deploy a Database name TiDB This is my…
0
votes
1 answer

Scheduling spark job via marathon

I want to schedule spark job to run on daily basis via marathon. I am using mesos as cluster manager. How to schedule a job to run only once a day via marathon. Right now the job keeps on running again and again once it's finished.
TJJ
  • 31
  • 1
  • 7
0
votes
1 answer

Single instance of a marathon application creates multiple docker containers

I have followed the sample json app cfg @ https://mesosphere.github.io/marathon/docs/native-docker.html#bridged-networking-mode (modified instance count to 1 instead of 2) on the following local setup on my mbp running macos - mesos-1.9.0…
ZeroGraviti
  • 1,047
  • 2
  • 12
  • 28
0
votes
2 answers

Controlling the number of spark drivers running on Mesos

We have a cluster with 6 EC2 nodes in AWS (16 cpu, 64 gb per node - 1 node running mesos master and 5 nodes running mesos slave). The mesos dispatcher is running on the master node. We use this cluster exclusively to run spark jobs. Our spark…
Srinivas K
  • 123
  • 6
0
votes
1 answer

List all images in Mesosphere/Marathon

I am using Mesosphere Marathon. ON Mesos we host our container application. The number of applications are more. Is there a way we can list down all the container images which are being used in my Mesos rather than going one by one to check in each…