10
votes

I'm working with mesos + marathon + docker quite a while but I got stuck at some point. At the moment I try to deal with persistent container and I tried to play around with the "volumes-from" parameter but I can't make it work because I have no clue how I can figure out the name of the data box to put it as a key in the json. I tried it with the example from here

    {
    "id": "privileged-job",
    "container": {
        "docker": {
            "image": "mesosphere/inky"
            "privileged": true,
            "parameters": [
                { "key": "hostname", "value": "a.corp.org" },
                { "key": "volumes-from", "value": "another-container" },
                { "key": "lxc-conf", "value": "..." }
            ]
        },
        "type": "DOCKER",
        "volumes": []
    },
    "args": ["hello"],
    "cpus": 0.2,
    "mem": 32.0,
    "instances": 1
}

I would really appreciate any kind of help :-)

4
I'm not exactly clear on how this is a Marathon or Mesos problem but I'll ask you the obvious—did you read docs.docker.com/userguide/dockervolumes already? The value for another-container is simply the container ID of the container you want the volumes mounted/shared from—note that at least one container needs to use a volumes otherwise it's gone and that volumes live on the host, in special directories, so that they can be shared between containers. What's your use case, BTW?Michael Hausenblas
thanks for the answer and yes I did read it. my problem is that I don't know how to get the ID or the set name of the container with the data. my use case is pretty simple, I have an application container running and this one has to access data which I want to get out of a data only container. If I absolutely can't figure out how to deal with the volumes-from option I have to fall back and put the data on the host and mount that from there because that I know how to address.hammi
He he that was not an answer (yet) just clarification. Can you share more about your setup pls?Michael Hausenblas
It seems to be a similar issue: stackoverflow.com/questions/28681235/… but I don't understand how the answer solves the unknown name issue.Céline Aussourd
yes that is the same issue and the answer doesn't fix it. Before I opened this question I tried to reopen this one but my question got deleted.hammi

4 Answers

1
votes

From what I know : docker --volume-from take the ID or the name of a container.

Since your datacontainer is launch with Marathon too, it get an ID (not sur how to get this ID from marathon) and a name of that form : mesos-0fb2e432-7330-4bfe-bbce-4f77cf382bb4 which is not related to task ID in Mesos nor docker ID.

The solution would be to write something like this for your web-ubuntu application :

"parameters": [
    { "key": "volumes-from", "value": "mesos-0fb2e432-7330-4bfe-bbce-4f77cf382bb4" }
]

Since this docker-ID is unknown from Marathon it is not practical to use datacontainer that are started with Marathon.

You can try to start a datacontainer directly with Docker (without using Marathon) and use it as you do before but since you don't know in advance where web-ubuntu will be scheduled (unless you add a constraint to force it) it is not practical.

0
votes

{
    "id": "data-container",
    "container": {
        "docker": {
            "image": "mesosphere/inky"
        },
        "type": "DOCKER",
        "volumes": [
      {
        "containerPath": "/data",
        "hostPath": "/var/data/a",
        "mode": "RW"
      }
    ]
    },
    "args": ["data-only"],
    "cpus": 0.2,
    "mem": 32.0,
    "instances": 1
}
{
    "id": "privileged-job",
    "container": {
        "docker": {
            "image": "mesosphere/inky"
            "privileged": true,
            "parameters": [
                { "key": "hostname", "value": "a.corp.org" },
                { "key": "volumes-from", "value": "data-container" },
                { "key": "lxc-conf", "value": "..." }
            ]
        },
        "type": "DOCKER",
        "volumes": []
    },
    "args": ["hello"],
    "cpus": 0.2,
    "mem": 32.0,
    "instances": 1
}

Something like that maybe?

0
votes

Mesos support passing the parameter of volume plugin using "key" & "value". But the issue is how to pass the volume name which Mesos expects to be either an absolute path or if absolute path is not passed then it will merge the name provided with the slave container sandbox folder. They do that primarily to support checkpointing, in case slave goes down accidentally.

The only option, till the above get enhanced, is to use another key value pair parameter. For e.g. in above case

{ "key": "volumes-from", "value": "databox" }, { "key": "volume", "value": "datebox_volume" }

I have tested above with a plugin and it works.

-1
votes

Another approach is to write a custom mesos framework capable of running the docker command you want. In order to know what offers to accept and where to place each task you can use marathon information from: /apps/v2/ (under tasks key).

A good starting point for writing a new mesos framework is: https://github.com/mesosphere/RENDLER