This blog is for those who have written a program in Python and exposed it as API using Flask. You might have written the python algorithm and will be happy to see the output. With small usage and limited users, it still works by making some configuration changes. Problem arises when you host the same API in Production where multiple users are browsing it.
Why it does not work in Production as local environment?
In production, mutiple requests come to server from mutiple locations. If setup is not tuned to cater to concurrent users, either these requests will make the API down or will be throwing exception like 'Internal server error'.
How can we configure the setup to serve concurrent users?
There are few configuration which you have to keep in mind while designing the eco system to accomodate mutiple users.
- Make sure Python is installed on server. Download
- Download pip from get-pip.py and run command python get-pip.py
- Install Flask using pip commands pip install Flask
- Open command prompt, run python [filename].py and check your python file is running using Flask.
- Install Apache from Apache Lounge and install it as service. Check http://localhost and apache default page should appear.
- Open command prompt and goto Apache directory
- run httpd.exe -k install
- Open service.msc and look fot Apache service
- Right click and run it as Automatic
- Install mod_wsgi(component for concurrency) using command pip install mod_wsgi
- Run command mod_wsgi-express module-config and this will produce output somthing like LoadModule wsgi_module...These are the directives needed to configure Apache to load mod_usgi.
- Copy the above output and paste it in [apache home directoty]/conf/httpd.conf at the bottom of the file.
- Modify the Apache confirguration to listen to desired port. Open [apache home directoty]/conf/extra/httpd-vhosts.conf
- <VirtualHost *:5000>
- ServerAdmin admin-name-here
- ServerName localhost:5000
- WSGIScriptAlias / "C:/Sumit Bajaj/web.wsgi"
- DocumentRoot "C:/Sumit Bajaj"
- <Directory "C:/Sumit Bajaj">
- Require all granted
- </Directory>
- ErrorLog "C:/Sumit Bajaj/logs/error.log"
- CustomLog "C:/Sumit Bajaj/logs/access.log" common
- </VirtualHost>
- In the above example "C:/Sumit Bajaj" is directory where python file resides. If web.wsgi file does not exists in the folder, create one.
- Copy these lines into web.wsgi file -
- import sys
- sys.path.insert(0, 'C:\Sumit Bajaj')
- from app import app as application
- After all these steps, your app.py file should be running using mod_usgi on Apache.
- Even after your setup is not working. See FAQs below.
Python ecoSystem to support concurrency |
Frequently Asked Questions(FAQs)
Apache is giving port not found exceptionOpen [apache home directoty]/conf/httpd.conf and search for 'Listen' and make sure your desired port is added to Listen.
Where mod_wsgi directly exists on windows?
It should be in [Python_directory]/lib/. If you are not able to find, search for web.wsgi file and you will get the directory.
Module is not available
While runnig this experiment, if you get execption 'Module is not available', don't get discouraged. Browse the module on internet and install it.
Can we tune flask to run mutiple threads?
Use app.run(host="0.0.0.0", port="5000", threaded=True) rather than default app.run()
After using Flask, mod_usgi and Apache, application is not able to feed concurrent requests
- Check your hardware
- If server has enough resources to server mutiple request. Check your Python code for improvement. In Python there is concept of Global Interpreter Lock(GIL) is a mutex which prevents access to Python objects for multithreaded environment. You may use threading library and lock the object till its work is completed. Read more on Python threading
Should I run Python on Windows or Linux?
Python and dependent libraries are better supported on Linux OS rather than windows, so I will recommended to use Linux. However, if your exisitng ecoSystem does not support it, nothing to worry. This blog is for you.
Please share your queries in comments and I will put my best to answer.
Comments
Post a Comment