Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions core/framework/runtime/shared_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,3 +497,9 @@ def read_all_sync(self) -> dict[str, Any]:
result = {k: v for k, v in result.items() if k in self._allowed_read}

return result


# TODO(fix/atomic-write-batch): write_batch() under SYNCHRONIZED isolation should acquire
# all per-key locks atomically (sorted to prevent deadlock) before writing any values.
# See: https://github.com/aden-hive/hive/issues/5946
# A _write_batch_atomic() method should be added in a follow-up PR.
Loading