Microservice gateway using Nats
Project description
Metropolis (Python Microservice Gateway with NATS)
Can we make
simple
,scalable
,observable
,operable
service gateway?
Purpose
Cloud Native
Single Workload Unit
Service Discovery
Service Mesh
Architecture Concept
+- Cluster --------------------------------------------------+
| |
| +- Node-1 --+ +- Node-2 -+ +- Node-3 --+ +- Node-4 -+ |
| | | | | | | | | |
| | Worker-a | | | | | | Worker-d | |
| | Worker-b | | Worker-c | | Worker-a | | Worker-c | |
| | | | | | | | | | | | | |
<======= NATS ========= NATS ======================= NATS =======>
| | | | | | | | | | | |
| | Gateway | | | | Gateway | | | |
| | | | | | | | | | | |
| +--- | -----+ +----------+ +--- | -----+ +----------+ |
| | | |
| +--------------+-------------+ |
| | |
| Ingress |
+--------------------- | ------------------------------------+
V
Components
Nats
Message bus
Worker
Business Logic worker
Gateway
Service gateway
Example
Install metropolis
$ pip install metropolis
Define Worker task
from metropolis import Worker
worker = Worker(nats='nats://localhost:4222')
@worker.task(subject='foo.bar', queue='worker')
def mytask(data, *args, **kwargs):
"""Simple task which returns reverse string
"""
return data[0][::-1]
worker.run()
Define Gateway
from metropolis import Gateway
import settings
gateway = Gateway(nats='nats://nats:4222')
gateway.app.run(host='0.0.0.0')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
metropolis-0.1.4.tar.gz
(6.2 kB
view details)
Built Distribution
File details
Details for the file metropolis-0.1.4.tar.gz
.
File metadata
- Download URL: metropolis-0.1.4.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f7c872719a0349d3ccfe5446b9a3c17092dcfd0f07e25eb490fa4526e9b5d9e7
|
|
MD5 |
57cb0057a1407b1a16adb8553199481d
|
|
BLAKE2b-256 |
8af0db138aa910d7f865dbecf20b52276a9814fd97a479d21d58c5f55f36bea9
|
File details
Details for the file metropolis-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: metropolis-0.1.4-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
05636c54e07648e0172dc6d84858195e116f4ee5f6f5fded6bb087f00ffe912b
|
|
MD5 |
2ad23942e071b291d1ba1d97595e8d87
|
|
BLAKE2b-256 |
1e2a2f27cca00f8b70208f6f44bb48cfd4553600f1ece6562ac3e6891ca4a374
|