aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* reduced WaitForThreads time to see how it behaves with explicit thread poolssb/threadpoolStefan Boberg2026-02-231-1/+1
|
* added logging of zenserver child process startup/shutdown timingsStefan Boberg2026-02-232-2/+11
|
* Merge remote-tracking branch 'origin/main' into sb/threadpoolStefan Boberg2026-02-231-3/+5
|\
| * disable msys logic in blake3 to fix Git Bash build issuesStefan Boberg2026-02-221-3/+5
| |
* | add <type_traits>Stefan Boberg2026-02-231-0/+2
| |
* | implemented dynamic scaling support for WorkerThreadPoolStefan Boberg2026-02-233-22/+136
| |
* | add friends to fix build issueStefan Boberg2026-02-201-0/+3
| |
* | made http.sys async worker thread pool configurable via the same option as ↵Stefan Boberg2026-02-203-29/+47
| | | | | | | | | | | | the main I/O pool this is also to gain control over threads to improve shutdown behaviour
* | added new I/O thread pool implementationStefan Boberg2026-02-207-28/+373
|/ | | | | | the new variant manages a dynamically growing/shrinking set of threads manually instead of relying on the built-in Windows thread pool the benefit of this is that we're in charge of setup and teardown so can make better guarantees about lifetimes of threads which can help with shutdown issues
* update .gitignore to exclude .claude/Stefan Boberg2026-02-201-0/+1
|
* move partial chunk block anailsys to chunkblock.h/cpp (#767)Dan Engelbrecht2026-02-204-679/+887
|
* fix builds download indexing timer (#769)Dan Engelbrecht2026-02-203-7/+8
| | | * fix build download indexing timer log
* fix plain progress bar (#768)Dan Engelbrecht2026-02-202-0/+4
| | | * fix plain progress not updating current state
* initial CLAUDE.md (#764)Stefan Boberg2026-02-201-0/+271
|
* fix MakeSafeAbsolutePathInPlace mis-spelling (#765)Stefan Boberg2026-02-208-49/+49
| | | | | (was MakeSafeAbsolutePathÍnPlace - note accent) Also fixed misleading comments on multiple functions in filesystem.h
* GC - fix handling of attachment ranges, http access token expiration, lock ↵Stefan Boberg2026-02-207-12/+18
| | | | | | | | file retry logic (#766) * GC - fix handling of attachment ranges * fix trace/log strings * fix HTTP access token expiration time logic * added missing lock retry in zenserver startup
* 5.7.21v5.7.21Dan Engelbrecht2026-02-191-1/+1
|
* 5.7.21-pre0v5.7.21-pre0Dan Engelbrecht2026-02-191-1/+1
|
* Merge pull request #761 from ue-foundation/zs/web-ui-improvementsZousar Shaker2026-02-188-32/+752
|\ | | | | Zs/web UI improvements
| * Merge branch 'main' into zs/web-ui-improvementszousar2026-02-1854-100/+8019
| |\ | |/ |/|
* | structured compute basics (#714)Stefan Boberg2026-02-1848-48/+7804
| | | | | | | | | | | | | | | | | | this change adds the `zencompute` component, which can be used to distribute work dispatched from UE using the DDB (Derived Data Build) APIs via zenserver this change also adds a distinct zenserver compute mode (`zenserver compute`) which is intended to be used for leaf compute nodes to exercise the compute functionality without directly involving UE, a `zen exec` subcommand is also added, which can be used to feed replays through the system all new functionality is considered *experimental* and disabled by default at this time, behind the `zencompute` option in xmake config
* | add selective request logging support to http.sys (#762)Stefan Boberg2026-02-183-39/+156
| | | | | | | | | | * implemented selective request logging for http.sys for consistency with asio * fixed traversal of GetLogicalProcessorInformationEx to account for variable-sized records * also adds CPU usage metrics
* | convert ZEN_ASSERTs to exception to handle corrupt data gracefully (#760)Dan Engelbrecht2026-02-183-13/+59
| | | | | | * convert ZEN_ASSERTs to exception to handle corrupt data gracefully
| * updatefrontendzousar2026-02-181-0/+0
| |
| * entry.js handles missing/native items more gracefullyzousar2026-02-182-4/+32
| |
| * updatefrontendzousar2026-02-171-0/+0
| |
| * Changelogzousar2026-02-171-0/+3
| |
| * Merge branch 'main' into zs/web-ui-improvementszousar2026-02-1726-197/+507
| |\ | |/ |/|
* | add http server root password protection (#757)Dan Engelbrecht2026-02-1720-166/+444
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Feature: Added `--security-config-path` option to zenserver to configure security settings - Expects a path to a .json file - Default is an empty path resulting in no extra security settings and legacy behavior - Current support is a top level filter of incoming http requests restricted to the `password` type - `password` type will check the `Authorization` header and match it to the selected authorization strategy - Currently the security settings is very basic and configured to a fixed username+password at startup { "http" { "root": { "filter": { "type": "password", "config": { "password": { "username": "<username>", "password": "<password>" }, "protect-machine-local-requests": false, "unprotected-uris": [ "/health/", "/health/info", "/health/version" ] } } } } }
* | misc fixes brought over from sb/proto (#759)Stefan Boberg2026-02-177-31/+49
| | | | | | | | | | | | | | | | * `RwLock::WithSharedLock` and `RwLock::WithExclusiveLock` can now return a value (which is returned by the passed function) * Comma-separated logger specification now correctly deals with commas * `GetSystemMetrics` properly accounts for cores * cpr response formatter passes arguments in the right order * `HttpServerRequest::SetLogRequest` can be used to selectively log HTTP requests
* | added ResetConsoleLog (#758)Stefan Boberg2026-02-163-0/+14
| | | | | | also made sure log initialization calls it to ensure the console output format is retained even if the console logger was set up before logging is initialized
| * Dependencies table doesn't reflow the entries pagezousar2026-02-171-5/+19
| |
| * Rename the cache section in the web uizousar2026-02-171-1/+1
| |
| * Make files table in entry.js paginated and searchablezousar2026-02-171-40/+170
| |
| * Added custom page for cook.artifactszousar2026-02-164-4/+428
| |
| * Change breadcrumbs for oplogs to be more descriptivezousar2026-02-152-6/+12
| |
| * Add support for listing files on oplog entrieszousar2026-02-151-9/+110
| |
| * Restore handling for hard/soft name prefixeszousar2026-02-151-4/+16
| |
| * Enhance dependencies to include soft and hard depszousar2026-02-141-11/+13
|/
* add foundation for http password protection (#756)Dan Engelbrecht2026-02-133-0/+275
|
* spelling fixes (#755)Dan Engelbrecht2026-02-131-2/+2
|
* logging config move to zenutil (#754)Stefan Boberg2026-02-1318-99/+188
| | | made logging config options from zenserver available in zen CLI
* add IHttpRequestFilter to allow server implementation to filter/reject ↵Dan Engelbrecht2026-02-1310-96/+353
| | | | | requests (#753) * add IHttpRequestFilter to allow server implementation to filter/reject requests
* bump sentry to 0.12.1 (#721)Stefan Boberg2026-02-123-6/+9
|
* add IsLocalMachineRequest to HttpServerRequest (#749)Dan Engelbrecht2026-02-126-7/+78
| | | * add IsLocalMachineRequest to HttpServerRequest
* add simple http client tests (#751)Dan Engelbrecht2026-02-128-27/+202
| | | * add simple http client tests and fix run loop of http server to not rely on application quit
* reduce lock time for project store gc precache and gc validate (#750)Dan Engelbrecht2026-02-113-46/+264
| | | | | * add oplog snapshot function to allow reduction of held oplog locks * release project lock when precaching each oplog
* 5.7.20v5.7.20Dan Engelbrecht2026-02-101-1/+1
|
* 5.7.20-pre3v5.7.20-pre3Dan Engelbrecht2026-02-091-1/+1
|
* Fix formatting of stat pages (#748)Liam Mitchell2026-02-095-3/+11
| | | * Fix formatting of stat pages