https://github.com/jettify/pyconua2017
https://github.com/jettify/pyconua2017
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jettify/pyconua2017
- Owner: jettify
- Created: 2017-03-04T21:25:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-06T21:53:08.000Z (about 8 years ago)
- Last Synced: 2025-01-25T11:11:19.581Z (3 months ago)
- Language: JavaScript
- Homepage: https://jettify.github.io/pyconua2017/
- Size: 8.5 MB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Key Concepts For Scalable Stateful Services
Stateless service architectures can be easily scaled horizontally by adding
backend servers to a front-end load balancer. Such approach is not always
optimal, any application that needs to perform soft real-time work could never
be built using stateless CRUD models, because state locality is required in
order to achieve those response times.In this talk I'll cover benefits of stateful services, gave an overview of
existing frameworks that exists in js, scala, .net and golang worlds.
Unfortunately in this area python has little to offer. To fix this we will
figure out key concepts for building scalable stateful services: membership
and dissemination protocols, failure detection and message routing.