Mostyn Bramley-Moore
Mostyn Bramley-Moore
I noticed that https://github.com/toolchainlabs/remote-api-tools has a cas load testing tool, which might help to reproduce this issue.
Hmm, I'll have to think this through a bit since it might be a confusing change for users who currently assume that the log times are shown in UTC. Would...
Sorry it has taken me a while to get back to you. I think this is a reasonable feature request, but I think we need to make this a configuration...
Are you using bazel 5.0's new `--experimental_remote_cache_compression` flag? If so, I would recommend upgrading bazel-remote to v2.3.4 and trying a bazel version with this fix: https://github.com/bazelbuild/bazel/commit/8ebd70b0c97c8bd584647f219be8dd52217cb5cf
bazel-remote should use less memory if it's using zstd compressed storage and the clients are downloading zstd-compressed data (bazel-remote can just write compressed data from disk instead of compressing it...
There are some notes on the GODEBUG environment variable here, it's a comma separated list of settings: https://pkg.go.dev/runtime?utm_source=godoc#hdr-Environment_Variables One of the settings is `madvdontneed=0` to use `MADV_FREE` (the old setting)...
[v2.3.9](https://github.com/buchgr/bazel-remote/releases/tag/v2.3.9) has a new `--zstd_implementation cgo` mode, which might reduce memory usage. Please let me know if it helps.
> fwiw, fronting bazel-remote with a dedicated proxy service in the style of https://github.com/oauth2-proxy/oauth2-proxy will be more flexible and doesn't require this project to implement auth for all those auth...
Hi, bazel-remote doesn't use ~/.aws/ configuration files - you would need to create a bazel remote config file and specify the account details there. There's a commented example in the...
I think there are details on how to do this over here: https://github.com/buchgr/bazel-remote/pull/493#issuecomment-984803190