lhotari commented on issue #14401: URL: https://github.com/apache/pulsar/issues/14401#issuecomment-1072303742
> Do you mean `Github Action Artifacts` ? No. I mean the GitHub Actions Cache. The cache is 5GB scoped for each fork which makes it optimal for caching build results of intermediate build steps in PR builds. > I see `http://localhost:12321` in the [script](https://github.com/lhotari/pulsar/blob/lh-refactor-pulsar-ci-with-retries/build/ci_build_functions.sh). Is it a builtin url in github action? No. It's part of [HTTP Cache Proxy action](https://github.com/marketplace/actions/http-cache-proxy), https://github.com/cirruslabs/http-cache-action. The action is run in the build job and that starts the proxy on port `12321`: https://github.com/lhotari/pulsar/blob/178eebdd97c6b9fff6b460089bdc3d8d5e4337a3/.github/workflows/pulsar-ci.yaml#L96-L97 The proxy uses the GitHub Actions Cache backend for persistence. HTTP POST (or PUT) can be used to store files and a HTTP GET can be used to retrieve a file. This is what the https://github.com/cirruslabs/http-cache-action enables. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
