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
Horizontal scaling support. Often times the container will be executed with multiple replicas in the cluster. A replica should not interfere with other replica’s operation. This can be achieved by using database locks on records that are being processed, and supporting redundant event processing across replicas. It’s also best to lock records (e.g. SELECT FOR UPDATE) when a replica is processing them (e.g. polling).
The text was updated successfully, but these errors were encountered:
Horizontal scaling support. Often times the container will be executed with multiple replicas in the cluster. A replica should not interfere with other replica’s operation. This can be achieved by using database locks on records that are being processed, and supporting redundant event processing across replicas. It’s also best to lock records (e.g.
SELECT FOR UPDATE
) when a replica is processing them (e.g. polling).The text was updated successfully, but these errors were encountered: