Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improving gradle-home-cache-cleanup detection of unused files #46

Open
rolgalan opened this issue Feb 16, 2024 · 2 comments
Open

Improving gradle-home-cache-cleanup detection of unused files #46

rolgalan opened this issue Feb 16, 2024 · 2 comments
Labels
bug Something isn't working in:caching Issue with caching of Gradle User Home in:gradle A bug that needs to be fixed in Gradle

Comments

@rolgalan
Copy link

Hi! 馃憢

Our Gradle home cache is getting so big in our project that is taking long times loading and storing the cache, so we enabled the gradle-home-cache-cleanup flag to remove unused files from Gradle User Home before saving to the cache.

After enabling this flag, the home cache entry dropped from 3.6 GB to 2.3 GB. While this is an improvement, we expected more. If we remove all the caches in Github actions and we start a fresh new runner without any cache, it only generates 457 MB. Therefore it is still keeping 80% of data that was actually not used in the last build. Please note that I only refer to the Gradle User Home entry.

After doing some debugging in a sample project (by enabling logging and exploring the sectionGradle User Home (directories >5M): after extracting common artifacts) I observed that it keeps multiple transforms-x folders, which represent a big part of the contents stored in the home cache. In theory a certain version of Gradle should use a consistent X value for that folder, so most likely the cleanup is not properly removing these unused folders left behind after a Gradle bump.

This is an Android project, mostly Kotlin code. The cache was never cleaned up in the last 4 months. It started with Gradle 8.4, later we migrated to 8.5 and last week to 8.6.

I also observed the home increasing significantly when bumping some dependencies (please note that I do not refer to the dependencies entry, which is stored separately, but still talking about the home), but I didn't research this thoroughly. Most likely this could be the next step to explore after figuring out why the transforms folder is still there.

You can check the thread in the slack community for a few other details.

Thanks!

@bigdaz
Copy link
Member

bigdaz commented Feb 22, 2024

Thanks for the report @rolgalan . I've done some investigation, and it seems that Gradle does not cleanup the unused transforms-3 directory when running builds with Gradle 8.6.
This will need to be fixed in Gradle before we can fix the behaviour in this action.

I've raised gradle/gradle#28178 for this issue.

@bigdaz
Copy link
Member

bigdaz commented Apr 4, 2024

FYI this has been fixed in Gradle and once v8.8 is released we can incorporate the fix into this action.

@bigdaz bigdaz added bug Something isn't working in:gradle A bug that needs to be fixed in Gradle in:caching Issue with caching of Gradle User Home labels Apr 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working in:caching Issue with caching of Gradle User Home in:gradle A bug that needs to be fixed in Gradle
Projects
None yet
Development

No branches or pull requests

2 participants