Giter Site home page Giter Site logo

Comments (1)

rjrudin avatar rjrudin commented on September 26, 2024

There's a solution for this - you can write your own task, where you can specify the exact parameters you want.

For example, you could do something like this:

task backupMyDatabase(type: com.marklogic.gradle.task.MarkLogicTask) {
    doLast {
        // Add whatever JSON you want per https://docs.marklogic.com/REST/POST/manage/v2/databases/[id-or-name]#BackupDB 
        getManageClient().postJson("/manage/v2/databases/myDatabase, '{"operation":"backup"}')
    }
}

An ml-gradle task would need to support parameters for all of the possible inputs so you could do something like this:

./gradlew mlBackupDatabase -Pdatabase=myDatabase -PbackupDir=/tmp -Pincremental=true etc...

With the above, ml-gradle is adding a layer of abstraction - a set of Gradle params - that must now be documented on top of the well-documented JSON payload for backing up a database. I don't think there's any real value there. That applies for a restore operation as well.

I recommend first trying custom tasks that specify the precise JSON you want for backing up and restoring a database. If you find something to be inefficient with that approach, reply back here with the problem you're running into and how a "mlBackupDatabase" task with a bunch of params would help that.

from ml-gradle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.