Coder Social home page Coder Social logo

Startup / Shutdown events about starlette HOT 8 CLOSED

encode avatar encode commented on May 9, 2024
Startup / Shutdown events

from starlette.

Comments (8)

tomchristie avatar tomchristie commented on May 9, 2024 1

mounted applications will have lifetime events passed to them.

For stuff like database connections you’d probably have a global connection pool object, and use it from both places.

Middleware around parent applications would be able to pass context down to their children too, which might also be helpful here. (Docs and better support for that is incoming)

from starlette.

tomchristie avatar tomchristie commented on May 9, 2024 1

@freakypie See also #58 (comment)

from starlette.

dfcarpenter avatar dfcarpenter commented on May 9, 2024 1

awesome thanks!

from starlette.

berislavlopac avatar berislavlopac commented on May 9, 2024

Thanks for that! I'm assuming these decorators will reference the app inside the decorated function somehow, so various lifetime objects can be attached directly to it?

On a related note, is there a way to access a "parent" app by its "children"? So e.g. if I do:

app = Starlette()

foo = Router([
    Path('/bar', FooBar),
    Path('/baz', FooBaz)
])
app.mount('/foo', foo)

Do FooBar and FooBaz have access to app (and foo) in some way? And any attached lifetime objects? The idea is that we could instantiate a database connection on the top app and reuse it below.

from starlette.

freakypie avatar freakypie commented on May 9, 2024

would @app.shutdown be a good place to shutdown websockets that are in a while true loop?

from starlette.

tomchristie avatar tomchristie commented on May 9, 2024

Use the websocket.disconnect message to handle that case. (Servers should disconnect connections and allow a short timeout for task completion prior to shutdown.)

from starlette.

dfcarpenter avatar dfcarpenter commented on May 9, 2024

Sorry, just starting out, ( and newish to python ) but I found this issue from #63 and i'm wondering if it's possible to use a database (leveraging https://github.com/MagicStack/asyncpg for example) with starlette? Or do we have to wait until 1.0?

from starlette.

tomchristie avatar tomchristie commented on May 9, 2024

@dfcarpenter I got your back here.

Upgrade to the latest uvicorn and latest starlette, for nice startup/cleanup support.

https://www.starlette.io/events/

There's workarounds before now, but this is really what we want for doing things like initializing a database connection pool within an async context.

from starlette.

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.