Cloudstate Python Support Library
Project description
Project description
Cloudstate is a specification, protocol, and reference implementation for providing distributed state management patterns suitable for Serverless computing. The current supported and envisioned patterns include:
- Event Sourcing
- Conflict-Free Replicated Data Types (CRDTs)
- Key-Value storage
- P2P messaging
- CQRS read side projections
Cloudstate is polyglot, which means that services can be written in any language that supports gRPC, and with language specific libraries provided that allow idiomatic use of the patterns in each language. Cloudstate can be used either by itself, in combination with a Service Mesh, or it is envisioned that it will be integrated with other Serverless technologies such as Knative.
Read more about the design, architecture, techniques, and technologies behind Cloudstate in this section in the documentation.
The Cloudstate Python user language support is a library that implements the Cloudstate protocol and offers an pythonistic API for writing entities that implement the types supported by the Cloudstate protocol.
The Cloudstate documentation can be found here
Install and update using pip:
pip install -U cloudstate
A Simple EventSourced Example:
1. Define your gRPC contract
// This is the public API offered by the shopping cart entity.
syntax = "proto3";
import "google/protobuf/empty.proto";
import "cloudstate/entity_key.proto";
import "google/api/annotations.proto";
import "google/api/http.proto";
package com.example.shoppingcart;
message AddLineItem {
string user_id = 1 [(.cloudstate.entity_key) = true];
string product_id = 2;
string name = 3;
int32 quantity = 4;
}
message RemoveLineItem {
string user_id = 1 [(.cloudstate.entity_key) = true];
string product_id = 2;
}
message GetShoppingCart {
string user_id = 1 [(.cloudstate.entity_key) = true];
}
message LineItem {
string product_id = 1;
string name = 2;
int32 quantity = 3;
}
message Cart {
repeated LineItem items = 1;
}
service ShoppingCart {
rpc AddItem(AddLineItem) returns (google.protobuf.Empty) {
option (google.api.http) = {
post: "/cart/{user_id}/items/add",
body: "*",
};
}
rpc RemoveItem(RemoveLineItem) returns (google.protobuf.Empty) {
option (google.api.http).post = "/cart/{user_id}/items/{product_id}/remove";
}
rpc GetCart(GetShoppingCart) returns (Cart) {
option (google.api.http) = {
get: "/carts/{user_id}",
additional_bindings: {
get: "/carts/{user_id}/items",
response_body: "items"
}
};
}
}
2. Generate Python files
It is necessary to compile your .proto files using the protoc compiler in order to generate Python files. See this official gRPC for Python quickstart if you are not familiar with the gRPC protocol.
Here is an example of how to compile the sample proto file:
python -m grpc_tools.protoc -I../../protos --python_out=. --grpc_python_out=. ../../protos/shoppingcart.proto
3. Implement your business logic under an EventSourced Cloudstate Entity
from dataclasses import dataclass, field
from typing import MutableMapping
from google.protobuf.empty_pb2 import Empty
from cloudstate.event_sourced_context import EventSourcedCommandContext
from cloudstate.event_sourced_entity import EventSourcedEntity
from shoppingcart.domain_pb2 import (Cart as DomainCart, LineItem as DomainLineItem, ItemAdded, ItemRemoved)
from shoppingcart.shoppingcart_pb2 import (Cart, LineItem, AddLineItem, RemoveLineItem)
from shoppingcart.shoppingcart_pb2 import (_SHOPPINGCART, DESCRIPTOR as FILE_DESCRIPTOR)
@dataclass
class ShoppingCartState:
entity_id: str
cart: MutableMapping[str, LineItem] = field(default_factory=dict)
def init(entity_id: str) -> ShoppingCartState:
return ShoppingCartState(entity_id)
entity = EventSourcedEntity(_SHOPPINGCART, [FILE_DESCRIPTOR], init)
def to_domain_line_item(item):
domain_item = DomainLineItem()
domain_item.productId = item.product_id
domain_item.name = item.name
domain_item.quantity = item.quantity
return domain_item
@entity.snapshot()
def snapshot(state: ShoppingCartState):
cart = DomainCart()
cart.items = [to_domain_line_item(item) for item in state.cart.values()]
return cart
def to_line_item(domain_item):
item = LineItem()
item.product_id = domain_item.productId
item.name = domain_item.name
item.quantity = domain_item.quantity
return item
@entity.snapshot_handler()
def handle_snapshot(state: ShoppingCartState, domain_cart: DomainCart):
state.cart = {domain_item.productId: to_line_item(domain_item) for domain_item in domain_cart.items}
@entity.event_handler(ItemAdded)
def item_added(state: ShoppingCartState, event: ItemAdded):
cart = state.cart
if event.item.productId in cart:
item = cart[event.item.productId]
item.quantity = item.quantity + event.item.quantity
else:
item = to_line_item(event.item)
cart[item.product_id] = item
@entity.event_handler(ItemRemoved)
def item_removed(state: ShoppingCartState, event: ItemRemoved):
del state.cart[event.productId]
@entity.command_handler("GetCart")
def get_cart(state: ShoppingCartState):
cart = Cart()
cart.items.extend(state.cart.values())
return cart
@entity.command_handler("AddItem")
def add_item(item: AddLineItem, ctx: EventSourcedCommandContext):
if item.quantity <= 0:
ctx.fail("Cannot add negative quantity of to item {}".format(item.productId))
else:
item_added_event = ItemAdded()
item_added_event.item.CopyFrom(to_domain_line_item(item))
ctx.emit(item_added_event)
return Empty()
@entity.command_handler("RemoveItem")
def remove_item(state: ShoppingCartState, item: RemoveLineItem, ctx: EventSourcedCommandContext):
cart = state.cart
if item.product_id not in cart:
ctx.fail("Cannot remove item {} because it is not in the cart.".format(item.productId))
else:
item_removed_event = ItemRemoved()
item_removed_event.productId = item.product_id
ctx.emit(item_removed_event)
return Empty()
4. Register Entity
from cloudstate.cloudstate import CloudState
from shoppingcart.shopping_cart_entity import entity as shopping_cart_entity
import logging
if __name__ == '__main__':
logging.basicConfig()
CloudState().register_event_sourced_entity(shopping_cart_entity).start()
5. Deployment
Cloudstate runs on Docker and Kubernetes you need to package your application so that it works as a Docker container and can deploy it together with Cloudstate Operator on Kubernetes, the details and examples of all of which can be found here, here and here.
Contributing
For guidance on setting up a development environment and how to make a contribution to Cloudastate, see the contributing project page or consult an official documentation here.
Links
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
Built Distribution
File details
Details for the file cloudstate-0.1.1.tar.gz
.
File metadata
- Download URL: cloudstate-0.1.1.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c7e7bc79f2f03da2149ad06914f79fc8911b1fba95424ac0d738b41a2b8ead2 |
|
MD5 | 8ac4cca9d6b77dc4d67396e79aca6819 |
|
BLAKE2b-256 | 30b2c7085e24d3bc8a8b6244698b9a27570af5902e8763599430345160aadca0 |
File details
Details for the file cloudstate-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: cloudstate-0.1.1-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06a9eab0efe5600c814ff18107cdacc65e67f48a6ad482aec48c3a8b07acab62 |
|
MD5 | 5256074331023e04a3ac9067ed208b54 |
|
BLAKE2b-256 | 790887dc3cc9546e209a239823dc9be9f56d949d8b72d5bd69b4a47d6dcb81e8 |