Class Backoff$
- java.lang.Object
-
- org.apache.pekko.pattern.Backoff$
-
public class Backoff$ extends java.lang.Object
Deprecated.This API is superseded by theBackoffOpts
object.
-
-
Constructor Summary
Constructors Constructor Description Backoff$()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BackoffOptions
onFailure(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor)
Deprecated.Use the overloaded one which accepts maxNrOfRetries instead.BackoffOptions
onFailure(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onFailure instead.BackoffOptions
onFailure(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor)
Deprecated.Use BackoffOpts.onFailure instead.BackoffOptions
onFailure(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onFailure instead.BackoffOptions
onStop(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor)
Deprecated.Use the overloaded one which accepts maxNrOfRetries instead.BackoffOptions
onStop(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onStop instead.BackoffOptions
onStop(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor)
Deprecated.Use BackoffOpts.onStop instead.BackoffOptions
onStop(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onStop instead.
-
-
-
Field Detail
-
MODULE$
public static final Backoff$ MODULE$
Deprecated.Static reference to the singleton instance of this Scala object.
-
-
Method Detail
-
onFailure
public BackoffOptions onFailure(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onFailure instead. Since Akka 2.5.22.Back-off options for creating a back-off supervisor actor that expects a child actor to restart on failure.This explicit supervisor behaves similarly to the normal implicit supervision where if an actor throws an exception, the decider on the supervisor will decide when to
Stop
,Restart
,Escalate
,Resume
the child actor.When the
Restart
directive is specified, the supervisor will delay the restart using an exponential back off strategy (bounded by minBackoff and maxBackoff).This supervisor is intended to be transparent to both the child actor and external actors. Where external actors can send messages to the supervisor as if it was the child and the messages will be forwarded. And when the child is
Terminated
, the supervisor is alsoTerminated
. Transparent to the child means that the child does not have to be aware that it is being supervised specifically by this actor. Just like it does not need to know when it is being supervised by the usual implicit supervisors. The only caveat is that theActorRef
of the child is not stable, so any user storing thesender()
ActorRef
from the child response may eventually not be able to communicate with the storedActorRef
. In general all messages to the child should be directed through this actor.An example of where this supervisor might be used is when you may have an actor that is responsible for continuously polling on a server for some resource that sometimes may be down. Instead of hammering the server continuously when the resource is unavailable, the actor will be restarted with an exponentially increasing back off until the resource is available again.
'''*** This supervisor should not be used with
Pekko Persistence
child actors.Pekko Persistence
actors shutdown unconditionally onpersistFailure()
s rather than throw an exception on a failure like normal actors.onStop(org.apache.pekko.actor.Props, java.lang.String, scala.concurrent.duration.FiniteDuration, scala.concurrent.duration.FiniteDuration, double, int)
should be used instead for cases where the child actor terminates itself as a failure signal instead of the normal behavior of throwing an exception. ***''' You can define another supervision strategy by usingorg.apache.pekko.pattern.BackoffOptions.withSupervisorStrategy
onpekko.pattern.BackoffOptions
.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.maxNrOfRetries
- maximum number of attempts to restart the child actor. The supervisor will terminate itself after the maxNoOfRetries is reached. In order to restart infinitely pass in-1
.
-
onFailure
public BackoffOptions onFailure(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor)
Deprecated.Use BackoffOpts.onFailure instead. Since Akka 2.5.22.Back-off options for creating a back-off supervisor actor that expects a child actor to restart on failure.This explicit supervisor behaves similarly to the normal implicit supervision where if an actor throws an exception, the decider on the supervisor will decide when to
Stop
,Restart
,Escalate
,Resume
the child actor.When the
Restart
directive is specified, the supervisor will delay the restart using an exponential back off strategy (bounded by minBackoff and maxBackoff).This supervisor is intended to be transparent to both the child actor and external actors. Where external actors can send messages to the supervisor as if it was the child and the messages will be forwarded. And when the child is
Terminated
, the supervisor is alsoTerminated
. Transparent to the child means that the child does not have to be aware that it is being supervised specifically by this actor. Just like it does not need to know when it is being supervised by the usual implicit supervisors. The only caveat is that theActorRef
of the child is not stable, so any user storing thesender()
ActorRef
from the child response may eventually not be able to communicate with the storedActorRef
. In general all messages to the child should be directed through this actor.An example of where this supervisor might be used is when you may have an actor that is responsible for continuously polling on a server for some resource that sometimes may be down. Instead of hammering the server continuously when the resource is unavailable, the actor will be restarted with an exponentially increasing back off until the resource is available again.
'''*** This supervisor should not be used with
Pekko Persistence
child actors.Pekko Persistence
actors shutdown unconditionally onpersistFailure()
s rather than throw an exception on a failure like normal actors.onStop(org.apache.pekko.actor.Props, java.lang.String, scala.concurrent.duration.FiniteDuration, scala.concurrent.duration.FiniteDuration, double, int)
should be used instead for cases where the child actor terminates itself as a failure signal instead of the normal behavior of throwing an exception. ***''' You can define another supervision strategy by usingorg.apache.pekko.pattern.BackoffOptions.withSupervisorStrategy
onpekko.pattern.BackoffOptions
.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.
-
onFailure
public BackoffOptions onFailure(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onFailure instead. Since Akka 2.5.22.Java API: Back-off options for creating a back-off supervisor actor that expects a child actor to restart on failure.This explicit supervisor behaves similarly to the normal implicit supervision where if an actor throws an exception, the decider on the supervisor will decide when to
Stop
,Restart
,Escalate
,Resume
the child actor.When the
Restart
directive is specified, the supervisor will delay the restart using an exponential back off strategy (bounded by minBackoff and maxBackoff).This supervisor is intended to be transparent to both the child actor and external actors. Where external actors can send messages to the supervisor as if it was the child and the messages will be forwarded. And when the child is
Terminated
, the supervisor is alsoTerminated
. Transparent to the child means that the child does not have to be aware that it is being supervised specifically by this actor. Just like it does not need to know when it is being supervised by the usual implicit supervisors. The only caveat is that theActorRef
of the child is not stable, so any user storing thesender()
ActorRef
from the child response may eventually not be able to communicate with the storedActorRef
. In general all messages to the child should be directed through this actor.An example of where this supervisor might be used is when you may have an actor that is responsible for continuously polling on a server for some resource that sometimes may be down. Instead of hammering the server continuously when the resource is unavailable, the actor will be restarted with an exponentially increasing back off until the resource is available again.
'''*** This supervisor should not be used with
Pekko Persistence
child actors.Pekko Persistence
actors shutdown unconditionally onpersistFailure()
s rather than throw an exception on a failure like normal actors.onStop(org.apache.pekko.actor.Props, java.lang.String, scala.concurrent.duration.FiniteDuration, scala.concurrent.duration.FiniteDuration, double, int)
should be used instead for cases where the child actor terminates itself as a failure signal instead of the normal behavior of throwing an exception. ***''' You can define another supervision strategy by usingorg.apache.pekko.pattern.BackoffOptions.withSupervisorStrategy
onpekko.pattern.BackoffOptions
.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.maxNrOfRetries
- maximum number of attempts to restart the child actor. The supervisor will terminate itself after the maxNoOfRetries is reached. In order to restart infinitely pass in-1
.
-
onFailure
public BackoffOptions onFailure(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor)
Deprecated.Use the overloaded one which accepts maxNrOfRetries instead. Since Akka 2.5.17.Java API: Back-off options for creating a back-off supervisor actor that expects a child actor to restart on failure.This explicit supervisor behaves similarly to the normal implicit supervision where if an actor throws an exception, the decider on the supervisor will decide when to
Stop
,Restart
,Escalate
,Resume
the child actor.When the
Restart
directive is specified, the supervisor will delay the restart using an exponential back off strategy (bounded by minBackoff and maxBackoff).This supervisor is intended to be transparent to both the child actor and external actors. Where external actors can send messages to the supervisor as if it was the child and the messages will be forwarded. And when the child is
Terminated
, the supervisor is alsoTerminated
. Transparent to the child means that the child does not have to be aware that it is being supervised specifically by this actor. Just like it does not need to know when it is being supervised by the usual implicit supervisors. The only caveat is that theActorRef
of the child is not stable, so any user storing thesender()
ActorRef
from the child response may eventually not be able to communicate with the storedActorRef
. In general all messages to the child should be directed through this actor.An example of where this supervisor might be used is when you may have an actor that is responsible for continuously polling on a server for some resource that sometimes may be down. Instead of hammering the server continuously when the resource is unavailable, the actor will be restarted with an exponentially increasing back off until the resource is available again.
'''*** This supervisor should not be used with
Pekko Persistence
child actors.Pekko Persistence
actors shutdown unconditionally onpersistFailure()
s rather than throw an exception on a failure like normal actors.onStop(org.apache.pekko.actor.Props, java.lang.String, scala.concurrent.duration.FiniteDuration, scala.concurrent.duration.FiniteDuration, double, int)
should be used instead for cases where the child actor terminates itself as a failure signal instead of the normal behavior of throwing an exception. ***''' You can define another supervision strategy by usingorg.apache.pekko.pattern.BackoffOptions.withSupervisorStrategy
onpekko.pattern.BackoffOptions
.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.
-
onStop
public BackoffOptions onStop(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onStop instead. Since Akka 2.5.22.Back-off options for creating a back-off supervisor actor that expects a child actor to stop on failure.This actor can be used to supervise a child actor and start it again after a back-off duration if the child actor is stopped.
This is useful in situations where the re-start of the child actor should be delayed e.g. in order to give an external resource time to recover before the child actor tries contacting it again (after being restarted).
Specifically this pattern is useful for persistent actors, which are stopped in case of persistence failures. Just restarting them immediately would probably fail again (since the data store is probably unavailable). It is better to try again after a delay.
It supports exponential back-off between the given
minBackoff
andmaxBackoff
durations. For example, ifminBackoff
is 3 seconds andmaxBackoff
30 seconds the start attempts will be delayed with 3, 6, 12, 24, 30, 30 seconds. The exponential back-off counter is reset if the actor is not terminated within theminBackoff
duration.In addition to the calculated exponential back-off an additional random delay based the given
randomFactor
is added, e.g. 0.2 adds up to 20% delay. The reason for adding a random delay is to avoid that all failing actors hit the backend resource at the same time.You can retrieve the current child
ActorRef
by sendingBackoffSupervisor.GetCurrentChild
message to this actor and it will reply withpekko.pattern.BackoffSupervisor.CurrentChild
containing theActorRef
of the current child, if any.The
BackoffSupervisor
delegates all messages from the child to the parent of theBackoffSupervisor
, with the supervisor as sender.The
BackoffSupervisor
forwards all other messages to the child, if it is currently running.The child can stop itself and send a
pekko.actor.PoisonPill
to the parent supervisor if it wants to do an intentional stop.Exceptions in the child are handled with the default supervisionStrategy, which can be changed by using
BackoffOptions.withSupervisorStrategy(org.apache.pekko.actor.OneForOneStrategy)
orBackoffOptions.withDefaultStoppingStrategy()
. ARestart
will perform a normal immediate restart of the child. AStop
will stop the child, but it will be started again after the back-off duration.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.maxNrOfRetries
- maximum number of attempts to restart the child actor. The supervisor will terminate itself after the maxNoOfRetries is reached. In order to restart infinitely pass in-1
.
-
onStop
public BackoffOptions onStop(Props childProps, java.lang.String childName, scala.concurrent.duration.FiniteDuration minBackoff, scala.concurrent.duration.FiniteDuration maxBackoff, double randomFactor)
Deprecated.Use BackoffOpts.onStop instead. Since Akka 2.5.22.Back-off options for creating a back-off supervisor actor that expects a child actor to stop on failure.This actor can be used to supervise a child actor and start it again after a back-off duration if the child actor is stopped.
This is useful in situations where the re-start of the child actor should be delayed e.g. in order to give an external resource time to recover before the child actor tries contacting it again (after being restarted).
Specifically this pattern is useful for persistent actors, which are stopped in case of persistence failures. Just restarting them immediately would probably fail again (since the data store is probably unavailable). It is better to try again after a delay.
It supports exponential back-off between the given
minBackoff
andmaxBackoff
durations. For example, ifminBackoff
is 3 seconds andmaxBackoff
30 seconds the start attempts will be delayed with 3, 6, 12, 24, 30, 30 seconds. The exponential back-off counter is reset if the actor is not terminated within theminBackoff
duration.In addition to the calculated exponential back-off an additional random delay based the given
randomFactor
is added, e.g. 0.2 adds up to 20% delay. The reason for adding a random delay is to avoid that all failing actors hit the backend resource at the same time.You can retrieve the current child
ActorRef
by sendingBackoffSupervisor.GetCurrentChild
message to this actor and it will reply withpekko.pattern.BackoffSupervisor.CurrentChild
containing theActorRef
of the current child, if any.The
BackoffSupervisor
delegates all messages from the child to the parent of theBackoffSupervisor
, with the supervisor as sender.The
BackoffSupervisor
forwards all other messages to the child, if it is currently running.The child can stop itself and send a
pekko.actor.PoisonPill
to the parent supervisor if it wants to do an intentional stop.Exceptions in the child are handled with the default supervisionStrategy, which can be changed by using
BackoffOptions.withSupervisorStrategy(org.apache.pekko.actor.OneForOneStrategy)
orBackoffOptions.withDefaultStoppingStrategy()
. ARestart
will perform a normal immediate restart of the child. AStop
will stop the child, but it will be started again after the back-off duration.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.
-
onStop
public BackoffOptions onStop(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor, int maxNrOfRetries)
Deprecated.Use BackoffOpts.onStop instead. Since Akka 2.5.22.Java API: Back-off options for creating a back-off supervisor actor that expects a child actor to stop on failure.This actor can be used to supervise a child actor and start it again after a back-off duration if the child actor is stopped.
This is useful in situations where the re-start of the child actor should be delayed e.g. in order to give an external resource time to recover before the child actor tries contacting it again (after being restarted).
Specifically this pattern is useful for persistent actors, which are stopped in case of persistence failures. Just restarting them immediately would probably fail again (since the data store is probably unavailable). It is better to try again after a delay.
It supports exponential back-off between the given
minBackoff
andmaxBackoff
durations. For example, ifminBackoff
is 3 seconds andmaxBackoff
30 seconds the start attempts will be delayed with 3, 6, 12, 24, 30, 30 seconds. The exponential back-off counter is reset if the actor is not terminated within theminBackoff
duration.In addition to the calculated exponential back-off an additional random delay based the given
randomFactor
is added, e.g. 0.2 adds up to 20% delay. The reason for adding a random delay is to avoid that all failing actors hit the backend resource at the same time.You can retrieve the current child
ActorRef
by sendingBackoffSupervisor.GetCurrentChild
message to this actor and it will reply withpekko.pattern.BackoffSupervisor.CurrentChild
containing theActorRef
of the current child, if any.The
BackoffSupervisor
delegates all messages from the child to the parent of theBackoffSupervisor
, with the supervisor as sender.The
BackoffSupervisor
forwards all other messages to the child, if it is currently running.The child can stop itself and send a
pekko.actor.PoisonPill
to the parent supervisor if it wants to do an intentional stop.Exceptions in the child are handled with the default supervisionStrategy, which can be changed by using
BackoffOptions.withSupervisorStrategy(org.apache.pekko.actor.OneForOneStrategy)
orBackoffOptions.withDefaultStoppingStrategy()
. ARestart
will perform a normal immediate restart of the child. AStop
will stop the child, but it will be started again after the back-off duration.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.maxNrOfRetries
- maximum number of attempts to restart the child actor. The supervisor will terminate itself after the maxNoOfRetries is reached. In order to restart infinitely pass in-1
.
-
onStop
public BackoffOptions onStop(Props childProps, java.lang.String childName, java.time.Duration minBackoff, java.time.Duration maxBackoff, double randomFactor)
Deprecated.Use the overloaded one which accepts maxNrOfRetries instead. Since Akka 2.5.17.Java API: Back-off options for creating a back-off supervisor actor that expects a child actor to stop on failure.This actor can be used to supervise a child actor and start it again after a back-off duration if the child actor is stopped.
This is useful in situations where the re-start of the child actor should be delayed e.g. in order to give an external resource time to recover before the child actor tries contacting it again (after being restarted).
Specifically this pattern is useful for persistent actors, which are stopped in case of persistence failures. Just restarting them immediately would probably fail again (since the data store is probably unavailable). It is better to try again after a delay.
It supports exponential back-off between the given
minBackoff
andmaxBackoff
durations. For example, ifminBackoff
is 3 seconds andmaxBackoff
30 seconds the start attempts will be delayed with 3, 6, 12, 24, 30, 30 seconds. The exponential back-off counter is reset if the actor is not terminated within theminBackoff
duration.In addition to the calculated exponential back-off an additional random delay based the given
randomFactor
is added, e.g. 0.2 adds up to 20% delay. The reason for adding a random delay is to avoid that all failing actors hit the backend resource at the same time.You can retrieve the current child
ActorRef
by sendingBackoffSupervisor.GetCurrentChild
message to this actor and it will reply withpekko.pattern.BackoffSupervisor.CurrentChild
containing theActorRef
of the current child, if any.The
BackoffSupervisor
delegates all messages from the child to the parent of theBackoffSupervisor
, with the supervisor as sender.The
BackoffSupervisor
forwards all other messages to the child, if it is currently running.The child can stop itself and send a
pekko.actor.PoisonPill
to the parent supervisor if it wants to do an intentional stop.Exceptions in the child are handled with the default supervisionStrategy, which can be changed by using
BackoffOptions.withSupervisorStrategy(org.apache.pekko.actor.OneForOneStrategy)
orBackoffOptions.withDefaultStoppingStrategy()
. ARestart
will perform a normal immediate restart of the child. AStop
will stop the child, but it will be started again after the back-off duration.- Parameters:
childProps
- thepekko.actor.Props
of the child actor that will be started and supervisedchildName
- name of the child actorminBackoff
- minimum (initial) duration until the child actor will started again, if it is terminatedmaxBackoff
- the exponential back-off is capped to this durationrandomFactor
- after calculation of the exponential back-off an additional random delay based on this factor is added, e.g.0.2
adds up to20%
delay. In order to skip this additional delay pass in0
.
-
-