distributed workflows with flowy
play

Distributed Workflows with Flowy EuroPython 2015 Sever Banesiu - PowerPoint PPT Presentation

Distributed Workflows with Flowy EuroPython 2015 Sever Banesiu @severb Overview 1. Distributed Workflows 2. Code + Demo 3. Workflow Engine 4. Execution Model 5. More Examples 6. Scaling EuroPython 2015 Sever Banesiu @severb What is a


  1. Distributed Workflows with Flowy EuroPython 2015 Sever Banesiu @severb

  2. Overview 1. Distributed Workflows 2. Code + Demo 3. Workflow Engine 4. Execution Model 5. More Examples 6. Scaling EuroPython 2015 Sever Banesiu @severb

  3. What is a distributed workflow ? Hint A process composed of a mix of independent and interdependent units of work called tasks . EuroPython 2015 Sever Banesiu @severb

  4. Workflows are usually modeled with DAGs or ad-hoc code Note Neither provide a satisfactory solution. EuroPython 2015 Sever Banesiu @severb

  5. Flowy A Workflow Modeling Library It uses single-threaded -looking Python code and gradual concurrency inference . EuroPython 2015 Sever Banesiu @severb

  6. An Example subtitle URL video URL embed find target ads subtitle chapters embedded URL ad tags extract WebM MPEG-4 extract thumbnail CDN URL CDN URL CDN URL update EuroPython 2015 DB Sever Banesiu @severb

  7. An Ad-hoc Solution, using task queues find chapters embed worker worker storage subtitle worker target ads task queue EuroPython 2015 Sever Banesiu @severb

  8. An Ad-hoc Solution, using task queues find chapters embed worker worker storage subtitle worker target ads task queue EuroPython 2015 Sever Banesiu @severb

  9. An Ad-hoc Solution, using task queues extract thumbnail find extract chapters thumbnail embed worker worker storage subtitle worker target ads task queue EuroPython 2015 Sever Banesiu @severb

  10. An Ad-hoc Solution, using task queues find decision chapters embed worker worker storage subtitle worker target ads task queue EuroPython 2015 Sever Banesiu @severb

  11. An Ad-hoc Solution, using task queues extract thumbnail extract decision thumbnail embed worker worker storage subtitle worker target ads task queue EuroPython 2015 Sever Banesiu @severb

  12. The Workflow Engine activity decision worker worker worker worker worker worker * automatically schedule the corresponding decision API type when an activity is finished * ensure all decisions for the same workflow execution activity decision are sequential * merge multiple queued decisions for the same activity decision workflow execution into one storage * provide fault tolerance with timers activity decision EuroPython 2015 activity queue decision queue Sever Banesiu @severb

  13. The Workflow Engine activity decision worker worker worker worker worker worker Not something new API activity decision activity decision storage activity decision EuroPython 2015 activity queue decision queue Sever Banesiu @severb

  14. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  15. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  16. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  17. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  18. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  19. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  20. Side Effects ! The execution path must not change between invocations. Use only pure functions inside the workflow code. i Use input data or dedicated activities for random values, current date, external reading, etc. Avoid complex computations in the workflow code. EuroPython 2015 Sever Banesiu @severb

  21. Using Task Results def example(square): def workflow(a, b): a_squared = square(a) b_squared = square(b) if a_squared + b_squared > 100: return math.copysign(a_squared, a) return math.copysign(b_squared, b) return workflow EuroPython 2015 Sever Banesiu @severb

  22. Using Task Results def example(square): def workflow(a, b): a_squared = square(a) b_squared = square(b) if a_squared + b_squared > 100: return math.copysign(a_squared, a) return math.copysign(b_squared, b) return workflow EuroPython 2015 Sever Banesiu @severb

  23. Execution Model def process_video(embed_subtitle, find_chapters, ...): def workflow(video_URL, subtitle_URL): new_URL = embed_subtitle(video_URL, subtitle_URL) webm_URL = encode_video(new_URL, 'webm') mpeg4_URL = encode_video(new_URL, 'mpeg4') ad_tags = target_ads(subtitle_URL) chapters = find_chapters(video_URL) thumbnails = [extract_thumbnail(video_URL, c) for c in chapters] return video_URL, webm_URL, mpeg4_URL, thumbnails, ad_tags return workflow EuroPython 2015 Sever Banesiu @severb

  24. Using Task Results def example(sum, square): def workflow(a, b): a_squared = square(a) b_squared = square(b) if a_squared < 100: a_squared = sum(a_squared, 100) if b_squared > 100: b_squared = sum(b_squared, 100) return sum(a_squared, b_squared) return workflow EuroPython 2015 Sever Banesiu @severb

  25. Subworkflows def subworkflow(sum, square): def workflow(n): n_squared = square(n) if n_squared < 100: n_squared = sum(n_squared, 100) return workflow def example(sum, example_sub): def workflow(a, b): return sum(example_sub(a_squared), example_sub(b_squared)) return workflow EuroPython 2015 Sever Banesiu @severb

  26. Error Handling def example(square): def workflow(a): try: a_squared = square(a) except: return 0 else: return a_squared + 100 return workflow EuroPython 2015 Sever Banesiu @severb

  27. Error Handling def example(square): def workflow(a): a_squared = square(a) try: return a_squared + 100 except TaskError: return 0 return workflow EuroPython 2015 Sever Banesiu @severb

  28. Error Handling def example(square): def workflow(a): a_squared = square(a) try: wait(a_squared) except TaskError: return 0 else: return a_squared + 100 return workflow EuroPython 2015 Sever Banesiu @severb

  29. Error Handling def example(sum, square): def workflow(a, b): a_squared = square(a) b_squared = square(b) return sum(a_squared, b_squared) return workflow EuroPython 2015 Sever Banesiu @severb

  30. Scaling * only configuration changes (+ heartbeat callable) * execution timers for fault tolerance * a new error type, TimeoutError * automatic retries on timeout * heartbeats * idempotent activities * activities in other languages * results and input data size restrictions * each worker is single threaded /process ( use process managers) * use subworkflows if history gets too large * can scale up and down with ease (overall progress is not lost) EuroPython 2015 Sever Banesiu @severb

  31. Thank you, Questions? docs soon! github.com/severb/flowy/ EuroPython 2015 Sever Banesiu @severb

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend