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

Link containers in Azure Container Service with Mesos & Marathon

I'm trying to deploy a simple WordPress example (WordPress & MySQL DB) on Microsofts new Azure Container Service with Mesos & Marathon as the underlying orchestration platform. I already ran this on the services offered by Google (Kubernetes) and…
Kevin Goedecke
  • 1,553
  • 2
  • 14
  • 26
0
votes
1 answer

marathon start java program

I'm trying to deploy a test java program on mesos cluster using marathon. I've created a tar ball with all required jars and config files. The tar also has a cmd.sh that launches the app. Cmd.sh snippet chmod a+rx *.jar java -ea…
Cheeko
  • 1,193
  • 1
  • 12
  • 23
0
votes
1 answer

HAProxy | path_beg for load balancer

I have an application that I wish to deploy on path: www.example.com/foo I have another application that I want to deploy on path: www.example.com/bar My load balancer currently doesn't support that. How do I accomplish that? I read about path_beg…
0
votes
1 answer

Task on marathon never ends

I am new to mesos , marathon framework. I formed the cluster with three mesos(0.27.0) masters and two mesos slaves. Marathon (0.15.1) is installed on masters. I scheduled one task from marathon UI of echoing Hello in some file echo "hello" >…
Yogesh Jilhawar
  • 5,605
  • 8
  • 44
  • 59
0
votes
1 answer

Mesosphere inter-service communication using Marathon

I'm currently looking into Mesosphere DCOS to run multiple micro-services using Docker containers. Each micro-services code is already built by my CI into a docker container and uploader to a private container repo. If I now deploy container A and…
Tim Specht
  • 3,068
  • 4
  • 28
  • 46
0
votes
1 answer

Can Marathon assign the same randomly selected host_port across instances?

For my containerized application, I want to Marathon to allocate the same host_port for the container's bridge network endpoint for all instances of that application. Specifying the host port runs the risk of resource exhaustion. Not specifying it…
0
votes
1 answer

Docker+Mesos+Marathon on windows 7/8/10

I have windows 7/10 machine and i have docker terminal running on the same which is using boot2docker as VM , i have fetched mesos(master/slave) , marathon images from the docker hub and i am able to open marathon and mesos GUI's , now my ultimate…
0
votes
1 answer

marathon/mesos cannot run more than one application

I have three master nodes with marathon/mesos/zookeeper working fine, and one test node with 32 gb ram and 24 cores. When i start an application it is successful for one application when i try to run another application on the same node it hangs…
badc0re
  • 3,333
  • 6
  • 30
  • 46
0
votes
1 answer

docker 1.9.0 network support in mesos

Is mesos provide support for docker 1.9.0 custom network creation facility? Using docker 1.9.0 I can create my own network which binds with a custom linux bridge instead of legacy docker0 bridge, once container is launched in customed network. sudo…
0
votes
1 answer

How can I pull image from local repository on Digital Ocean?

I tried both internal and external IP to pull the image from local repository, I am getting this error: I0113 12:15:49.024701 6602 master.cpp:3760] Sending 1 offers to framework 20160113-100358-33554442-5050-2351-0001 (marathon) at…
Chintamani
  • 1,076
  • 7
  • 23
  • 47
0
votes
1 answer

Mesos / Marathon Roles and Applications

I want to run a Mesos/Marathon cluster with a mix of public and private apps. It seems like it should be possible to leverage roles for this, but I'm not having success. As a proof-of-concept, I have a Mesos cluster with public and private roles: #…
aayore
  • 663
  • 5
  • 12
0
votes
1 answer

Repair/Uninstall Mesos after cleanup

The mesos server ran out of disk space and so we were doing a cleanup by removing some of the old docker containers. But now the marathon won't start and digging deeper shows nor does zookeeper. The docker log says that it cannot load some…
shajiuk
  • 1
  • 1
0
votes
1 answer

How to change port in marathon

I used following command to change the port sudo ./bin/start --master local --zk zk://10.20.8.106:2181/marathon --http_port=7070 But it's not working, I am getting [scallop] Error: Unknown option 'http_port=7070'. As I am accessing ubuntu through…
Chintamani
  • 1,076
  • 7
  • 23
  • 47
0
votes
1 answer

Mesos Cgroup resource usage

I am building an autoscaling system using mesos and marathon. The scenario is, I want to autoscale a task, if the amount of memory allocated to it is consumed more than 80%. How do I find out the amount of memory used at a cgroup level? Is this the…
Mrinal Saurabh
  • 948
  • 11
  • 16
0
votes
2 answers

Provision to start group of applications on same Mesos slave

I have cluster of 3 Mesos slaves, where I have two applications: “redis” and “memcached”. Where redis depends on memcached and the requirement is both of the applications/services should start on same node instead of different slave nodes. So I have…