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
The recently-added check to ensure that we don't recreate a transaction that is old enough to be GC'd uses the wrong transaction (txn is used to read the existing txn record from disk, and here it is definitely empty because we handled existing txns in the preceding switch statement. Because it is empty, its timestamps are zero, always less than the GC cutoff. It should be looking at the request transaction, or the copy cloned into reply.Txn instead).
This means that after a transaction GC has occurred, no more transactions can be executed on this range. This is the cause of the current lack of progress with the photos app, and suggests a significant gap in our test coverage.
@cockroachdb/stability
The text was updated successfully, but these errors were encountered:
bdarnell
added
the
S-1-stability
Severe stability issues that can be fixed by upgrading, but usually don’t resolve by restarting
label
Sep 24, 2016
The recently-added check to ensure that we don't recreate a transaction that is old enough to be GC'd uses the wrong transaction (
txn
is used to read the existing txn record from disk, and here it is definitely empty because we handled existing txns in the preceding switch statement. Because it is empty, its timestamps are zero, always less than the GC cutoff. It should be looking at the request transaction, or the copy cloned into reply.Txn instead).This means that after a transaction GC has occurred, no more transactions can be executed on this range. This is the cause of the current lack of progress with the
photos
app, and suggests a significant gap in our test coverage.@cockroachdb/stability
The text was updated successfully, but these errors were encountered: