Giter VIP home page Giter VIP logo

Comments (3)

arthur-FD avatar arthur-FD commented on May 27, 2024 1

Hi everyone,
Just to add a bit of context on the usecase that triggered this feature request.

We packaged our own version of ag grid, and we added a dash property to be able to leverage the transactions to update the aggrid table (https://www.ag-grid.com/javascript-data-grid/data-update-transactions/)
We display large table with very large number of rows, that are grouped - see below screenshot. To decrease the waiting time to display the data, we wanted to update the table every time the user open a group: it would trigger a callback, put it in a celery queue, fetch the data within the group and update the table.
The problem with this current approach is that if the user open an other group before the first callback finishes, it would just discard the first callback and onlty the second call will be successful.

So its actually important that the result of the callback is returned to the front-end.

image

Arthur

from dash.

alexcjohnson avatar alexcjohnson commented on May 27, 2024

Thanks @michaelbabyn - this makes sense: the reason we have a later invocation of a background callback cancel an earlier one is that we won't use its result in the browser. But if the callback does something important server-side (running a job and saving the result, interacting with hardware, something like that) you likely still want these to complete even if another such action is triggered on top of it. By the same token, I could imagine wanting an explicit cancel action to trigger a cleanup action rather than simply terminating the job. But that's more speculative and could be dealt with separately.

Tricky to come up with a name for this that's both short and sufficiently descriptive - There's a similar setting on CircleCI that they label "Auto-cancel redundant workflows", so maybe either cancel_redundant=False or auto_cancel=False? Or we could invert this and say always_finish=True? Regardless it'll need some further explanation in the docstring. @michaelbabyn @T4rk1n any favorites or other name suggestions?

from dash.

michaelbabyn avatar michaelbabyn commented on May 27, 2024

I like auto_cancel=False or allow_concurrent=True if we wanted to invert it

from dash.

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.