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
Currently, notifications are triggered after successful data transformations. This can lead to race conditions if a client waits for notification and instantly pulls the data. Instead, notifications should be triggered after successful data storage.
This entails two tasks:
The storage-mq service needs to publish events to storagemq after data persistence.
The notification service needs to listen for these events instead of transformation events (change the rabbitmq subscription)
The text was updated successfully, but these errors were encountered:
Currently, notifications are triggered after successful data transformations. This can lead to race conditions if a client waits for notification and instantly pulls the data. Instead, notifications should be triggered after successful data storage.
This entails two tasks:
The text was updated successfully, but these errors were encountered: