-
-
Notifications
You must be signed in to change notification settings - Fork 356
Closed
Labels
Description
Use case: I have an actor that sometimes takes longer than 10 minutes to run. I can predict this. Let's say I want to double the default time_limit. If I use the decorator @actor(time_limit=1_200_000) then the actor will always have the 20-minute time_limit. I only want to increase the time_limit when I know I'm handing the actor a larger amount of work. Usually, I want it to have the default time_limit.
quirky_actor.message_with_options(args=(config.get('whats_my_motivation'),), time_limit=1_000*60*20)
I'm having a hard time figuring out if this even works. Should it work?
Reactions are currently unavailable