Add vercel-django-tasks -- Vercel Queues backend for Django Tasks - #291
Open
elprans wants to merge 1 commit into
Open
Add vercel-django-tasks -- Vercel Queues backend for Django Tasks#291elprans wants to merge 1 commit into
vercel-django-tasks -- Vercel Queues backend for Django Tasks#291elprans wants to merge 1 commit into
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
elprans
force-pushed
the
elprans/vq-django
branch
from
August 12, 2026 17:54
c42c8d7 to
c656132
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
elprans
force-pushed
the
elprans/vq-django
branch
from
August 12, 2026 21:30
c656132 to
585bb5b
Compare
ricardo-agz
approved these changes
Aug 14, 2026
Add a Django 6 task backend backed by Vercel Queues. Configure `VercelQueuesBackend` in Django’s `TASKS` setting and declare normal `@task` functions; enqueue and deferred execution map onto Vercel Queue messages and delivery delays. The integration registers each configured Django task queue as a Vercel Queue push subscriber. Task execution updates Django task state, emits the standard task signals, and maps retryable failures onto queue redelivery with configurable exponential backoff. Task results are stored in Vercel Runtime Cache with configurable namespacing and expiry. The backend supports synchronous and asynchronous enqueueing and result lookup, and uses an explicit raw JSON topic transport so task payload validation does not require Pydantic.
elprans
force-pushed
the
elprans/vq-django
branch
from
August 14, 2026 22:11
585bb5b to
2822eb1
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a Django 6 task backend backed by Vercel Queues. Configure
VercelQueuesBackendin Django’sTASKSsetting and declare normal@taskfunctions; enqueue and deferred execution map onto Vercel Queuemessages and delivery delays.
The integration registers each configured Django task queue as a Vercel
Queue push subscriber. Task execution updates Django task state, emits
the standard task signals, and maps retryable failures onto queue
redelivery with configurable exponential backoff.
Task results are stored in Vercel Runtime Cache with configurable
namespacing and expiry. The backend supports synchronous and
asynchronous enqueueing and result lookup, and uses an explicit raw JSON
topic transport so task payload validation does not require Pydantic.