{"id":13740946,"url":"https://github.com/skytix-dev/rexe","last_synced_at":"2026-01-17T16:27:56.331Z","repository":{"id":139651512,"uuid":"111471481","full_name":"skytix-dev/rexe","owner":"skytix-dev","description":"Remote Execution tool for Mesos","archived":false,"fork":false,"pushed_at":"2018-08-04T12:07:02.000Z","size":86,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-15T10:43:48.049Z","etag":null,"topics":["mesos","mesos-scheduler"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skytix-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2017-11-20T22:51:28.000Z","updated_at":"2018-08-04T12:07:04.000Z","dependencies_parsed_at":"2023-07-23T09:01:08.200Z","dependency_job_id":null,"html_url":"https://github.com/skytix-dev/rexe","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skytix-dev%2Frexe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skytix-dev%2Frexe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skytix-dev%2Frexe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skytix-dev%2Frexe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skytix-dev","download_url":"https://codeload.github.com/skytix-dev/rexe/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253145113,"owners_count":21861188,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mesos","mesos-scheduler"],"created_at":"2024-08-03T04:00:53.855Z","updated_at":"2026-01-17T16:27:56.263Z","avatar_url":"https://github.com/skytix-dev.png","language":"Rust","funding_links":[],"categories":["Frameworks"],"sub_categories":["Experimental/Example/Unsorted"],"readme":"# rexe\nRemote Execution tool for Mesos.\n\nRExe is a tool to synchronously execute jobs inside Mesos and output the contents of the job to STDOUT.\n\n## Build Instructions\nRExe if built with Rust so you will want to download the compiler for your OS (https://www.rust-lang.org/en-US/install.html).\n\nOnce checked out, simply build the project using Cargo as below:\n\n`cargo build --release`\n\n## Usage\n\nrexe \u003cMESOS_URL\u003e \u003cIMAGE\u003e \u003cOPTIONS\u003e -- \u003cCOMMAND_ARGS\u003e\n\n\nExample:\n\n`rexe 10.9.10.1:2181/mesos docker ubuntu:latest -c 2 -m 1024 -a attribute=/pattern/ -a attribute2=value -e ENV_VAR=value -v /mnt/storage:/storage:RW --force-pull -- ls -la /`\n`rexe 10.9.10.1:2181/mesos exec -c 2 -m 1024 -a attribute=/pattern/ -a attribute2=value -e ENV_VAR=value -- ls -la /`\n\n\n```\nRRemote Executor 0.7.4\n Marc Dergacz. \u003cmarc@skytix.com.au\u003e\n Synchronously execute tasks inside Mesos with STDOUT\n \n USAGE:\n     rexe.exe [FLAGS] [OPTIONS] \u003cMESOS_MASTER\u003e \u003cEXECUTOR\u003e [IMAGE] [-- \u003cARGS\u003e...]\n \n FLAGS:\n         --force-pull    Force pull image\n     -h, --help          Prints help information\n     -s                  Invoke with shell mode on CommandInfo.  Always enabled when executor is 'exec'.\n         --stderr        Fetch STDERR as well\n     -t                  Attach TTY\n     -V, --version       Prints version information\n         --verbose       Verbose output\n \n OPTIONS:\n     -a \u003cattr\u003e...             Match an agent's attribute with the given value or pattern.  RExe will AND all attributes\n                              specified.  Eg. attribute=value or attribute=/value/ \n     -c, --cpus \u003c#CPUS\u003e       Specify the number of cpus required [default: 1]\n     -d, --disk \u003cDISK\u003e        Specify the amount memory required\n     -e \u003cenv\u003e...              Environment variables to pass to container.  Eg. ENV_NAME=value\n     -g \u003c#GPUS\u003e               Specify the number of GPUs required\n     -m, --memory \u003cMEMORY\u003e    Specify the amount memory required [default: 256]\n     -T \u003ctimeout\u003e             Resource wait timeout. Time in seconds on how long RExe should wait for usable resource\n                              offers before giving up. Default: 60.  Set to \u003c= 0 to wait indefinitely.\n     -v \u003cvolume\u003e...           Volume mapping - host_path:container_path:[RO|RW].  Eg.  /host/path:/container/path:RO\n                              Defaults to RW access.\n \n ARGS:\n     \u003cMESOS_MASTER\u003e    Mesos master/zookeeper URL.  RExe will perform leader discovery if provided a zookeeper URL\n                       otherwise http[s] can be provided.  Eg. master1:2181,master2:2181,master3:2181/mesos or\n                       http://master1:5050\n     \u003cEXECUTOR\u003e        Mesos executor to use [possible values: docker, exec]\n     \u003cIMAGE\u003e           Name of docker image\n     \u003cARGS\u003e...         Image arguments\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskytix-dev%2Frexe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskytix-dev%2Frexe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskytix-dev%2Frexe/lists"}