https://gradle.com/ logo
Join Slack
Powered by
# configuration-cache
  • o

    Oleg Nenashev

    05/15/2025, 3:16 PM
    Do not hesitate to ask questions here, we will ask Alex. I am also capturing questions so that we can incorporate them in our docs
  • o

    Oleg Nenashev

    05/15/2025, 3:26 PM
    And a micro-survey for those who are watching or using Configuration Cache - https://app.sli.do/event/4dkRGVpaxiLiadtgrCj3za
  • f

    Frank Riccobono

    05/15/2025, 4:12 PM
    A meeting ran long and I missed the first two third of the webinar. Will a recording be shared?
    o
    • 2
    • 1
  • s

    Slackbot

    05/15/2025, 4:29 PM
    This message was deleted.
    j
    • 2
    • 1
  • o

    Oleg Nenashev

    05/30/2025, 6:05 AM
    FYI CC issue in Gradle 9 and Kotlin Multiplatform https://kotlinlang.slack.com/archives/C19FD9681/p1748577543128899?thread_ts=1748362393.256609&cid=C19FD9681
  • o

    Oleg Nenashev

    06/02/2025, 12:24 PM
    https://gradle-community.slack.com/archives/CRA9GTYBH/p1748867030179569
  • c

    Callum Rogers

    06/10/2025, 3:30 PM
    We’re looking at enabling Configuration Cache across our company (1000+ devs, 1000s of Gradle based repos, 100s of plugins). It’s quite a mammoth task at this scale, so we want to try and do this incrementally - ie enable it for one workflow like compilation, then work up to running tests, then all the other tasks. This avoids us spending years rewriting all our plugins before we get any value. Has anyone worked out a way to incrementally enable Configuration Cache? Our original plan was: 1. Get our plugins in shape so that compilation (
    classes testClasses
    etc) fully works 2. Enable CC using gradle properties _in warn mode_ on repos so that CC will work for compilation, just not save the cache state for everything other set of tasks 3. In each repo, specify the max number of allowed CC problems to be the current number of problems. Use this max number of problems as a ratchet to stop people adding new problems (ie stop the bleeding). 4. Automatically reduce this max allowed number of CC problems down as we fix issues 5. CC just works on workflows where everything is fixed 6. Eventually we work down to 0 issues on the whole
    ./gradlew build
    and we hard enforce configuration cache on that repo However, this doesn’t work, as
    warn
    mode doesn’t do what we expect.
    warn
    mode is apparently only supposed to be used for diagnosing initial problems. If you use
    warn
    mode, the build will still go wrong or error on configuration cache issues:
    We don’t recommend using
    problems=warn
    for anything but initial configuration cache adoption attempts to see more issues at once.
    From the Gradle team here
    With
    problems=warn
    , it is expected that your build might run incorrectly if there are problems detected.
    From here This has kind of stopped us in our tracks, as we can’t just always run in warn mode for all our repos and keep track of the problems. Is there any way to gradually enable configuration cache? Our options seem to be: • Hard enforce CC on each repo using the gradle property. However, this requires getting to completely fixed in each repo in all the plugins and workflows it uses. This will take us a very long time due to the scale of our Gradle plugins (built over the last 13 years - many are quite crusty). • Have our devs opt-in to CC by manually using
    --configuration-cache
    . This feels like a non-starter to me. Devs shouldn’t have to worry about this and won’t necessarily know which tasks are CC supported or not. It doesn’t enable it in IntelliJ without another IntelliJ Plugin. We can’t stop CC problems from regressing. Is there some other approach?
    t
    a
    m
    • 4
    • 5
  • n

    no

    06/18/2025, 11:30 AM
    I'm encountering ``cannot be reused because an input to unknown location has changed` and I wanted to debug it. How can I compare the inputs of the two configuration cache entries? Looks like someone was able to do it here: https://github.com/gradle/gradle/issues/25469#issuecomment-2614299897
    a
    • 2
    • 2
  • v

    Vladimir Sitnikov

    06/20/2025, 9:37 AM
    It is sad
    org.gradle.api.tasks.diagnostics.internal.ConfigurationDetails
    is not publicly-available. Any third-party task like
    dependencies
    would effectively duplicate
    ConfigurationDetails
    to support the configuration cache. Is there a possibility to make
    ConfigurationDetails
    public? I would assume it could be a feature-reduced variation of
    Configuration
    .
    🤷‍♂️ 1
  • v

    Vladimir Sitnikov

    06/20/2025, 2:19 PM
    Can I somehow fetch
    ResolvedArtifact
    (coordinates + file) from a
    Configuration
    so it is compatible with configuration cache? I see I can pass
    incoming.resolutionResult.rootComponent
    (which is
    Provider<ResolvedComponentResult>
    ) as a task property, however, I do not see how could I fetch artifact file location from the
    ResolvedComponentResult
    👀 1
    m
    r
    • 3
    • 12
  • v

    Vladimir Sitnikov

    06/20/2025, 5:51 PM
    Is there a way to download “pom files” for the set of “groupartifactversion” in a task action or work action? Currently I have something as follows while neither
    project
    nor
    project.dependencies
    is compatible with CC:
    Copy code
    val artifactResolutionResult = project.dependencies.createArtifactResolutionQuery()
        .forComponents(requests.map { it.first })
        .withArtifacts(MavenModule::class, MavenPomArtifact::class)
        .execute()
    
    val results = artifactResolutionResult.resolvedComponents
        .associate { it.id to it.getArtifacts(MavenPomArtifact::class) }
    v
    p
    r
    • 4
    • 16
  • r

    René

    06/25/2025, 9:14 AM
    I run into a behavior when using configuration cache in combination with artifact transforms I'm not sure how to wrap my head around for our test setup we want to do something like that:
    Copy code
    FileCollection mainRuntime = mainSourceSet.getRuntimeClasspath();
    FileCollection testRuntime = testSourceSet.getRuntimeClasspath();
    FileCollection testOnlyFiles = testRuntime.minus(mainRuntime);
    test.doFirst(task -> test.environment("es.entitlement.testOnlyPath", testOnlyFiles.getAsPath()));
    ideally I would want to replace the requirement for using
    test.doFirst
    by replacing it with
    Copy code
    test.environment("es.entitlement.testOnlyPath", getProviderFactory().provider(() -> testOnlyFiles.getAsPath()));
    Now in theory that works okay but it breaks as soon as we enable configuration cache and have artifact transforms in declared that are registered against configurations that include internal dependencies complaining about the expected jar to transform not yet available (well it did not build yet). My understanding is that with having those configurations declared as
    @InputFiles
    gradle understands its buildable and does handle it as expected. Given that
    environment
    is
    @Input
    we circumvent the buildable part I assume. In this case would you just keep the doFirst block as is or do you have another idea how to solve that properly?
    v
    m
    • 3
    • 8
  • v

    Vampire

    06/26/2025, 3:05 PM
    Folks, help my poor vacation brain. When is an input property not prematurely evaluated and serialized to the CC entry? I thought with
    Copy code
    abstract class MyTask : DefaultTask() {
        @get:Input
        abstract val foo: Property<String>
    }
    val bar by tasks.registering
    val baz by tasks.registering(MyTask::class) {
        foo = bar.map {
            println("Calculating foo")
            ""
        }
    }
    the value of
    foo
    should not be serialized to the CC entry, as it has a task dependency. But obviously I forgot some detail. 😕
    m
    i
    l
    • 4
    • 19
  • e

    Eli Graber

    07/17/2025, 5:59 AM
    I enabled configuration cache in my library, but for some reasons tests started failing and hanging indefinitely, so I disabled it just for the test tasks. What's the best way to debug the issue? I made a PR re-enabling configuration cache for the tests that show the failure. https://github.com/eygraber/sqldelight-androidx-driver/pull/92 Here's a scan of a failed run - https://scans.gradle.com/s/z5i2jptjvqmlg
    n
    e
    • 3
    • 10
  • v

    Vladimir Sitnikov

    07/21/2025, 4:18 PM
    I implement a build cache service which needs credentials for the operation. It looks like credential change invalidates configuration cache entry:
    Copy code
    Calculating task graph as configuration cache cannot be reused because environment variable 'AWS_ACCESS_KEY_ID' has changed.
    Is there a way to avoid configuration cache invalidation when credentials change?
    t
    • 2
    • 22
  • i

    Ivan CLOVIS Canet

    07/21/2025, 8:13 PM
    Should we still recommend to users to write
    Copy code
    val theirTask by tasks.registering {
        aProperty = provider { someComplexInitialization() }
    }
    instead of
    Copy code
    val theirTask by tasks.registering {
        aProperty = someComplexInitialization()
    }
    ? With the configuration cache enabled, the task will be configured eagerly anyway if
    theirTask
    is in the task graph, so the
    provider {}
    does nothing. Or is
    provider {}
    only for declaring things outside of tasks?
    v
    m
    • 3
    • 3
  • a

    Alex Beggs

    07/25/2025, 4:33 PM
    I have a question related to composite builds and configuration on demand. When you have a project that has a composite build (using includeBuild), it seems that configuration occurs on the composite build even when not referenced as a dependency in the root project. When not using a composite build and just including the projects (using include) it seems to be able to avoid some of the configuration. I'm still investigating this, but is this the case?
    v
    • 2
    • 5
  • r

    Robert Elliot

    07/30/2025, 5:25 PM
    I've been trying to improve my configuration cache hits - I noticed that an env var used in a Sync task was busting the cache every time. I've got a version which doesn't bust the cache, but it's pretty noisy. Wondering if anyone can suggest a better solution?
    Untitled.kt
    • 1
    • 3
  • j

    Jonathing

    08/19/2025, 12:11 PM
    Good morning chat, been a while. How exactly does Gradle instantiate objects when re-using configuration cache? Does it create them using
    ObjectFactory#newInstance
    (or whatever the internal version of that is) with service injection support or does it try to build the class raw using the saved values. Asking because I am using a transient private field that stores an instance of
    Problems
    which is normally provided through service injection in constructor parameter or bean getter.
    v
    m
    • 3
    • 40
  • d

    Daniel Karapishchenko

    08/22/2025, 7:40 PM
    Hi everyone Does anyone know if you can pre-generate configuration-cache for a task (
    test
    for example) without actually running it?
    m
    • 2
    • 7
  • i

    Ivan CLOVIS Canet

    08/24/2025, 1:12 PM
    Hi! I'm seeing a configuration cache crash but I don't understand it.
    Copy code
    Exception in thread "DefaultSharedObjectDecoder reader thread" org.gradle.api.GradleException: Could not load the value of 
      field `collection` of `kotlin.collections.builders.SerializedCollection` bean found in 
      field `_byTask` of `org.jetbrains.kotlin.gradle.targets.js.nodejs.TasksRequirements` bean found in 
      field `tasksRequirements` of `org.jetbrains.kotlin.gradle.targets.js.npm.resolver.KotlinCompilationNpmResolution` bean found in 
      field `byCompilation` of `org.jetbrains.kotlin.gradle.targets.js.npm.resolved.KotlinProjectNpmResolution` bean found in 
      field `v` of `java.util.Collections$SingletonMap` bean found in field `projects` of `org.jetbrains.kotlin.gradle.targets.js.npm.resolved.KotlinRootNpmResolution` bean found in 
      field `__resolution__` of `org.jetbrains.kotlin.gradle.targets.js.npm.KotlinNpmResolutionManager$Parameters_Decorated` bean found in Gradle runtime.
    	at org.gradle.internal.serialize.graph.BeanPropertyExtensionsKt.readPropertyValue(BeanPropertyExtensions.kt:70)
    	at org.gradle.internal.serialize.beans.services.BeanPropertyReader.readFieldOf(BeanPropertyReader.kt:93)
    …
    Caused by: java.lang.ArrayIndexOutOfBoundsException: Index 53 out of bounds for length 4
    	at org.gradle.internal.serialize.codecs.core.jos.JavaObjectSerializationCodec.decode(JavaObjectSerializationCodec.kt:299)
    	at org.gradle.internal.serialize.graph.codecs.BindingsBackedCodec.decode(BindingsBackedCodec.kt:92)
    
    * What went wrong:
    Could not load the value of field `__npmResolutionManager__` of task `:jsPackageJson` of type `org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinPackageJsonTask`.
    No build scan was generated, even though they are enabled. From what I can tell, this was introduced by this commit, but I don't understand why.
    v
    r
    m
    • 4
    • 31
  • r

    René

    08/29/2025, 10:11 AM
    Hey there i have a question regarding ignoring certain build parameter in configuration cache. We generate a random test seed that we pass to a TestTask. With configuration cache enabled this stays the same for the whole time the cache is reused. I see multiple discussions around having the option to ignore certain properties from the configuration cache explicitly in github issues but those have not been addressed for years (e.g. https://github.com/gradle/gradle/issues/20873) Did i miss a memo here? What do people do these days having this type of requirement? just not using the configuration cache?
    m
    v
    • 3
    • 13
  • j

    Javi

    09/11/2025, 8:59 AM
    Hello 👋 The next Gradle version, 9.1, is breaking my plugin with configuration cache. Any hint about what has changed respect to 9.0 related to that? GitHub issue: https://github.com/JavierSegoviaCordoba/semver-gradle-plugin/issues/201
    v
    m
    r
    • 4
    • 25
  • j

    Jendrik Johannes

    09/19/2025, 10:27 AM
    Hey. I am looking into using a build service that does some logging during the execution phase. For example, logging the things that are printed to the console also into a file. The only thing I am aware of to make Gradle start such a service early outside of a task is
    getEventsListenerRegistry().onTaskCompletion(myServie)
    (full example). Are there any other hooks like that available? Ideally I would like to force my service to start before task execution (i.e. after CC was loaded) and not just when the first task has completed.
    v
    • 2
    • 5
  • l

    LoremIpsum-42

    09/23/2025, 8:54 AM
    Hey, that should be an easy one, but I am still reading / learning about the CC + changes, so I got this code in one of my kotlin files and could need a helping hand here:
    Copy code
    tasks.clean {
        doFirst {
            delete(layout.projectDirectory.dir("node_modules"))
        }
    }
    Which now fails with CC enabled, because it is a disallowed type - how do I write this in a CC compatible way? https://docs.gradle.org/9.1.0/userguide/configuration_cache_requirements.html#config_cache:requirements:disallowed_types mentions that I should replace
    project.delete {}
    with
    FileSystemOperations.delete {}
    but the latter one has to be injected on a task - is there a way to use it like:
    Copy code
    providers.exec { }
    to write something like:
    Copy code
    providers.fs.delete(..)
    or how do I replace that
    doFirst / doLast
    delete operation(s)?
    v
    • 2
    • 13
  • j

    Jendrik Johannes

    09/24/2025, 7:00 AM
    I was searching for this but did not find any info in any of the issue trackers or docs. Does anyone know about the status/plans of supporting
    org.gradle.unsafe.isolated-projects
    in VS Code? Currently they add an init script that causes issues like
    ':app' cannot access 'Project.tasks' functionality on another project ':'
    v
    j
    a
    • 4
    • 10
  • l

    LoremIpsum-42

    09/25/2025, 10:37 AM
    Hey, I am still working (and reading + learning) on some of my CC issues, is there a way to see which part(s) of my task are the problem (variable name, or class names, something which would give me a hint where to look) when something like this is reported:
    1 problem was found storing the configuration cache.
    `- Task
    :models:migrateDocumentModels
    of type `org.gradle.api.DefaultTask`: cannot serialize Gradle script object references as these are not supported with the configuration cache.`
    See <https://docs.gradle.org/9.1.0/userguide/configuration_cache_requirements.html#config_cache:requirements:disallowed_types>
    That would be really helpful - I know the report has a hierarchical view, but that one has e.g. "this$0" which is not that helpful. I've got this task at the moment, which does result in the problem found above (it calls a jar / javaexec task in a loop):
    val docModelMigration: Configuration by configurations.creating
    docModelMigration.isTransitive = false
    dependencies {
    docModelMigration(libs.tool.model.migration) {
    artifact {
    classifier = "jar-with-dependencies"
    }
    }
    }
    val models =
    listOf(
    "modelA",
    "modelB"
    )
    val migrateDocumentModels =
    tasks.register("migrateDocumentModels") {
    val myModels = models.toMutableList()
    val myWorkingDir = layout.projectDirectory.asFile
    val classPathFiles =
    files(
    docModelMigration.files,
    java.sourceSets.main
    .get()
    .resources.srcDirs,
    )
    doLast {
    myModels.forEach { model ->
    val theTask =
    providers
    .javaexec {
    workingDir = myWorkingDir
    classpath = classPathFiles
    mainClass = "com.example.migration.MigratorCli"
    args = listOf(model)
    }
    theTask.result.get().assertNormalExitValue()
    println(
    theTask.standardOutput.asText
    .get()
    .trim(),
    )
    }
    }
    }
    Anyone an idea what is wrong here - I moved all those project refs (working dir, classpath file collections from the configuration) out of
    doLast { }
    but I am still missing something here, what I am doing wrong, hints appreciated, thx.
    v
    • 2
    • 7
  • l

    LoremIpsum-42

    09/25/2025, 1:07 PM
    Hey, another CC question. I've got a task with a
    doLast { }
    action. As soon as I am calling a function defined in my
    build.gradle.kts
    , I am getting a CC violation. I could inline the whole code of that function, but I can't believe that is the correct solution. How can I call such a function without triggering a violation? A sample would be, I just made the body as small as possible:
    Copy code
    tasks.register("npmInstall2") {
        doLast {
            if (changeLabel()) {
                println("changed")
            }
        }
    }
    
    fun changeLabel(): Boolean = false
    Hints appreciated, thanks.
    v
    r
    • 3
    • 8
  • l

    LoremIpsum-42

    10/10/2025, 12:37 PM
    Hi, another question. I've read about https://docs.gradle.org/current/userguide/configuration_cache_requirements.html#dependency_management_types but having a hard time to figure out what is allowed and what not and how to move forward to a CC compatible solution, is e.g. ResolvedDependency allowed? I have this task at the moment:
    Copy code
    project.tasks.register("checkDependencies") {
        val configurationsToCheck = mutableSetOf<Configuration>()
        listOf("compileClasspath", extension.configuration.get()).forEach { configToCheck: String ->
            configurationsToCheck += project.configurations[configToCheck]
        }
    
        doLast {
            val snapshotDeps = mutableListOf<String>()
    
            val resolvedDependencies = mutableSetOf<ResolvedDependency>()
            configurationsToCheck.forEach { configToCheck: Configuration ->
                configToCheck
                    .resolvedConfiguration.firstLevelModuleDependencies
                    .forEach { resolvedDependencies += it }
            }
            val sortedValues = resolvedDependencies.toMutableList()
            sortedValues.sortWith(compareBy({ it.moduleGroup }, { it.moduleName }))
            sortedValues.forEach { dep: ResolvedDependency ->
                if (dep.moduleGroup.startsWith("com.example")) {
                    // body work
                    Logging.getLogger("com.example").quiet("Found $dep")
                }
            }
    
            if (!snapshotDeps.isEmpty()) {
                throw GradleException("Found snapshot dependency: ${snapshotDeps.joinToString(separator = "\n")}")
            }
        }
    }
    Which does look over the 1st level declared deps on the given configurations and searches for patterns which I don't want there - this fails with CC enabled and Gradle 9. Anyone have some pointers (to the docs) / ideas how to get those info / task / work done in a CC compatible way? Thanks.
    j
    v
    • 3
    • 12
  • r

    Robert Elliot

    10/20/2025, 4:06 PM
    Is there a way to share the configuration cache in a CI situation?
    t
    v
    a
    • 4
    • 10