-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI][Java] java-nightly cache has 8.6 GB #37971
Comments
@davisusanibar @assignUser @raulcd Can we just remove the java-nightly cache? diff --git a/.github/workflows/java_nightly.yml b/.github/workflows/java_nightly.yml
index 4440d36d1..41843d663 100644
--- a/.github/workflows/java_nightly.yml
+++ b/.github/workflows/java_nightly.yml
@@ -73,12 +73,6 @@ jobs:
fi
echo $PREFIX
archery crossbow download-artifacts -f java-jars -t binaries $PREFIX
- - name: Cache Repo
- uses: actions/cache@v3
- with:
- path: repo
- key: java-nightly-${{ github.run_id }}
- restore-keys: java-nightly
- name: Sync from Remote
uses: ./arrow/.github/actions/sync-nightlies
with: |
Huh, looks like they are enforcing that limit now... for a long time we had around 60G of caches ^^ well we will have to download the full repo from nightlies.apache.org everytime... maybe we can find a better way to remove the old artifacts? |
It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon.
How about removing the We can improve our uploading/pruning nightlies algorithm as the next step (with a separated issue).
|
### Rationale for this change It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon. ### What changes are included in this PR? Remove actions/cache. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: #37971 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…#37980) ### Rationale for this change It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon. ### What changes are included in this PR? Remove actions/cache. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#37971 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…#37980) ### Rationale for this change It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon. ### What changes are included in this PR? Remove actions/cache. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#37971 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…#37980) ### Rationale for this change It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon. ### What changes are included in this PR? Remove actions/cache. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#37971 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…#37980) ### Rationale for this change It's too large (8.6 GB) and it's always re-created because it uses github.run_id for key. It expires other caches soon. ### What changes are included in this PR? Remove actions/cache. ### Are these changes tested? No. ### Are there any user-facing changes? No. * Closes: apache#37971 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Describe the enhancement requested
https://github.com/apache/arrow/actions/caches
We can use 10 GB in apache/arrow for cache. If the java-nightly cache uses 8.6 GB, other caches will be expired soon.
The java-nightly cache was introduced by GH-13839.
Component(s)
Continuous Integration, Java
The text was updated successfully, but these errors were encountered: