codeant-ai-for-open-source[bot] commented on PR #38645:
URL: https://github.com/apache/superset/pull/38645#issuecomment-4059948688
## **Sequence Diagram**
This PR changes the frontend CI image artifact format from gzip to zstd to
speed up save and load steps. The build job now uploads a zstd-compressed
Docker image, and each downstream frontend job downloads, decompresses, loads,
and reuses it for checks.
```mermaid
sequenceDiagram
participant BuildJob
participant Docker
participant ArtifactStore
participant FrontendJob
BuildJob->>Docker: Build superset node ci image
BuildJob->>Docker: Save image and compress with zstd
BuildJob->>ArtifactStore: Upload compressed image artifact
loop Each frontend check job
FrontendJob->>ArtifactStore: Download compressed image artifact
FrontendJob->>Docker: Decompress and load image
FrontendJob->>Docker: Run frontend checks in container
end
```
---
*Generated by [CodeAnt AI](https://codeant.ai)*
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]