Hijacking Function Calls for Durability

Back Hijacking Function Calls for Durability By Miki Tebeka In the previous post we discussed how to intercept function calls in the user Python code and transform them. For example, the following code: event = ml.enrich(event) is transformed into: event = ml.enrich(event)event = _ak_call(ml.enrich, event) In this blog post, we’re going to look at how _ak_call works. Durable Execution […]
Durable Python: Reliable, Long-Running Workflows with Just a Few Lines of Code

Durable Python: Reliable, Long-Running Workflows with Just a Few Lines of Code By Haim Zlatokrilov In modern distributed systems, developers often need to orchestrate workflows that connect APIs from diverse systems or services. Common automation use cases may include DevOps, AI pipelines, business operations workflows, and more.Generally speaking, coding the business logic for such a […]