Git Product home page Git Product logo

Comments (4)

gambol99 avatar gambol99 commented on May 29, 2024

Sorry for the delay ... Admittedly i'm not sure how best to get these numbers either ... I'll have a look into it though ..

from go-marathon.

gambol99 avatar gambol99 commented on May 29, 2024

Might be overthinking it ... perhaps just checking the tasks count == application instances requested when deployed is enough. Though i recall there was an issue if the application is deployed via a group, as internally marathon set the .instances variable to zero and use's as a means to control dependencies

// step: does the number of tasks match the number of tasks?
if !application.AllTaskRunning() {
    return false, nil
}

and the AllTaskRunning() method

func (application *Application) AllTaskRunning() bool {
    if application.Instances == 0 {
        return true
    }
    if application.Tasks == nil {
        return false
    }
    if application.TasksRunning == application.Instances {
        return true
    }
    return false
}

from go-marathon.

iderdik avatar iderdik commented on May 29, 2024

That check does seem like it should work. I guess I'll need to make multiple calls to make sure the tasks stay running for a few seconds. Thanks for looking into it!

from go-marathon.

timoreimann avatar timoreimann commented on May 29, 2024

This seems fixed, so I'm closing the ticket. Please reopen in case there's still something missing.

from go-marathon.

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.