Skip to main content

Background tasks for any ASGI web framework

Project description

asgi-background

Background tasks for any ASGI framework.

Example (Starlette)

from asgi_background import BackgroundTaskMiddleware, BackgroundTasks
from starlette.applications import Starlette
from starlette.middleware import Middleware
from starlette.requests import Request
from starlette.responses import Response
from starlette.routing import Route


async def task(num: int) -> None:
    await anyio.sleep(1)
    print(num)


async def endpoint(request: Request) -> Response:
    tasks = BackgroundTasks(request.scope)
    await tasks.add_task(task, 1)
    return Response()


app = Starlette(
    routes=[Route("/", endpoint)],
    middleware=[Middleware(BackgroundTaskMiddleware)]
)

Execution

Unlike Starlette, we do not execute background tasks within the ASGI request/response cycle. Instead we schedule them in a TaskGroup that is bound to the application's lifespan. The only guarantee we make is that background tasks will not block (in the async sense, not the GIL sense) sending the response and that we will (try) to wait for them to finish when the application shuts down. Just like with Starlette's background tasks, you should only use these for short lived tasks, they are not a durable queuing mechanisms like Redis, Celery, etc. For context, the default application shutdown grace period in Kubernetes is 30 seconds, so 30 seconds is probably about as long as you should allow your tasks to run.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

asgi_background-0.2.2.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

asgi_background-0.2.2-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file asgi_background-0.2.2.tar.gz.

File metadata

  • Download URL: asgi_background-0.2.2.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.3 Darwin/21.6.0

File hashes

Hashes for asgi_background-0.2.2.tar.gz
Algorithm Hash digest
SHA256 5046aa0c54690ac980bfe8049b9d3288b352c29d35720397f83be7e825c0f598
MD5 98a43cfe00d2c62b3c426ecdfc2d8301
BLAKE2b-256 4fa6972a433cf7329307e23db2b5f5b6b7ae82a18152e0e83de5fd56857bc240

See more details on using hashes here.

File details

Details for the file asgi_background-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: asgi_background-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.2 CPython/3.10.3 Darwin/21.6.0

File hashes

Hashes for asgi_background-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3d928d74b313fd45ddeeb77272fd7f6edb239cbeee5d0359c4684dca4990ca23
MD5 4d3d0266572c52c0c48607ddb58da55a
BLAKE2b-256 c6c8302c68d5b00a15eaa6599634d742df392a834af3337c62d0cb0f7440adb2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page