Created
May 5, 2015 04:41
-
-
Save bhouse/c76f0d0023a47d3c9b11 to your computer and use it in GitHub Desktop.
aurora workshop
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
pkg_path = '/vagrant/hello_world.py' | |
# we use a trick here to make the configuration change with | |
# the contents of the file, for simplicity. in a normal setting, packages would be | |
# versioned, and the version number would be changed in the configuration. | |
import hashlib | |
with open(pkg_path, 'rb') as f: | |
pkg_checksum = hashlib.md5(f.read()).hexdigest() | |
# copy hello_world.py into the local sandbox | |
install = Process( | |
name = 'fetch_package', | |
cmdline = 'cp %s . && echo %s && chmod +x hello_world.py' % (pkg_path, pkg_checksum)) | |
# run the script | |
hello_world = Process( | |
name = 'hello_world', | |
cmdline = 'python hello_world.py') | |
# describe the task | |
hello_world_task = SequentialTask( | |
processes = [install, hello_world], | |
resources = Resources(cpu = .1, ram = 1*MB, disk=8*MB)) | |
jobs = [ | |
Service(cluster = 'devcluster', | |
environment = 'devel', | |
role = 'www-data', | |
name = 'hello_world', | |
task = hello_world_task), | |
Service(cluster = 'devcluster', | |
environment = 'prod', | |
role = 'www-data', | |
name = 'hello_world', | |
task = hello_world_task, | |
instances = 2, | |
production = True, | |
constraints = {'host': 'limit:2', 'rack': 'limit:2'}) | |
] |
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
import sys | |
import time | |
def main(argv): | |
SLEEP_DELAY = 10 | |
# Python ninjas - ignore this blatant bug. | |
for i in xrang(100): | |
print("Hello world! The time is now: %s. Sleeping for %d secs" % ( | |
time.asctime(), SLEEP_DELAY)) | |
sys.stdout.flush() | |
time.sleep(SLEEP_DELAY) | |
if __name__ == "__main__": | |
main(sys.argv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment