Questions tagged [mesosphere]

Mesosphere (now D2iq) was a company that productized Apache Mesos, the Marathon scheduler, and other applications to support Mesos applications and infrastructure inside their DCOS software.

Mesosphere (now D2iQ) provided the Datacenter Operating System (DCOS), a distributed OS with Apache Mesos as its kernel. DCOS allowed combining individual Linux machines into a single pool of shared resources running a variety of workloads, from batch (Chronos, MapReduce, etc.) over stream processing (Spark, Storm) to PaaS-level (Marathon). In addition, (distributed) storage services incl. HDFS, Cassandra, ArangoDB, Elasticsearch and Quobyte were applications supported on DCOS.

See the official website for more details.

445 questions
2
votes
1 answer

Kubernetes-Mesos in HA Configuraiton

Environment Mesos: 0.26 Kubernetes: 1.3.0 Anyone out there using Kubernetes-Mesos framework? Kubernetes-Mesos Question: Does current Kubernetes-Mesos support Kubernetes in HA configuration ? Having multiple Kubernetes masters talking to…
user2362699
  • 586
  • 6
  • 22
2
votes
0 answers

Mesos DCOS offer declined on AWS

I created a DCOS setup on AWS using default config I add two kafka brokers using CLI (DCOS) PS C:\DCOS> dcos kafka broker list brokers: id: 1 active: false state: stopped resources: cpus:2.00, mem:8192, heap:1024, port:auto failover:…
Cheeko
  • 1,193
  • 1
  • 12
  • 23
2
votes
1 answer

Apache chronos: how to access web ui

I have followed https://mesos.github.io/chronos/docs/#example-run-scripts . What is the url of the web ui?
RockScience
  • 17,932
  • 26
  • 89
  • 125
2
votes
2 answers

Mesos setup slave deactivated

I am trying to set up a mesos cluster on ubuntu. Not using zookeeper since i need only single master cluster. I started the master and then tried to start slave on another machine by running following command: mesos-slave.sh…
tweeper
  • 352
  • 1
  • 4
  • 16
2
votes
2 answers

How to identify Marathon App deployment failure due to resource exhaustion via API?

I am creating a Marathon apps using POST on the 'v2/apps' REST interface. If I attempt to create an app which does not have available resources on the underlying mesos cluster (in this case host_port), the app creation still returns an S_OK while…
2
votes
2 answers

Marathon - do not redeploy app when return code = 0?

We have a spring boot application deployed in a docker container and managed using mesosphere (marathon + mesos). The spring boot app is intended to be deployed via marathon, and once complete, it will exit with code = 0. Currently, every time the…
Sayak Banerjee
  • 1,954
  • 3
  • 25
  • 58
2
votes
1 answer

Framework with ID x does not exist on slave with ID y

I keep getting this error on my marathon dashboard Framework with ID 'a5a96e8c-c3f2-4591-8eb3-43f8dc902585-0001' does not exist on slave with ID '9959ba51-f6f7-448f-99d2-289767f12179-S2'. The path to make this error occur is to click "Sandbox" next…
Peter Klipfel
  • 4,958
  • 5
  • 29
  • 44
2
votes
1 answer

No package matching 'mesos' is available on Ansible

I am configuring a mesos-marathon cluster. I have the next role to install java and mesos. --- - name: importar key Mesosphere shell: gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys E56151BF - name: ppa java8 apt_repository:…
Asier Gomez
  • 6,034
  • 18
  • 52
  • 105
2
votes
1 answer

Marathon won't launch docker container

I have a 1/1 master/slave setup with the slave having 8gb ram 8 cpus. I am trying to use marathon to deploy a docker container with 1gb mem and 1 cpu but it just hangs on waiting I believe this is usually caused by marathon not getting the…
Mark
  • 3,137
  • 4
  • 39
  • 76
2
votes
1 answer

mesos slaves are not connecting with mesos masters cluster

i have a setup where i am using 3 mesos masters and 3 mesos slasves. after making all the required configurations i can see 3 mesos masters are part of a cluster which is maintained by zookeepers. now i have setup 3 mesos slaves and when i am…
Sunil
  • 55
  • 2
  • 8
2
votes
2 answers

What is "posix isolation"?

The Mesos Slave is using posix isolation by default: ...... I0105 06:26:28.479199 1869 containerizer.cpp:142] Using isolation: posix/cpu,posix/mem,filesystem/posix ...... What is "posix isolation"? I can't google it.
Nan Xiao
  • 16,671
  • 18
  • 103
  • 164
2
votes
1 answer

How to flush out jobs on a Mesos slave?

I want to take out a host (mesos-slave) from the mesos cluster in a clean manner by draining out the executors its running. Is it possible for mesos-master to not give any further work to a mesos-slave but still receive updates for the currently…
2
votes
2 answers

How do I read mesos logs ? I mean can somebody please explain whats the meaning of each argument?

I0909 22:47:01.240753 21904 sched.cpp:635] Scheduler::statusUpdate took 23007ns I0909 22:47:01.240617 21904 master.cpp:3600] Sending 1 offers to framework 20140909-224659-16842879-44263-21883-0000 What is I0909? What is the date/timestamp format…
Tanmay Deshpande
  • 491
  • 1
  • 4
  • 10
2
votes
3 answers

Mesos-master: Shutdown failed on fd=25: Transport endpoint is not connected [107]

When I run 3 mesos-master with QUORUM=2, they fail 1 minute after being elected as the leader, giving errors: E1015 11:50:35.539562 19150 socket.hpp:174] Shutdown failed on fd=25: Transport endpoint is not connected [107] E1015 11:50:35.539897…
aladagemre
  • 592
  • 5
  • 16
2
votes
1 answer

Marathon not loading docker container: Failed to get resource statistics for executor

Trying to spin up a docker container using marathon. I am using docker 1.8, marathon 0.11, mesos 0.23, boot2docker Here are how my docker images look like and how they are run https://gist.github.com/manishrajkarnikar/3dad3cfb149384d080aa Here…