|
|
|
|
|
by wittydeveloper
1190 days ago
|
|
When deployed in non-local environments, background functions get executed on our infrastructure with their (securely stored) arguments, spawn in a dedicated isolated temporary container. For our users concerned about data locality, we recommend pushing the minimal data as arguments (ex: ids or external ids) and fetching the data during the execution on our side, if needed, through a dedicated SSH tunneling setup.
Once an execution is done, its associated isolated container - gets a dedicated VPC and disk - gets destroyed permanently.
We will also provide on-premises solutions for Enterprises. In local environment (dev), background functions run completely synchronously and locally, no call is made to Defer. |
|