Abort And Resurrect
Pricing
Pay per usage
Go to Apify Store

Abort And Resurrect
Aborts actor runs in bulk and resurrects them with new input and options.
Pricing
Pay per usage
Rating
0.0
(0)
Developer

Ondra Urban
Maintained by Community
Actor stats
2
Bookmarked
12
Total users
2
Monthly active users
3 years ago
Last modified
Categories
Share
Abort & Resurrect with new input
This utility actor aborts selected actor runs and resurrects them with new input. This is done using the transformInput function, which receives the original input as its first argument and should return the updated input for the actor run.
function transformInput({ input, options }) {input.foo = 'bar';options.memory = 2048;}
Where input is the parsed INPUT fetched from the run's key-value store and options are resurrect API options.
{build: 'latest',memory: 1024,timeout: 3600}
If you don't touch the options, the original options the actor started with will be used.