dlt._workspace.deployment.launchers.job
System launcher for function-based jobs.
run
def run(entry_point: TRuntimeEntryPoint, run_id: str, trigger: str) -> Any
Execute a function job from its entry point definition.
Arguments:
entry_pointTRuntimeEntryPoint - What to run (module + function + run_args).run_idstr - Unique run identifier.triggerstr - Trigger string that fired this run.
Returns:
Any- The return value of the job function.