DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Manage Microservices With Docker Compose
  • How to Build Microservices With Node.js
  • Before You Microservice Everything, Read This
  • OpenCV Integration With Live 360 Video for Robotics

Trending

  • LLM-Powered Deep Parsing for Industrial Inventory Search
  • Contract-First Integration: Building Scalable Systems With Flyway, OpenAPI, and Kafka
  • Chaos Engineering Has a Blind Spot. Agentic AI Lives in It.
  • Using LLMs to Automate Data Cleaning and Transformation Pipelines
  1. DZone
  2. Data Engineering
  3. Data
  4. How to Build Microservices in Python

How to Build Microservices in Python

In this article, learn how to deploy microservices that are created using either Python and Django on both Nginx and uWSGI.

By 
Rakesh Kalidindi user avatar
Rakesh Kalidindi
·
Nov. 15, 16 · Tutorial
Likes (6)
Comment
Save
Tweet
Share
28.0K Views

Join the DZone community and get the full member experience.

Join For Free

microservices design helps alleviate some problems associated with the monolithic model. implementing microservices is perhaps one of the greatest ways to improve the productivity of a software engineering team. this is especially true if the following takes place:

  • you deploy only the component that was changed (as opposed to the whole application). this keeps the deployments and the tests manageable.
  • if multiple team members are working on the application, they need to wait until everyone is done with development and testing and ready to move forward . however, with the microservices services model, whenever each piece of functionality is ready, it could be deployed.
  • each microservice runs in its own process space, so if we want to scale for any reason, we can scale the particular microservice that needs more resources instead of scaling the entire application .
  • when one microservice needs to communicate with another micro-service, it uses a lightweight protocol such as http.

this post examines how to deploy microservices created using python and django on nginx and uwsgi.

before going into the details of a microservices design, let's understand and examine how a typical monolithic application looks.

monolithic design

monolithic-design

however, with breaking the functionality into logically isolated micro-services, this is how the design would like.

microservices design

microservices-design

now, let's examine how the configuration would look for a python and django application that runs on nginx on a typical linux server.

because the application code is spread across multiple repos (or subrepos) grouped by logically independent code, this will be the typical organization of the application directories on the server.

[ec2-user@ip-172-31-34-107 www]$ pwd
/opt/www
[ec2-user@ip-172-31-34-107 www]$ ls -lrt
total 8
drwxr-xr-x. 5 root root 4096 oct 12 14:09 microservice1
drwxr-xr-x. 7 root root 4096 oct 12 19:00 microservice2
drwxr-xr-x. 5 root root 4096 oct 12 14:09 microservice3
drwxr-xr-x. 7 root root 4096 oct 12 19:00 microservice4

nginx, which is typically deployed a front-end gateway or a reverse proxy, will have this configuration:

[ec2-user@ip-172-31-34-107 servicea]$ cat /etc/nginx/conf.d/service.conf 
upstream django1 {
    server unix:///opt/www/service1/uwsgi.sock; # for a file socket
}

upstream django2 {
    server unix:///opt/www/service2/uwsgi.sock; # for a file socket
}

upstream django3 {
    server unix:///opt/www/service3/uwsgi.sock; # for a file socket
}

upstream django4 {
    server unix:///opt/www/service4/uwsgi.sock; # for a file socket
}

server {
    # the port your site will be served on
    listen      80;
    # the domain name it will serve for
    server_name localhost;
    charset     utf-8;

    # max upload size
    client_max_body_size 75m;   # adjust to taste

    location /api/service1/ {
    uwsgi_pass  django1; 
    include     /etc/nginx/uwsgi_params; 
    }

   location /api/service2/ {
            uwsgi_pass  django2;
            include     /etc/nginx/uwsgi_params; 
    }

    location /api/service3/ {
    uwsgi_pass  django3; 
    include     /etc/nginx/uwsgi_params; 
    }

   location /api/service4/ {
            uwsgi_pass  django4;
            include     /etc/nginx/uwsgi_params; 
}

multiple uwsgi processes have to be created that would process the request for each microservice:

/usr/bin/uwsgi --socket=/opt/www/service1/uwsgi.sock --module=microservice-test.wsgi --master=true --chdir=/opt/www/service1

/usr/bin/uwsgi --socket=/opt/www/service2/uwsgi.sock --module=microservice-test.wsgi --master=true --chdir=/opt/www/service2

/usr/bin/uwsgi --socket=/opt/www/service3/uwsgi.sock --module=microservice-test.wsgi --master=true --chdir=/opt/www/service3

/usr/bin/uwsgi --socket=/opt/www/service4/uwsgi.sock --module=microservice-test.wsgi --master=true --chdir=/opt/www/service4


microservice Python (language) application Build (game engine)

Published at DZone with permission of Rakesh Kalidindi. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Manage Microservices With Docker Compose
  • How to Build Microservices With Node.js
  • Before You Microservice Everything, Read This
  • OpenCV Integration With Live 360 Video for Robotics

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook