Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Currently the recommended way to run the Ignite Framework is via Marathon.  

  1. Install marathon. See https://docs.mesosphere.com/getting-started/datacenter/install/ marathon section.
  2. Post to Marathon 

    Wiki Markup
    { 
      "id": "ignition", 
      "instances": 1, 
      "cpus": 2, 
      "mem": 2048, 
      "ports": [0], 
      "uris": [ 
        "https://s3.amazonaws.com/ignite-mesos-ip/ignite-mesos-1.1.0.jar" 
      ], 
      "env": { 
        "IGNITE_NODE_COUNT": "3", 
        "MESOS_MASTER_URL": "zk://172.31.1.138:2181/mesos", 
        "IGNITE_RUN_CPU_PER_NODE": "4", 
        "IGNITE_MEMORY_PER_NODE": "4096", 
        "IGNITE_VERSION": "latest"
      }, 
      "cmd": "java -jar ignite-mesos-1.1.0.jar" 
    } 

 

Run JAR file

  1. Build ignite-mesos module.
  2. Run IgniteFramework use the followin command.

...