Hi all,
We typically have two scenarios where we would like a graph of jobs to run; the first is on our servers in response to an event; the second is a developer running on their local machine via the remote api.
For the first case setting up a pipeline is ideal, but for the second case we'd like to be able to avoid the limitations of running a task on the server (i.e. the time and memory limits).
Currently we need to write the work two separate ways - once as a pipeline and once as a serial (or parallel using threads/subprocesses/etc.) script.
Is there a built in way to run a pipeline without using taskqueue as the backend? This would allow us to write the logic only once (as a pipeline) but still have the flexibility of how it is executed.
Thanks in advance!
Luke