SlideShare a Scribd company logo
Shared Nothing Web
Backends
Matthias Wahl - developer @ crate.io
Agenda
Shared Nothing
Crate
Shared Nothing Architectures using Crate
Cluster Workout
Prepare for Workout
1.) bash -c "$(curl -L try.crate.io)"
https://cdn.crate.io/downloads/releases/crate-0.38.2.tar.gz
2.) sh$ bin/crate
0.) share our “craty” WLAN
pw: select*fromcrate;
Prepare for Workout
3.) start up the twitter tutorial
Shared Nothing
Shared Nothing
Wikipedia:
!
a distributed computing architecture in which each
node is independent and self-sufficient, and there is no
single point of contention across the system. More
specifically, none of the nodes share memory or disk
storage.
Shared Nothing
Origin:
!
Micheal Stonebraker
“The Case for Shared Nothing” (1986)
!
http://pdf.aminer.org/000/255/770/
the_case_for_shared_nothing.pdf
Shared Nothing
Principle of most functional languages
Shared state/resources (memory) is what
makes threading hard
No SPOF
Easy concurrency
DB
Cache
App App App App
DB -
Replica
Cache Cache
Bad Idea
DB
Cache
App App App App
DB -
Replica
Cache Cache
Bad Idea
Crate
Austria and Berlin based Startup
founded 2013
open source since april
https://github.com/crate/crate
Crate
shared nothing massively scalable datastore
standing on the shoulders of giants
Crate
Crate
automatic sharding and replication
(semi-) structured models
blob support
SQL query language
Crate
powerful fulltext search capabilities
complex aggregations in near real-time
- no joins
Crate
crate-java
crate-jdbc
crate-python (+SQLAlchemy)
crate-ruby
…
CRATE Clients
Shared Nothing with
Crate
data and query execution is
distributed among all nodes
no master/slave - all nodes are equal
automatic sharding & replication
Shared Nothing with
Crate
example architecture
crate
app
crate
app
crate
app
…
Load Balancer
Shared Nothing with
Crate
horizontally scalable as hell
still flexible enough for complex applications
high availability for your whole stack
Shared Nothing with
Crate
create table blogpost (
id string primary key,
created timestamp,
text string,
creator string
)
Shared Nothing with
Crate
from sqlalchemy import Column, String, DateTime
from microblog.model import Base
import uuid
!
!
def genuuid():
return str(uuid.uuid4())
!
!
class BlogPost(Base):
!
__tablename__ = 'blogpost'
!
id = Column(String, default=genuuid, primary_key=True)
text = Column('text', String, nullable=False)
creator = Column('creator', String, nullable=False)
created = Column('created', DateTime, nullable=False)
Shared Nothing with
Crate
@rpcmethod_route(request_method="GET")
def list(self):
""" Return all blogposts
"""
query =
DBSession.query(BlogPost).order_by(BlogPost.created.desc())
blogposts = query.all()
result = []
for post in blogposts:
result.append({'id': post.id,
'created': post.created.isoformat(),
'text': post.text,
'creator': post.creator})
return {"data": {"blogposts": result}}
Shared Nothing with
Crate
get into detail:
!
http://lovelysystems.github.io/
lovely.microblog/
Cluster Workout!!!
CRATE
Thank you
web: https://crate.io/
github: https://github.com/crate
twitter: @cratedata
IRC: #crate
stackoverflow tag: cratedata

More Related Content

PDF
Python pyenv virtualenv
PDF
Node.js and websockets intro
PDF
오픈소스로 시작하는 인공지능 실습
PPTX
Top 10 Tips for Beginning Linux Users
PPTX
Introduce to linux
PDF
PDF
Exploiting null byte vm
PDF
Scale11x lxc talk
Python pyenv virtualenv
Node.js and websockets intro
오픈소스로 시작하는 인공지능 실습
Top 10 Tips for Beginning Linux Users
Introduce to linux
Exploiting null byte vm
Scale11x lxc talk

What's hot (14)

PDF
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - Jéré...
PDF
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
PPTX
Docker slideshare talk june 2013
PDF
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
ODP
Ubuntu for beginners
PPTX
Introduction to-linux
PPTX
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
PDF
install mosquitto-auth-plug - cheat sheet -
PDF
Australis UI + Addon-sdk
PDF
How to Install, Use, and Customize Drush
PPTX
A Big, Fast and Persistent Queue
ODP
OpenEmbedded
PPTX
Carl ignite osm
PDF
Introduction to Docker at Glidewell Laboratories in Orange County
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - Jéré...
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Docker slideshare talk june 2013
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
Ubuntu for beginners
Introduction to-linux
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
install mosquitto-auth-plug - cheat sheet -
Australis UI + Addon-sdk
How to Install, Use, and Customize Drush
A Big, Fast and Persistent Queue
OpenEmbedded
Carl ignite osm
Introduction to Docker at Glidewell Laboratories in Orange County
Ad

Similar to Crate Shared Nothing Web Backends - Web Backend Meetup May 2014 (20)

PPT
maven-for-maine-jug-090226091601-phpapp02.ppt
PPT
What You Should Know About Container Security
PPT
Container security
PDF
Java one 2015 - v1
PPTX
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
PDF
Good - aDocker - Reference Materials.pdf
PPTX
Docker Ecosystem on Azure
PDF
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
PPT
PPT
PPTX
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
PDF
Slackware Demystified [SELF 2011]
PDF
Shorten Device Boot Time for Automotive IVI and Navigation Systems
PPTX
The Ball Content Sync with Device Client
PPT
Hyper v r2 deep dive
PDF
Jump into Squeak - Integrate Squeak projects with Docker & Github
PDF
Introduction to Docker
DOCX
Data hiding and finding on Linux
PPTX
Exploring .NET memory management - JetBrains webinar
PPTX
DotNetFest - Let’s refresh our memory! Memory management in .NET
maven-for-maine-jug-090226091601-phpapp02.ppt
What You Should Know About Container Security
Container security
Java one 2015 - v1
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Good - aDocker - Reference Materials.pdf
Docker Ecosystem on Azure
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
Slackware Demystified [SELF 2011]
Shorten Device Boot Time for Automotive IVI and Navigation Systems
The Ball Content Sync with Device Client
Hyper v r2 deep dive
Jump into Squeak - Integrate Squeak projects with Docker & Github
Introduction to Docker
Data hiding and finding on Linux
Exploring .NET memory management - JetBrains webinar
DotNetFest - Let’s refresh our memory! Memory management in .NET
Ad

Recently uploaded (20)

PPTX
Transform Your Business with a Software ERP System
PPTX
Essential Infomation Tech presentation.pptx
PDF
How Creative Agencies Leverage Project Management Software.pdf
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
top salesforce developer skills in 2025.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Digital Strategies for Manufacturing Companies
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Introduction to Artificial Intelligence
Transform Your Business with a Software ERP System
Essential Infomation Tech presentation.pptx
How Creative Agencies Leverage Project Management Software.pdf
Operating system designcfffgfgggggggvggggggggg
Reimagine Home Health with the Power of Agentic AI​
2025 Textile ERP Trends: SAP, Odoo & Oracle
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
top salesforce developer skills in 2025.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Navsoft: AI-Powered Business Solutions & Custom Software Development
Design an Analysis of Algorithms II-SECS-1021-03
Digital Strategies for Manufacturing Companies
Softaken Excel to vCard Converter Software.pdf
How to Migrate SBCGlobal Email to Yahoo Easily
VVF-Customer-Presentation2025-Ver1.9.pptx
Wondershare Filmora 15 Crack With Activation Key [2025
PTS Company Brochure 2025 (1).pdf.......
Odoo POS Development Services by CandidRoot Solutions
Introduction to Artificial Intelligence

Crate Shared Nothing Web Backends - Web Backend Meetup May 2014