How-to: Use virtual actors in Dapr

Learn more about the actor pattern

The Dapr actors runtime provides support for virtual actors through following capabilities:

Actor method invocation

You can interact with Dapr to invoke the actor method by calling HTTP/gRPC endpoint

  1. POST/GET/PUT/DELETE http://localhost:3500/v1.0/actors/<actorType>/<actorId>/method/<method>

You can provide any data for the actor method in the request body and the response for the request is in response body which is data from actor method call.

Refer api spec for more details.

Actor state management

Actors can save state reliably using state management capability. You can interact with Dapr through HTTP/gRPC endpoints for state management.

To use actors, your state store must support multi-item transactions. This means your state store component must implement the TransactionalStore interface. The list of components that support transactions/actors can be found here: supported state stores. Only a single state store component can be used as the statestore for all actors.

Actor timers and reminders

Actors can schedule periodic work on themselves by registering either timers or reminders.

Actor timers

You can register a callback on actor to be executed based on a timer.

The Dapr actor runtime ensures that the callback methods respect the turn-based concurrency guarantees.This means that no other actor methods or timer/reminder callbacks will be in progress until this callback completes execution.

The next period of the timer starts after the callback completes execution. This implies that the timer is stopped while the callback is executing and is started when the callback finishes.

The Dapr actors runtime saves changes made to the actor’s state when the callback finishes. If an error occurs in saving the state, that actor object is deactivated and a new instance will be activated.

All timers are stopped when the actor is deactivated as part of garbage collection. No timer callbacks are invoked after that. Also, the Dapr actors runtime does not retain any information about the timers that were running before deactivation. It is up to the actor to register any timers that it needs when it is reactivated in the future.

You can create a timer for an actor by calling the HTTP/gRPC request to Dapr.

  1. POST/PUT http://localhost:3500/v1.0/actors/<actorType>/<actorId>/timers/<name>

The timer duetime and callback are specified in the request body. The due time represents when the timer will first fire after registration. The period represents how often the timer fires after that. A due time of 0 means to fire immediately. Negative due times and negative periods are invalid.

The following request body configures a timer with a dueTime of 9 seconds and a period of 3 seconds. This means it will first fire after 9 seconds, then every 3 seconds after that.

  1. {
  2. "dueTime":"0h0m9s0ms",
  3. "period":"0h0m3s0ms"
  4. }

The following request body configures a timer with a dueTime 0 seconds and a period of 3 seconds. This means it fires immediately after registration, then every 3 seconds after that.

  1. {
  2. "dueTime":"0h0m0s0ms",
  3. "period":"0h0m3s0ms"
  4. }

You can remove the actor timer by calling

  1. DELETE http://localhost:3500/v1.0/actors/<actorType>/<actorId>/timers/<name>

Refer api spec for more details.

Actor reminders

Reminders are a mechanism to trigger persistent callbacks on an actor at specified times. Their functionality is similar to timers. But unlike timers, reminders are triggered under all circumstances until the actor explicitly unregisters them or the actor is explicitly deleted or the number in invocations is exhausted. Specifically, reminders are triggered across actor deactivations and failovers because the Dapr actors runtime persists the information about the actors’ reminders using Dapr actor state provider.

You can create a persistent reminder for an actor by calling the Http/gRPC request to Dapr.

  1. POST/PUT http://localhost:3500/v1.0/actors/<actorType>/<actorId>/reminders/<name>

The reminder duetime and callback can be specified in the request body. The due time represents when the reminder first fires after registration. The period represents how often the reminder will fire after that. A due time of 0 means to fire immediately. Negative due times and negative periods are invalid. To register a reminder that fires only once, set the period to an empty string.

The following request body configures a reminder with a dueTime 9 seconds and a period of 3 seconds. This means it will first fire after 9 seconds, then every 3 seconds after that.

  1. {
  2. "dueTime":"0h0m9s0ms",
  3. "period":"0h0m3s0ms"
  4. }

The following request body configures a reminder with a dueTime 0 seconds and a period of 3 seconds. This means it will fire immediately after registration, then every 3 seconds after that.

  1. {
  2. "dueTime":"0h0m0s0ms",
  3. "period":"0h0m3s0ms"
  4. }

The following request body configures a reminder with a dueTime 15 seconds and a period of empty string. This means it will first fire after 15 seconds, then never fire again.

  1. {
  2. "dueTime":"0h0m15s0ms",
  3. "period":""
  4. }

ISO 8601 duration can also be used to specify period. The following request body configures a reminder with a dueTime 0 seconds an period of 15 seconds.

  1. {
  2. "dueTime":"0h0m0s0ms",
  3. "period":"P0Y0M0W0DT0H0M15S"
  4. }

The designators for zero are optional and the above period can be simplified to PT15S. ISO 8601 specifies multiple recurrence formats but only the duration format is currently supported.

Reminders with repetitions

When configured with ISO 8601 durations, the period column also allows to specify number of times a reminder can run. The following request body will create a reminder that will execute for 5 number of times with a period of 15 seconds.

  1. {
  2. "dueTime":"0h0m0s0ms",
  3. "period":"R5/PT15S"
  4. }

The number of repetitions i.e. the number of times the reminder is run should be a positive number.

Example

Watch this video for more information on using ISO 861 for Reminders

Retrieve actor reminder

You can retrieve the actor reminder by calling

  1. GET http://localhost:3500/v1.0/actors/<actorType>/<actorId>/reminders/<name>

Remove the actor reminder

You can remove the actor reminder by calling

  1. DELETE http://localhost:3500/v1.0/actors/<actorType>/<actorId>/reminders/<name>

Refer api spec for more details.

Actor runtime configuration

You can configure the Dapr Actors runtime configuration to modify the default runtime behavior.

Configuration parameters

  • actorIdleTimeout - The timeout before deactivating an idle actor. Checks for timeouts occur every actorScanInterval interval. Default: 60 minutes
  • actorScanInterval - The duration which specifies how often to scan for actors to deactivate idle actors. Actors that have been idle longer than actor_idle_timeout will be deactivated. Default: 30 seconds
  • drainOngoingCallTimeout - The duration when in the process of draining rebalanced actors. This specifies the timeout for the current active actor method to finish. If there is no current actor method call, this is ignored. Default: 60 seconds
  • drainRebalancedActors - If true, Dapr will wait for drainOngoingCallTimeout duration to allow a current actor call to complete before trying to deactivate an actor. Default: true
  • reentrancy (ActorReentrancyConfig) - Configure the reentrancy behavior for an actor. If not provided, reentrancy is diabled. Default: disabled Default: 0
  • remindersStoragePartitions - Configure the number of partitions for actor’s reminders. If not provided, all reminders are saved as a single record in actor’s state store. Default: 0

  • Java

  • Dotnet
  • Python
  1. // import io.dapr.actors.runtime.ActorRuntime;
  2. // import java.time.Duration;
  3. ActorRuntime.getInstance().getConfig().setActorIdleTimeout(Duration.ofMinutes(60));
  4. ActorRuntime.getInstance().getConfig().setActorScanInterval(Duration.ofSeconds(30));
  5. ActorRuntime.getInstance().getConfig().setDrainOngoingCallTimeout(Duration.ofSeconds(60));
  6. ActorRuntime.getInstance().getConfig().setDrainBalancedActors(true);
  7. ActorRuntime.getInstance().getConfig().setActorReentrancyConfig(false, null);
  8. ActorRuntime.getInstance().getConfig().setRemindersStoragePartitions(7);

See this example

  1. // In Startup.cs
  2. public void ConfigureServices(IServiceCollection services)
  3. {
  4. // Register actor runtime with DI
  5. services.AddActors(options =>
  6. {
  7. // Register actor types and configure actor settings
  8. options.Actors.RegisterActor<MyActor>();
  9. // Configure default settings
  10. options.ActorIdleTimeout = TimeSpan.FromMinutes(60);
  11. options.ActorScanInterval = TimeSpan.FromSeconds(30);
  12. options.DrainOngoingCallTimeout = TimeSpan.FromSeconds(60);
  13. options.DrainRebalancedActors = true;
  14. options.RemindersStoragePartitions = 7;
  15. // reentrancy not implemented in the .NET SDK at this time
  16. });
  17. // Register additional services for use with actors
  18. services.AddSingleton<BankService>();
  19. }

See the .NET SDK documentation.

  1. from datetime import timedelta
  2. from dapr.actor.runtime.config import ActorRuntimeConfig, ActorReentrancyConfig
  3. ActorRuntime.set_actor_config(
  4. ActorRuntimeConfig(
  5. actor_idle_timeout=timedelta(hours=1),
  6. actor_scan_interval=timedelta(seconds=30),
  7. drain_ongoing_call_timeout=timedelta(minutes=1),
  8. drain_rebalanced_actors=True,
  9. reentrancy=ActorReentrancyConfig(enabled=False),
  10. remindersStoragePartitions=7
  11. )
  12. )

Refer to the documentation and examples of the Dapr SDKs for more details.

Partitioning reminders

Preview feature

Actor reminders partitioning is currently in preview. Use this feature if you are runnining into issues due to a high number of reminders registered.

Actor reminders are persisted and continue to be triggered after sidecar restarts. Prior to Dapr runtime version 1.3, reminders were persisted on a single record in the actor state store:

KeyValue
actors||<actor type>[ <reminder 1>, <reminder 2>, … , <reminder n> ]

Applications that register many reminders can experience the following issues:

  • Low throughput on reminders registration and deregistration
  • Limit on total number of reminders registered based on the single record size limit on the state store

Since version 1.3, applications can now enable partitioning of actor reminders in the state store. As data is distributed in multiple keys in the state store. First, there is a metadata record in actors\|\|<actor type>\|\|metadata that is used to store persisted configuration for a given actor type. Then, there are multiple records that stores subsets of the reminders for the same actor type.

KeyValue
actors||<actor type>||metadata{ “id”: <actor metadata identifier>, “actorRemindersMetadata”: { “partitionCount”: <number of partitions for reminders> } }
actors||<actor type>||<actor metadata identifier>||reminders||1[ <reminder 1-1>, <reminder 1-2>, … , <reminder 1-n> ]
actors||<actor type>||<actor metadata identifier>||reminders||2[ <reminder 1-1>, <reminder 1-2>, … , <reminder 1-m> ]

If the number of partitions is not enough, it can be changed and Dapr’s sidecar will automatically redistribute the reminders’s set.

Enabling actor reminders partitioning

Actor reminders partitioning is currently in preview, so enabling it is a two step process.

Preview feature configuration

Before using reminders partitioning, actor type metadata must be enabled in Dapr. For more information on preview configurations, see the full guide on opting into preview features in Dapr. Below is an example of the configuration:

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Configuration
  3. metadata:
  4. name: myconfig
  5. spec:
  6. features:
  7. - name: Actor.TypeMetadata
  8. enabled: true

Actor runtime configuration

Once actor type metadata is enabled as an opt-in preview feature, the actor runtime must also provide the appropriate configuration to partition actor reminders. This is done by the actor’s endpoint for GET /dapr/config, similar to other actor configuration elements.

  1. // import io.dapr.actors.runtime.ActorRuntime;
  2. // import java.time.Duration;
  3. ActorRuntime.getInstance().getConfig().setActorIdleTimeout(Duration.ofMinutes(60));
  4. ActorRuntime.getInstance().getConfig().setActorScanInterval(Duration.ofSeconds(30));
  5. ActorRuntime.getInstance().getConfig().setRemindersStoragePartitions(7);

See this example

  1. // In Startup.cs
  2. public void ConfigureServices(IServiceCollection services)
  3. {
  4. // Register actor runtime with DI
  5. services.AddActors(options =>
  6. {
  7. // Register actor types and configure actor settings
  8. options.Actors.RegisterActor<MyActor>();
  9. // Configure default settings
  10. options.ActorIdleTimeout = TimeSpan.FromMinutes(60);
  11. options.ActorScanInterval = TimeSpan.FromSeconds(30);
  12. options.RemindersStoragePartitions = 7;
  13. // reentrancy not implemented in the .NET SDK at this time
  14. });
  15. // Register additional services for use with actors
  16. services.AddSingleton<BankService>();
  17. }

See the .NET SDK documentation.

  1. from datetime import timedelta
  2. ActorRuntime.set_actor_config(
  3. ActorRuntimeConfig(
  4. actor_idle_timeout=timedelta(hours=1),
  5. actor_scan_interval=timedelta(seconds=30),
  6. remindersStoragePartitions=7
  7. )
  8. )
  1. type daprConfig struct {
  2. Entities []string `json:"entities,omitempty"`
  3. ActorIdleTimeout string `json:"actorIdleTimeout,omitempty"`
  4. ActorScanInterval string `json:"actorScanInterval,omitempty"`
  5. DrainOngoingCallTimeout string `json:"drainOngoingCallTimeout,omitempty"`
  6. DrainRebalancedActors bool `json:"drainRebalancedActors,omitempty"`
  7. RemindersStoragePartitions int `json:"remindersStoragePartitions,omitempty"`
  8. }
  9. var daprConfigResponse = daprConfig{
  10. []string{defaultActorType},
  11. actorIdleTimeout,
  12. actorScanInterval,
  13. drainOngoingCallTimeout,
  14. drainRebalancedActors,
  15. 7,
  16. }
  17. func configHandler(w http.ResponseWriter, r *http.Request) {
  18. w.Header().Set("Content-Type", "application/json")
  19. w.WriteHeader(http.StatusOK)
  20. json.NewEncoder(w).Encode(daprConfigResponse)
  21. }

The following, is an example of a valid configuration for reminder partitioning:

  1. {
  2. "entities": [ "MyActorType", "AnotherActorType" ],
  3. "remindersStoragePartitions": 7
  4. }

Handling configuration changes

For production scenarios, there are some points to be considered before enabling this feature:

  • Enabling actor type metadata can only be reverted if the number of partitions remains zero, otherwise the reminders’ set will be reverted to an previous state.
  • Number of partitions can only be increased and not decreased. This allows Dapr to automatically redistribute the data on a rolling restart where one or more partition configurations might be active.

Demo

Last modified September 17, 2021 : Merge pull request #1757 from georgestevens99/1440SecretKeyRefExplanation (620a5f8)