appengine-pipelines
appengine-pipelines copied to clipboard
makeViewerUrl
Hello, The Pipeline library will not work on AppEngine using Managed VMs. I opened a support case on the matter and was immediately shutdown and pointed to this document: https://cloud.google.com/appengine/docs/python/config/appconfig?hl=en#Python_app_yaml_Reserved_URLs...
Hi, we are seeing a number of cases where Pipelines seem to die because their tasks fail (and thus hit the max failuires in the queue). The main offender seems...
in this line https://github.com/GoogleCloudPlatform/appengine-pipelines/blob/master/python/src/pipeline/pipeline.py#L1672 The library simply passes the exception of taskqueue.TombstonedTaskError which happens often in our application at this point of the library. But when the retries exceeds task_retry_limit...
We have a following pipeline: ``` python class SomePipeline(pipeline.Pipeline): output_names = ['status'] def run(self, execution_plan): status, error = // do external call self.fill(self.outputs.status, json.dumps({ 'status': str(status), 'error': error })) //......
Right now everything is hard coded to /_ah/pipeline/ This is an odd string, it would be better if it were configurable.
The root of this particular pipeline starts out in the default namespace, then it's immediate children change to a different namespace each (one for each of our customers), and those...
I have a generator task that creates a promise then spawns further generator tasks that rely on the same promise but there is no way to share that promised value...
We have jobs that can have 500 children, who themselves can have 500 children etc. This leads to a pipeline comprised of up to 100 000 jobs. In that situation,...
There seems to be a job display name and yet it is always the class name. Add a method to allow the user to set the job display name rather...
For DevOps purposes, we had added functionality to the deferred library to allow a task to be queued with additional information added to the task url (eg: normal task queues...