GithubHelp home page GithubHelp logo

fastapi-parallel-processing's Introduction

Parrallel Request Processing using FastAPI, plus Async Task scheduling with Celery

Installation

$ python -m venv venv && source ./venv/bin/activate # Optional Create and activate a virtual environment
$ pip install -r requirements.txt
$ gunicorn -k uvicorn.workers.UvicornWorker -w 2 main:app 

In this configuration a single gunicorn worker manages 2 UnicornWorkers which process the incoming requests.

Celery and Flower monitor

Celery uses a redis running on the standard 6379 port. Configurations can be updated by added env variables. The dedicated Flower monitor looks at the task broker, in this case redis, to construct the dashboard.

Spawn a Celery worker that will look at and process tasks in the "universities" and "university" queues.

$ celery -A main.celery worker --loglevel=info -Q universities,university # Start celery worker for the specified queues

Run the Flower monitor on 5555 port. By default it monitors all queues.

$ celery -A main.celery flower --port=5555

Swagger

For the ease of testing, APIs can be invoked through swagger ui sitting at http://localhost:8000/docs

fastapi-parallel-processing's People

Contributors

progerdav avatar

Watchers

 avatar

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.