|
|
|
|
|
by wittydeveloper
1190 days ago
|
|
The Builder part is clearly a differentiator; however, background functions are different from Serverless functions on many points - on top of being natively integrated with our Scheduler. First, they allow a maximum execution time comparable to “pure server” environments, instead of 15min. Then, the code-first approach allows configuring the execution parameters (concurrency, retries, and more) from the function’s code and enables to write workflows by applying well-known code patterns such as recursion or map-reduce (calling child background functions is a workflow). Finally, you can write a background function that requires any kind of dependencies, whether they be internal, external, or even native. |
|
Does this look nice in the observability layer?