You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Forwards and pipes do not have an upper thread limit other than the request timeout.
371
372
373
+
### State Management
374
+
375
+
The Spawn runtime handles the internal state of your actors. It is he who maintains its state based on the types of actors and configurations that you, the developer, have made.
376
+
The persistence of the state of the actors happens through snapshots that follow the Write Behind pattern during the period in which the Actor is active and Write Ahead during the moment of the Actor's deactivation. That is, data is saved at regular intervals asynchronously while the Actor is active and once synchronously when the Actor suffers a deactivation, when it is turned off.
377
+
These snapshots happen from time to time. And this time is configurable through the snapshot_timetou property of the ActorSettings class. However, you can tell the Spawn runtime that you want it to persist the data immediately synchronously after executing an Action. And this can be done in the following way:
378
+
379
+
Example:
380
+
381
+
```python
382
+
from domain.domain_pb2 import State, Request, Reply
383
+
384
+
from spawn.eigr.functions.actors.api.actor import Actor
385
+
from spawn.eigr.functions.actors.api.settings import ActorSettings
386
+
from spawn.eigr.functions.actors.api.context import Context
387
+
from spawn.eigr.functions.actors.api.value import Value
388
+
from spawn.eigr.functions.actors.api.workflows.pipe import Pipe
389
+
390
+
actor = Actor(settings=ActorSettings(name="joe", stateful=True, snapshot_timeout=2000))
The most important thing in this example is the use of the parameter checkpoint=True:
410
+
411
+
```python
412
+
.reply(checkpoint=True)
413
+
```
414
+
415
+
It is this parameter that will indicate to the Spawn runtime that you want the data to be saved immediately after this Action is called back.
416
+
In most cases this strategy is completely unnecessary, as the default strategy is sufficient for most use cases. But Spawn democratically lets you choose when you want your data persisted.
417
+
418
+
In addition to this functionality regarding state management, Spawn also allows you to perform some more operations on your Actors such as restoring the actor's state to a specific point in time:
419
+
420
+
Restore Example:
421
+
422
+
TODO
423
+
372
424
## Using Actors
373
425
374
426
There are several ways to interact with our actors, some internal to the application code and others external to the application code. In this section we will deal with the internal ways of interacting with our actors and this will be done through direct calls to them. For more details on the external ways to interact with your actors see the [Activators](#activators) section.
0 commit comments