Interest in failable transactions? #127
Closed
jamesmunns
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
For your logs, which are surely conflict free and probably insert-only, you could escape the transactional context when writing into the partition of your logs. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Would it be possible to have something like
try_read_tx
ortry_write_tx
? I use fjall for storing data fromtracing
, and every now and then I forget and put atracing
statement somewhere when I have a transaction open, which means that the system will deadlock when the tracing subscriber goes to write in the db.It would be nice to have a way to say "if you are blocked, bail", for cases where it isn't urgent to store things.
Beta Was this translation helpful? Give feedback.
All reactions