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
6
votes
2 answers

WARN Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect

I have two nodes that each one has docker with Mesos,marathon,and zookeeper have been installed on it. This is my docker compose file on master node: version: '3.7' services: zookeeper: image: ubuntu_mesos_home_marzieh command:…
M_Gh
  • 1,046
  • 4
  • 17
  • 43
6
votes
3 answers

How to securely share private docker repo login credentials in Azure container service with Mesos & Marathon

I have setup Azure Container Service using DC/OS + Marathon for deploying Docker containers. So far looks good, I can connect to master node using SSH tunnel and access Mesos and Marathon WebUI as well as hit REST API. Next, I am trying to deploy a…
Anurag Sharma
  • 126
  • 2
  • 11
6
votes
2 answers

difference between ports and service ports?

While exploring marathon REST API, I came across two port numbers ( ports and service ports ) defined in the information ( JSON output) given by the following API call- curl http://x.y.z.w:8080/v2/tasks | python -m json.tool | less The sample output…
Yogesh Jilhawar
  • 5,605
  • 8
  • 44
  • 59
6
votes
2 answers

How to use the marathon healthChecks?

I execute git clone https://github.com/mesosphere/marathon.git to download the latest marathon,And I had known from marathon doc that we can set the property of 'healthChecks' to Monitor the job. but when i start marathon , i can't find the property…
KingOfSocket
  • 293
  • 5
  • 18
6
votes
1 answer

Running docker containers inside of docker + mesos + marathon

I am running a mesos cluster on my home computer using mesosphere's docker images. Within that mesos cluster, I want to run docker containers using marathon. I have a container that I can run manually on my mesos slave (using 'docker run').…
jeff
  • 4,325
  • 16
  • 27
5
votes
1 answer

DC/OS - authentication vs. api token

As far as i know, DC/OS has two different types of tokens: authentication token: retrieved via a login through https://public-master-ip/login?redirect_uri=urn:ietf:wg:oauth:2.0:oob. This token is used to retrieve api tokens. api token: retrieved…
sjahreis
  • 53
  • 3
5
votes
2 answers

How to set docker run arguments on marathon spec

I have been using docker to run images along with some options like: docker run --net host --oom-kill-disable -d -p : image How do I set values like --oom-kill-disable on marathon?
t6nand
  • 710
  • 1
  • 8
  • 20
5
votes
2 answers

Mesos slaves reject all Marathon jobs with persistent volumes; claims no space available

I'm trying to use the persistent volumes support for Mesos, and am having a tremendously difficult time getting it to work. I've configured each of my slaves, as follows, and have confirmed that they've successfully rebooted using this new…
Tim Harper
  • 2,561
  • 20
  • 23
5
votes
1 answer

How can I delete a topic from DCOS Kafka?

We are running Kafka via DCOS. We have a topic which appears to have some bad data. I would like to delete that topic. Tried running: kafka-topics.sh --zookeeper --delete --topic This said it had marked the topic for deletion but that it…
Wade
  • 346
  • 2
  • 12
5
votes
2 answers

how can i launch the kafka scheduler using marathon in minimesos?

I'm trying to launch the kafka-mesos framework scheduler using the docker container as prescribed at https://github.com/mesos/kafka/tree/master/src/docker#running-image-in-marathon using the Marathon implementation running in minimesos (I would like…
James Fremen
  • 2,170
  • 2
  • 20
  • 29
5
votes
1 answer

Mesos: mesos-slave offer additional ports

I've got some mesos-slave nodes that I would like to expose to the internet. As such, I would like mesos-slave to offer port 80 and 443 in addition to its default slew of ports/resources. From what I have gathered, I need to adjust the --resources…
advait
  • 6,355
  • 4
  • 29
  • 39
5
votes
3 answers

Mesos, Marathon, the cloud and 10 data centers - How to talk to each other?

I've been looking into Mesos, Marathon and Chronos combo to host a large number of websites. In my head I should be able to type a few commands into my laptop, and wait about 30 minutes for the thing to build and deploy. My only issue, is that my…
5
votes
2 answers

How to configure a high-availability cluster of MariaDB and Redis in Mesos or CoreOS

In most tutorials, presentations and demos, only stateless services are presented that are load balanced either via DNS (SkyDNS, skydock, etc.) or via reverse proxy, such as HAproxy or Vulcand, which are configured with etcd or ZooKeeper. Is there a…
Anton Evangelatov
  • 1,397
  • 2
  • 14
  • 31
4
votes
1 answer

How to set docker command --log.level=DEBUG in a marathon deployment file?

reading at this docker-compose file : (Source: https://docs.traefik.io/user-guides/docker-compose/acme-dns/#setup) version: "3.3" services: traefik: image: "traefik:v2.1.0" container_name: "traefik" command: -…
Dimitri Kopriwa
  • 13,139
  • 27
  • 98
  • 204
4
votes
2 answers

How to install Flink on Mesos cluster without DC/OS?

I am newbie in Apache Flink and our team is trying to set up an Apache Flink Cluster on Apaches Mesos. We have already installed Apache Mesos & Marathon with 3 Master nodes and 3 Slaves and now we are trying to install Apache Flink without DC/OS as…
rahul_raj
  • 275
  • 2
  • 3
  • 9
1
2
3
34 35