fix(reader): chunk-load state tracking, loading-forever wedge, inspec…#42
Merged
Conversation
…tor window ping-pong; defer chunk frees off caller thread Adds GetResidentFrame (side-effect-free peek) + OnChunkLoadCancelled event; docs + changelog.
* fix: Fix buckets creation not being read from schema file, update schema validator to check buckets , update tests * fix: Harden a latent crash due to buckets initialization from buckets schema name, trying to access a bucket when the bucket list is empty
* fix: Fix buckets creation not being read from schema file, update schema validator to check buckets , update tests * fix: Harden a latent crash due to buckets initialization from buckets schema name, trying to access a bucket when the bucket list is empty * feat: resize flat arryas and maps from schema max type * feat: ensure maps and flat arrays get resize using the schema max types
* feat: First phase of hardening and recovering vtx file in case of a crash. Implement a durable_file class that syncs and flushes to hard disk, file_sink uses now the durable_file stead of a ffstream. Added checksum to each chunk to validate chunks separetly * feat : vtx crash recovery, create a .recovery file with only chunks, repairs the replay from the .recovery, it includes a test forcing a crash * feat : recovery fixes * feat : recovery replay completed
* feat: First phase of hardening and recovering vtx file in case of a crash. Implement a durable_file class that syncs and flushes to hard disk, file_sink uses now the durable_file stead of a ffstream. Added checksum to each chunk to validate chunks separetly * feat : vtx crash recovery, create a .recovery file with only chunks, repairs the replay from the .recovery, it includes a test forcing a crash * feat : recovery fixes * feat : recovery replay completed * test: crash test recovery * test: crash test recovery
* feat: First phase of hardening and recovering vtx file in case of a crash. Implement a durable_file class that syncs and flushes to hard disk, file_sink uses now the durable_file stead of a ffstream. Added checksum to each chunk to validate chunks separetly * feat : vtx crash recovery, create a .recovery file with only chunks, repairs the replay from the .recovery, it includes a test forcing a crash * feat : recovery fixes * feat : recovery replay completed * test: crash test recovery * test: crash test recovery * Feat/writer crash recovery (#39) (#40) * feat: First phase of hardening and recovering vtx file in case of a crash. Implement a durable_file class that syncs and flushes to hard disk, file_sink uses now the durable_file stead of a ffstream. Added checksum to each chunk to validate chunks separetly * feat : vtx crash recovery, create a .recovery file with only chunks, repairs the replay from the .recovery, it includes a test forcing a crash * feat : recovery fixes * feat : recovery replay completed * test: crash test recovery * test: crash test recovery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…tor window ping-pong; defer chunk frees off caller thread
Adds GetResidentFrame (side-effect-free peek) + OnChunkLoadCancelled event; docs + changelog.