Last active
December 28, 2015 17:39
-
-
Save ssorallen/7537903 to your computer and use it in GitHub Desktop.
Create dummy Airbnb Chronos jobs from the command line for testing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
import argparse | |
import datetime | |
import httplib | |
import json | |
def main(): | |
parser = argparse.ArgumentParser() | |
parser.add_argument("-n", default=1, type=int, | |
help="number of Chronos jobs to create (default: 1)") | |
args = parser.parse_args() | |
payload = { | |
"async": False, | |
"command": "sleep 50", | |
"disabled": False, | |
"executor": "", | |
"epsilon": "PT15M", | |
"owner": "[email protected]" | |
} | |
headers = {"Content-type": "application/json"} | |
for i in range(args.n): | |
now = datetime.datetime.utcnow() | |
payload["name"] = "JOB%i" % ((now - datetime.datetime.utcfromtimestamp(0)).total_seconds() * 1000) | |
payload["schedule"] = "R/%s/PT24H" % now.isoformat() | |
connection = httplib.HTTPConnection("localhost:8080") | |
connection.request("POST", "/scheduler/iso8601", json.dumps(payload), headers) | |
connection.close() | |
print "Created %i job(s) on local Chronos" % args.n | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment