aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* handle special backslash followed by quote for paths (#279)Dan Engelbrecht2025-01-222-4/+17
|
* Add multithreading directory scanning in core/filesystem (#277)Dan Engelbrecht2025-01-2216-131/+290
| | | | | | add DirectoryContent::IncludeFileSizes add DirectoryContent::IncludeAttributes add multithreaded GetDirectoryContent use multithreaded GetDirectoryContent in workspace folder scanning
* jupiter code cleanup (#276)Dan Engelbrecht2025-01-2216-1102/+1007
| | | | | | | * cleanup jupiter * move jupiter files to separate folder * CloudCache -> Jupiter * split up jupiter files * kill redundant JupiterAccessTokenProvider
* add missing statsd.enabled and gc.projectstore.duration.seconds (#275)Dan Engelbrecht2025-01-162-10/+16
| | | | | - Bugfix: Fix parsing of workspace options in Lua config - Bugfix: Add missing Lua option for option `--gc-projectstore-duration-seconds` - Bugfix: Add missing Lua mapping option to `--statsd` command line option
* export oplog to zen target url (#274)Dan Engelbrecht2025-01-163-4/+9
| | | | * fix oplog target url for oplog export to remote zenserver * verify that chunking is allowed before chunking loose files
* move basicfile.h/cpp -> zencore (#273)Dan Engelbrecht2025-01-1642-53/+54
| | | | | | move jupiter.h/cpp -> zenutil move packageformat.h/.cpp -> zenhttp zenutil now depends on zenhttp instead of the inverse
* 5.5.17v5.5.17Dan Engelbrecht2025-01-151-1/+1
|
* 5.5.17-pre2v5.5.17-pre2Dan Engelbrecht2025-01-131-1/+1
|
* Suppress progress report callback if oplog import detects zero op oplog (#271)Dan Engelbrecht2025-01-137-11/+29
| | | | * Suppress progress report callback if oplog import detects oplog with zero ops * output error code when catching system errors
* 5.5.17-pre1v5.5.17-pre1Dan Engelbrecht2024-12-191-1/+1
|
* increase limit for mmap path to 8kb (#270)Dan Engelbrecht2024-12-192-1/+2
|
* don't add overhead of verifying oplog presence on disk for "getchunks" rpc ↵Dan Engelbrecht2024-12-182-3/+6
| | | | call (#269)
* Miscellaneous minor LLM fixes (#268)v5.5.17-pre0Stefan Boberg2024-12-174-4/+9
| | | | | | | With this change, LLM tags are assigned using the name,parent tuple rather than just by name only. This allows tag hierarchies like `cache/store` and `project/store` which would previously get collapsed into the first pair seen when registering the `store` tag. This PR also adds some more LLM tag annotations to more accurately associate memory allocations with subsystems In addition, this PR also tweaks the frequency of timer marker events to increase the resolution in Insights and avoid some cases of Insights deciding that marker events are too far apart since we don't allocate as frequently as UE tends to.
* 5.5.17-pre0Dan Engelbrecht2024-12-171-1/+1
|
* batch fetch record cache values (#266)Dan Engelbrecht2024-12-174-22/+97
| | | | | | - Improvement: Batch fetch record attachments when appropriate - Improvement: Reduce memory buffer allocation in BlockStore::IterateBlock - Improvement: Tweaked BlockStore::IterateBlock logic when to use threaded work (at least 4 chunks requested) - Bugfix: CasContainerStrategy::IterateChunks could give wrong payload/index when requesting 1 or 2 chunks
* remove all referenced attachments in op from pending chunk references (#267)Dan Engelbrecht2024-12-171-5/+7
|
* more memory tagging and fixes (#263)Stefan Boberg2024-12-169-8/+272
| | | This change adds more instrumentation for memory tracking, so that as little as possible comes through as Unknown in Insights analysis.
* 5.5.16v5.5.16Dan Engelbrecht2024-12-131-1/+1
|
* 5.5.16-pre4v5.5.16-pre4Dan Engelbrecht2024-12-131-1/+1
|
* fix trailing path separator in workspace commands (#265)Dan Engelbrecht2024-12-132-0/+16
|
* 5.5.16-pre3v5.5.16-pre3Dan Engelbrecht2024-12-131-1/+1
|
* change log update for oplog key fix which was accidentally committed to main ↵Stefan Boberg2024-12-131-0/+1
| | | | directly
* Implemented temporary workaround for long paths in ComputeOpKeyStefan Boberg2024-12-131-3/+72
| | | | also added a test case to exercise the logic
* added test verification of XXH3_128Stream vs XXH3_128::HashMemoryStefan Boberg2024-12-131-0/+2
|
* fixed XXH3_128Stream so it initializes the state properlyStefan Boberg2024-12-134-5/+42
| | | | the old version is still present for now, with a _deprecated suffix
* added ComputeOpKey so all instances of mapping key -> Oid is in a single placeStefan Boberg2024-12-132-24/+33
|
* added xxhash unit tests (which currently fail)Stefan Boberg2024-12-132-0/+46
|
* changelogDan Engelbrecht2024-12-131-2/+3
|
* 5.5.16-pre2v5.5.16-pre2Dan Engelbrecht2024-12-131-1/+1
|
* Dashboard: view -> list rename, table style fix, file name appended to ↵Martin Ridgers2024-12-126-5/+12
| | | | | | | | | | | | | | | downloads (#264) * Single-column tables could overflow their maximum width * Suffix oplog entry data's file name when downloading * Renamed "view" link to "list" * Ensure all undesirable characters are removed from page name * Updated embedded frontend Zip archive * Wrote some entries into the changelog
* 5.5.16-pre1v5.5.16-pre1Dan Engelbrecht2024-12-121-1/+1
|
* Builds API remote project store (#258)Dan Engelbrecht2024-12-1214-310/+1488
| | | Feature: zen command oplog-export and oplog-import now supports --builds remote target using the Jupiter builds API
* Memory tracking improvements (#262)Stefan Boberg2024-12-114-1/+21
| | | | | * added LLM tag to properly tag RPC allocations * annotated some more httpsys functions with memory tags * only emit memory scope events if the active tag is different from the new tag
* reduce oplog job name (#261)Dan Engelbrecht2024-12-112-2/+3
| | | * reduce length of oplog import/export job name
* improved payload validation in HttpClient (#259)Dan Engelbrecht2024-12-102-1259/+1510
| | | | | * improved payload validation in HttpClient * separate error messages for FromCompressed and Decompress * refactor so we can do retry if decompression of block fails
* auth fixes (#260)Dan Engelbrecht2024-12-104-32/+45
| | | | * fix so we can replace an openid provider that was read from disk file * fix OidcClient lifetime issues in authmg
* 5.5.16-pre0v5.5.16-pre0Dan Engelbrecht2024-12-051-1/+1
|
* global open process cache for projectstore (#257)Dan Engelbrecht2024-12-056-31/+64
| | | | * move openprocess cache to central location * enable openprocesscache in projectstore so "getchunks" can send filehandles when requested
* projectstore getchunks rpc with modtag (#244)Dan Engelbrecht2024-12-0512-233/+1908
| | | Feature: Project store "getchunks" rpc call /prj/{project}/oplog/{log}/rpc extended to accept both CAS (RawHash) and Id (Oid) identifiers as well as partial ranges
* Unity build fixes (#253)Stefan Boberg2024-12-058-173/+80
| | | some fixes to make everything build using unity build mode. Mostly moved code from anonymous namespaces into local impl namespace to avoid ambiguity in name resolution.
* enable LTO / optimize for speed (#256)Stefan Boberg2024-12-042-1/+7
| | | | | * changed so release build uses lto and optimizes for speed on Mac and Windows * Linux does not currently support LTO due to toolchain limitations
* changelogDan Engelbrecht2024-12-031-1/+3
|
* don't force openssl to version 3.0.8 (#252)Stefan Boberg2024-12-031-3/+1
| | | should fix build issues caused by curl pulling in a different version
* ODR fixStefan Boberg2024-12-031-3/+3
|
* ODR violation fixStefan Boberg2024-12-031-2/+2
|
* 5.5.15v5.5.15Dan Engelbrecht2024-12-021-1/+1
|
* reduce memory churn (#248)Stefan Boberg2024-12-025-11/+23
| | | | | * eliminated allocation in SetCurrentThreadName * reduced memory allocator activity in cache RPC response building * reduced allocations in compact binary building
* validate that root path exists for workspace before adding it (#250)Dan Engelbrecht2024-12-022-0/+6
|
* 5.5.15-pre1v5.5.15-pre1Dan Engelbrecht2024-12-021-1/+1
|
* fix time regression on CI - iteratechunks block size (#249)Dan Engelbrecht2024-12-023-12/+14
| | | | * don't allow compact in time critical oplog calls * bump small chunk size limit when doing iteratechunks