| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | structuredcache: add code to handle conflict which can occur when multiple ↵ | Stefan Boberg | 2021-10-13 | 1 | -8/+27 | |
| | | | | | PUTs of the same value occur close enough to cause issues due to file system races | |||||
| * | structured cache: Added locking around large cache value updates to prevent ↵ | Stefan Boberg | 2021-10-06 | 1 | -13/+37 | |
| | | | | | races leading to file sharing violations | |||||
| * | Merged from upstream | Stefan Boberg | 2021-10-05 | 1 | -53/+141 | |
| | | ||||||
| * | cas: added some GC stubs | Stefan Boberg | 2021-10-01 | 1 | -19/+22 | |
| | | ||||||
| * | Eliminated use of ATL in StructuredCacheStore implementation | Stefan Boberg | 2021-09-26 | 1 | -41/+39 | |
| | | ||||||
| * | Added scrubbing logic to ZenCacheDiskLayer/ZenCacheMemoryLayer | Stefan Boberg | 2021-09-23 | 1 | -49/+152 | |
| | | | | | This currently only goes through the motions of hashing the data to verify it, but does not perform recovery nor does it validate referential integrity | |||||
| * | Wired up scrubbing to more higher level services | Stefan Boberg | 2021-09-21 | 1 | -0/+7 | |
| | | | | | Also moved sharding logic for filecas into a function to redduce cut/pasta | |||||
| * | Added more scrub stubs in higher level services | Stefan Boberg | 2021-09-20 | 1 | -4/+32 | |
| | | ||||||
| * | Moved more code into zen namespace, for consistency | Stefan Boberg | 2021-09-20 | 1 | -45/+48 | |
| | | | | | Also removed snapshot_manifest (remnants of vfs prototype) | |||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -3/+3 | |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | |||||
| * | Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it ↵ | Stefan Boberg | 2021-09-15 | 1 | -1/+1 | |
| | | | | | easier to tweak implementation | |||||
| * | Fixed a race in bucket open/create logic | Stefan Boberg | 2021-08-31 | 1 | -10/+24 | |
| | | | | | If two requests were sufficiently close, they could end up trying to initialize buckets twice which is not a good idea | |||||
| * | Asynchronous upstream caching to Jupiter | Per Larsson | 2021-08-31 | 1 | -0/+1 | |
| | | | | | Co-authored-by: Stefan Boberg <[email protected]> | |||||
| * | clang-format fix | Stefan Boberg | 2021-08-24 | 1 | -2/+2 | |
| | | ||||||
| * | Fixed up drop logic (short circuiting fail!) | Stefan Boberg | 2021-08-24 | 1 | -3/+5 | |
| | | ||||||
| * | Improved ZenCacheStore::DropBucket logic and added logging | Stefan Boberg | 2021-08-23 | 1 | -4/+8 | |
| | | ||||||
| * | clang-format | Stefan Boberg | 2021-08-20 | 1 | -1/+1 | |
| | | ||||||
| * | Implemented support for dropping z$ buckets while online | Stefan Boberg | 2021-08-17 | 1 | -0/+67 | |
| | | ||||||
| * | Implemented flush operations for cache services | Stefan Boberg | 2021-08-12 | 1 | -0/+6 | |
| | | | | | Also implemented basic upstream query interface, which needs a bit more work to be fully functional (chunk propagation / fetching and new propagation policies as per DDC requirements) | |||||
| * | Bumped large object threshold to 64k, improved disk bucket replay mutex logic | Stefan Boberg | 2021-05-25 | 1 | -8/+6 | |
| | | ||||||
| * | Fixed index flags for standalone files | Stefan Boberg | 2021-05-24 | 1 | -3/+15 | |
| | | ||||||
| * | Eliminated sidx file since it's no longer necessary | Stefan Boberg | 2021-05-24 | 1 | -4/+0 | |
| | | ||||||
| * | Z$ now tracks content type for large objects as well as small. Large objects ↵ | Stefan Boberg | 2021-05-24 | 1 | -34/+92 | |
| | | | | | are tracked in index | |||||
| * | Implemented new URI addressing scheme for the Zen cache endpoints, and ↵ | Stefan Boberg | 2021-05-23 | 1 | -12/+4 | |
| | | | | | prepared for additional indexing capabilities | |||||
| * | Changed to tsl::robin_map | Stefan Boberg | 2021-05-23 | 1 | -9/+23 | |
| | | | | | Also added initial logic around attachment indexing (tactical check-in to continue on other computer) | |||||
| * | Tidied up some code | Stefan Boberg | 2021-05-22 | 1 | -10/+9 | |
| | | ||||||
| * | Split out structured cache store code into dedicated cpp/h pair | Stefan Boberg | 2021-05-22 | 1 | -0/+554 | |