When adding tasks to a queue in AppEngine, task names cannot be reused for a certain amount of time (said to be "tombstoned"). I could not find the duration of the tombstone in the documentation or any way to modify it.
The only thing that hits in the neighborhood is TaskOptions.Builder.etaMillis()
, which sets the expected duration of the task (what for, I don't know). There is no documented relationship between this and the tombstone duration.
So, anyone with insight on this?