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
{{ message }}
This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
Let's say I have 3 stores: Memstore, BoltDB (async) and s3 (async).
given chain.Put(ctx, key, data)
Memstore succeeds
BoltDB fails
s3 succeeds
What should we do? Should we automatically re-try storing the value into the BoltDB again? What if the DB is down for a bit? Should we have a retry queue per Store?
Or since we have LRU, should we have something like PUT down ON DELETE functionality on chain?
The text was updated successfully, but these errors were encountered:
VojtechVitek
changed the title
Chain: Underlying Store fails on PUT - what should we do?
Chain: Underlying Store fails on PUT - what to do?
Oct 20, 2015
Let's say I have 3 stores: Memstore, BoltDB (async) and s3 (async).
given
chain.Put(ctx, key, data)
What should we do? Should we automatically re-try storing the value into the BoltDB again? What if the DB is down for a bit? Should we have a retry queue per Store?
Or since we have LRU, should we have something like PUT down ON DELETE functionality on chain?
The text was updated successfully, but these errors were encountered: