| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | | Add /vsxmake* to .gitignore | Stefan Boberg | 2021-11-03 | 2 | -3/+36 | |
| | | | | ||||||
| * | | | projectstore: added validation of oplog data during initialization | Stefan Boberg | 2021-11-01 | 1 | -4/+21 | |
| | | | | | | | | | | | | | also added validation during writing | |||||
| * | | | Merged from main | Stefan Boberg | 2021-10-29 | 4 | -16/+70 | |
| |\ \ \ | | |/ | |/| | ||||||
| | * | | Minor cleanup | Stefan Boberg | 2021-10-29 | 1 | -37/+2 | |
| | | | | ||||||
| | * | | z$: hooked up bucket traversal for gc | Stefan Boberg | 2021-10-29 | 2 | -14/+121 | |
| | | | | | | | | | | | | | | | | added some tests added "test" mode for zenserver, to run any tests embedded in the zenserver (example: `zenserver test -tx=z$.*`) | |||||
| | * | | Removed unused source files | Stefan Boberg | 2021-10-29 | 2 | -14/+0 | |
| | |/ | ||||||
| * | | general: Fixed up some vcxproj files which had a warning level set | Stefan Boberg | 2021-10-24 | 1 | -3/+2 | |
| | | | | | | | | | | | | | Thus they did not get the same settings as all other projects which made it easy to introduce warnings which would trigger in xmake builds Cleaned up some #include usage to use third-party include brackets | |||||
| * | | clang-format | Stefan Boberg | 2021-10-23 | 1 | -2/+2 | |
| | | | ||||||
| * | | z$: Removed CasStore | Stefan Boberg | 2021-10-21 | 2 | -13/+2 | |
| | | | ||||||
| * | | gc: Added GcStorage base class and hooked it up to CasGc | Stefan Boberg | 2021-10-21 | 2 | -13/+13 | |
| | | | ||||||
| * | | gc: Made ref tracking optional on `ZEN_USE_REF_TRACKING` | Stefan Boberg | 2021-10-19 | 1 | -1/+1 | |
| | | | | | | | | | Ref tracking is not fully functional anyway | |||||
| * | | cas: Hooked up GC to structured cache | Stefan Boberg | 2021-10-19 | 2 | -27/+51 | |
| | | | ||||||
| * | | gc: moved GcContect from CAS into gc files | Stefan Boberg | 2021-10-18 | 1 | -1/+7 | |
| |/ | ||||||
| * | structured cache: Implemented GarbageCollect() for disk and memory buckets | Stefan Boberg | 2021-10-16 | 1 | -26/+87 | |
| | | ||||||
| * | structured cache: fixed mistake in back-off logic | Stefan Boberg | 2021-10-15 | 1 | -9/+14 | |
| | | | | | this bug would make PUTs to clean zen instances very slow | |||||
| * | clang-format | Stefan Boberg | 2021-10-15 | 1 | -1/+1 | |
| | | ||||||
| * | 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 | |||||
| * | Ratios should not be percentages (this should be done in presentation) | Stefan Boberg | 2021-10-11 | 1 | -2/+2 | |
| | | ||||||
| * | stats: Added support for handler unregistration | Stefan Boberg | 2021-10-11 | 1 | -2/+6 | |
| | | ||||||
| * | 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 | |||||
| * | Support for asynchronous HTTP response processing (#19) | Stefan Boberg | 2021-10-06 | 2 | -120/+120 | |
| | | | | | | | | | This change introduces WriteResponseAsync which can be used to move potentially slow request handler code (like upstream lookups) off the I/O service thread to ensure we are always able to serve as many HTTP requests as possible. The current implementation defaults to 16 async worker threads and there is currently no back-pressure. - Added RequestStats - Metrics for network requests. Aggregates tracking of duration, payload sizes into a single class for ease of use - Added some metrics on upstream communication Co-authored-by: Per Larsson <[email protected]> | |||||
| * | Merged from upstream | Stefan Boberg | 2021-10-05 | 4 | -71/+201 | |
| | | ||||||
| * | http: Moved logic for body suppression to a more central location | Stefan Boberg | 2021-10-03 | 1 | -8/+0 | |
| | | | | | this should prevent some mistake-induced bugs hopefully | |||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-10-03 | 1 | -4/+27 | |
| |\ | ||||||
| | * | Merged from upstream | Stefan Boberg | 2021-10-03 | 1 | -3/+24 | |
| | |\ | ||||||
| | | * | Added support for SkipData cache policy. | Per Larsson | 2021-10-03 | 1 | -3/+24 | |
| | | | | ||||||
| | * | | structurec cache: Added ad hoc special case for /z$/stats.json request | Stefan Boberg | 2021-10-03 | 1 | -1/+3 | |
| | |/ | ||||||
| * / | structured cache: Added some more stats (hits/misses/upstream_hits) | Stefan Boberg | 2021-10-02 | 1 | -0/+2 | |
| |/ | ||||||
| * | cas: added some GC stubs | Stefan Boberg | 2021-10-01 | 2 | -33/+25 | |
| | | ||||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-10-01 | 2 | -0/+35 | |
| |\ | ||||||
| | * | Added cache HIT/MISS stat counters. | Per Larsson | 2021-10-01 | 2 | -0/+35 | |
| | | | ||||||
| * | | structured cache: Fixed package payload endpoint handling of HEAD | Stefan Boberg | 2021-10-01 | 1 | -1/+1 | |
| |/ | ||||||
| * | Improved error handling for upstream endpoints. | Per Larsson | 2021-10-01 | 1 | -1/+1 | |
| | | ||||||
| * | Added upstream cache perf metrics. | Per Larsson | 2021-10-01 | 1 | -0/+6 | |
| | | ||||||
| * | structured cache: fixed how HEAD requests are handled | Stefan Boberg | 2021-09-30 | 1 | -1/+1 | |
| | | | | | | | the SetSuppressResponseBody() is currently sensitive to ordering and would end up getting called too late to apply fixes UE-129788, UE-129793 | |||||
| * | structured cache: Rewrote metrics tracking using OperationTiming | Stefan Boberg | 2021-09-30 | 2 | -9/+3 | |
| | | ||||||
| * | structured cache: added request meter and stats reporting | Stefan Boberg | 2021-09-30 | 2 | -1/+7 | |
| | | ||||||
| * | structured cache: Added stats test code (needs additional work / metrics) | Stefan Boberg | 2021-09-30 | 2 | -0/+23 | |
| | | ||||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-28 | 1 | -30/+50 | |
| |\ | ||||||
| | * | Removed using the bucket name to detect binary cache records and store ↵ | Per Larsson | 2021-09-28 | 1 | -30/+50 | |
| | | | | | | | | | content type in cache. | |||||
| * | | Removed MemoryOutStream, MemoryInStream | Stefan Boberg | 2021-09-28 | 1 | -6/+4 | |
| |/ | | | | | | | | BinaryWriter/BinaryReader now implements memory buffer functionality which previously needed two chained instances of a Buffer/Reader. This was originally expected to be an abstraction for file and other stream access but this is not going to be useful so may as well collapse the functionality. This also eliminates the need for stack-aware ref-counting which is the real reason for wanting to get rid of this code. This was a very old experimental feature which turned out to be a bad idea. This also removes the /cas/batch endpoint | |||||
| * | Removed unused KV cache related code | Stefan Boberg | 2021-09-26 | 2 | -336/+0 | |
| | | ||||||
| * | 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 | 2 | -49/+153 | |
| | | | | | 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 | |||||
| * | Fixed unused variable warning | Stefan Boberg | 2021-09-22 | 1 | -1/+0 | |
| | | ||||||
| * | Refactored get/set cache pyload. | Per Larsson | 2021-09-21 | 2 | -98/+87 | |
| | | ||||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Per Larsson | 2021-09-21 | 4 | -1/+19 | |
| |\ | ||||||
| | * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-21 | 1 | -1/+1 | |
| | |\ | ||||||
| | * | | Wired up scrubbing to more higher level services | Stefan Boberg | 2021-09-21 | 4 | -1/+19 | |
| | | | | | | | | | | | | | Also moved sharding logic for filecas into a function to redduce cut/pasta | |||||
| * | | | Refactored out get/set cache record. | Per Larsson | 2021-09-21 | 2 | -348/+300 | |
| | |/ |/| | ||||||