Git Product home page Git Product logo

Comments (4)

channelcat avatar channelcat commented on April 27, 2024 3

I've been looking into this one and after researching I think the answer may be very simple. Sanic uses asyncio's create_server. If we spin up multiple processes and take advantage of the reuse_port feature, we get a simple way to distribute the load without much overhead. I ran some tests and the results so far are much better than I was getting from load balancing with haproxy or nginx.

If we were to deploy this way, scaling could simply be just changing your run line to include workers:

app.run(host="0.0.0.0", port=8000, workers=4)

And then you can still just run it with python :D

from sanic.

santagada avatar santagada commented on April 27, 2024

I think the simple way forward would be to use gunicorn. uWSGI does have support for asyncio but will never (I think) support uvloop (it has its own async loop internally). But supporting both should be possible.

from sanic.

eseglem avatar eseglem commented on April 27, 2024

Being able to reuse a socket on all the workers would probably be a reasonable solution for it. Also being able to specify that socket would also be nice. Then could point nginx, or whatever, at the socket. I haven't done any testing yet, but it will probably still be useful to have nginx on top for ssl, pki, and things of that nature.

from sanic.

channelcat avatar channelcat commented on April 27, 2024

Added multiprocessing in #57, also added a sock argument to Sanic.run

from sanic.

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.