Giter Club home page Giter Club logo

Comments (4)

spodila avatar spodila commented on July 29, 2024

@dgrnbrg it turns out you can achieve this already by setting the maximum offers to reject to a large number. That is, effectively telling Fenzo to not limit the number of offers to reject upon offer expiry. Here's one way to set the maximum to a large number:

final TaskScheduler scheduler = new TaskScheduler.Builder()
                .withLeaseRejectAction(new Action1<VirtualMachineLease>() {
                    @Override
                    public void call(VirtualMachineLease virtualMachineLease) {
                        ...
                    }
                })
                .withLeaseOfferExpirySecs(leaseExpirySecs)
                .withMaxOffersToReject(Integer.MAX_VALUE)
                .build();

Fenzo will then reject all leases whose offered time is more than leaseExpirySecs seconds ago.

However, note that the action to check which offers to reject is carried out only at the end of TaskScheduler.scheduleOnce() method. So you must routinely call that method for offers to expire timely.

I will enhance documentation to make this clearer.

Does this work for you?

from fenzo.

dgrnbrg avatar dgrnbrg commented on July 29, 2024

That should work, thanks! I wonder if there's benefit in making rejecting all offers into another builder method, vs. requiring the user to treat it as a special case of the rejection logic. Either way, that will solve the problem.

from fenzo.

spodila avatar spodila commented on July 29, 2024

Fenzo 0.8.2 has a new convenience mthod in the builder, withRejectAllExpiredOffers(), for this.

from fenzo.

dgrnbrg avatar dgrnbrg commented on July 29, 2024

Thank you!

from fenzo.

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.