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

Resource utilizations in Docker Swarm and Mesos

I am running my application as a docker container in both Docker Swarm UCP (using compose.yml file) as well as in Mesos (using marathon.json file). I have added the resource constraints in both the files. compose.yml: resources: limits: cpus:…
Anil Kumar R
  • 283
  • 1
  • 4
  • 12
0
votes
1 answer

Running Ubuntu Docker container as a Marathon App keeps restarting

Hi I'm trying to run ubuntu docker inside a marathon app and this is my service configuration: { "id": "/h", "backoffFactor": 1.15, "backoffSeconds": 1, "container": { "type": "DOCKER", "volumes": [], "docker": { "image":…
0
votes
1 answer

How to capture cookies on haproxy logs?

Good day!! I am pretty new to HA Proxy and I am trying to log all http details using httplog option. Where I am able to capture all the details except cookie request and response. I need to capture them to be able to understand users behaviour on…
0
votes
1 answer

Marathon: Force fetching the resource from App

My marathon app definition has a uri array. One of the resource in them will be periodically updated (read replaced). I need to force marathon to fetch URI and replace the resource in sandbox. From Marathon Resources Basic, I understand that…
Mangat Rai Modi
  • 5,397
  • 8
  • 45
  • 75
0
votes
1 answer

Can I run mesos/marathon application at specific host?

I wanna use marathon as cluster monitoring and management. Bellow scenario is possible? My Scenario Cassandra 5EA was already deployed and are running. Cassandra hosts are physical machine. I want to run script that verifies healthness of cassandra…
Youngrok Ko
  • 351
  • 1
  • 4
  • 10
0
votes
1 answer

What is the easiest way to get AB-testing with Marathon & Mesos?

What is the easiest way to get AB-testing with Marathon & Mesos? We're currently investigating an enterprise solution called vamp, but if there are any good open source solutions, that'd be great to know.
Dennis
  • 2,866
  • 7
  • 32
  • 49
0
votes
1 answer

Same context path services with different ports on Marathon-lb DCOS

I have deployed elasticsearch and kibana with below application definitions elasticsearch.json { "id": "elasticsearch", "container": { "type": "DOCKER", "docker": { "image": "docker.elastic.co/elasticsearch/elasticsearch:6.3.2", …
happy
  • 2,550
  • 17
  • 64
  • 109
0
votes
1 answer

Why containerPort and hostPort need to be same in DCOS?

I have a web application with the below application definition and DCOS setup up and running on azure cloud with marathon-lb deployed. When I add below as a service. { "id": "web", "container": { "type": "DOCKER", "docker": { …
happy
  • 2,550
  • 17
  • 64
  • 109
0
votes
0 answers

Unable to run cassandra cluster on mesos cluster on marathon framework

I am able to start the mesos cluster and marathon framework and ran a demo application which prints hello. I am successfully able to do this on a ec2 instance. Now I started a cassandra cluster on a different ec2 instance and it started successfully…
Anonymous
  • 29
  • 6
0
votes
0 answers

How to run Cassandra cluster on Mesos using Marathon Framework?

I also tried running a simple json application of printing "hi" and its showing the desirable output. If I can get Cassandra-Cluster json file which I can POST on Marathon Framework? I tried running this application on Marathon Framework but its…
0
votes
1 answer

Can't start marathon-lb

No matter if I go with default configuration or custom (reducing cpus, because I'm on trial) my maraton-lb can't start and fails on health check non stop. What am I doing wrong? Log: [ALERT] 184/143843 (321) : Starting frontend marathon_http_in:…
Afterlook
  • 65
  • 9
0
votes
1 answer

Find the last 5 apps which got restarted in marathon

I need a curl command to find the applications and the time which were restarted in the last 30 minutes in mesos marathon. For example, I hit the curl in the terminal like below: curl http://marathon:5050/............ Then the output should be…
srethomas
  • 1
  • 5
0
votes
1 answer

Mesos: Failed to get/update resource statistics for executor

we are having issues with full logs from mesos-agents with messages like: 2018-06-19T07:31:05.247394+00:00 mesos-slave16 mesos-slave[10243]: W0619 07:31:05.244067 10249 slave.cpp:6750] Failed to get resource statistics for executor…
Jiří Peták
  • 78
  • 1
  • 5
0
votes
1 answer

How many instances of marathon i can deploy in a Mesos cluster?

I've a Mesos cluster which is having 3 master nodes & 20 agent nodes. Now i wanted to deploy "marathon" frameworks in it. I mean in multiframework Mesos cluster is there any limitations for specific number? In-terms of Mesos or Marathon? Is there…
kishorebjv
  • 376
  • 3
  • 11
0
votes
1 answer

Trying to deploy bitbucket in marathon/mesos

I am trying to deploy Bitbucket in maratahon, but the when I scale the application, it is bouncing and spanning into multiple services. I don't know why can you help any one how to handle. marathon_bitbucket.json { "id": "/test/bitbucket", …