際際滷

際際滷Share 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

What's hot (14)

Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Anne Nicolas
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Open Labs Albania
Docker slideshare talk june 2013
Docker slideshare talk june 2013Docker slideshare talk june 2013
Docker slideshare talk june 2013
Guillaume Charmes
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
Andrea Draghetti
Ubuntu for beginners
Ubuntu for beginnersUbuntu for beginners
Ubuntu for beginners
Chantal Meersman
Introduction to-linux
Introduction to-linuxIntroduction to-linux
Introduction to-linux
rowiebornia
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim SandboxInstalling OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Fleep Tuque
install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -
Naoto MATSUMOTO
Australis UI + Addon-sdk
Australis UI + Addon-sdkAustralis UI + Addon-sdk
Australis UI + Addon-sdk
Abraham Cal叩s Torres
How to Install, Use, and Customize Drush
How to Install, Use, and Customize DrushHow to Install, Use, and Customize Drush
How to Install, Use, and Customize Drush
Acquia
A Big, Fast and Persistent Queue
A Big, Fast and Persistent QueueA Big, Fast and Persistent Queue
A Big, Fast and Persistent Queue
William Yang
OpenEmbedded
OpenEmbeddedOpenEmbedded
OpenEmbedded
Scott Garman
Carl ignite osm
Carl ignite osmCarl ignite osm
Carl ignite osm
carlschroedl
Introduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange CountyIntroduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange County
J辿r担me Petazzoni
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Embedded Recipes 2018 - Yoctoception: Containers in the embedded world - J辿r辿...
Anne Nicolas
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Oriola Gjetaj - Linux Ubuntu(OSCAL2014)
Open Labs Albania
Docker slideshare talk june 2013
Docker slideshare talk june 2013Docker slideshare talk june 2013
Docker slideshare talk june 2013
Guillaume Charmes
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
[English] BackBox Linux and Metasploit: A practical demonstration of the Shel...
Andrea Draghetti
Introduction to-linux
Introduction to-linuxIntroduction to-linux
Introduction to-linux
rowiebornia
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim SandboxInstalling OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Installing OpenSim (Diva Distro) to Create Your Own Private Sim Sandbox
Fleep Tuque
install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -install mosquitto-auth-plug - cheat sheet -
install mosquitto-auth-plug - cheat sheet -
Naoto MATSUMOTO
How to Install, Use, and Customize Drush
How to Install, Use, and Customize DrushHow to Install, Use, and Customize Drush
How to Install, Use, and Customize Drush
Acquia
A Big, Fast and Persistent Queue
A Big, Fast and Persistent QueueA Big, Fast and Persistent Queue
A Big, Fast and Persistent Queue
William Yang
Carl ignite osm
Carl ignite osmCarl ignite osm
Carl ignite osm
carlschroedl
Introduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange CountyIntroduction to Docker at Glidewell Laboratories in Orange County
Introduction to Docker at Glidewell Laboratories in Orange County
J辿r担me Petazzoni

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

maven-for-maine-jug-090226091601-phpapp02.ppt
maven-for-maine-jug-090226091601-phpapp02.pptmaven-for-maine-jug-090226091601-phpapp02.ppt
maven-for-maine-jug-090226091601-phpapp02.ppt
nikhilmahendranath1
Container security
Container securityContainer security
Container security
Anthony Chow
What You Should Know About Container Security
What You Should Know About Container SecurityWhat You Should Know About Container Security
What You Should Know About Container Security
All Things Open
Java one 2015 - v1
Java one   2015 - v1Java one   2015 - v1
Java one 2015 - v1
Michael Dawson
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Artefactual Systems - AtoM
Good - aDocker - Reference Materials.pdf
Good - aDocker - Reference Materials.pdfGood - aDocker - Reference Materials.pdf
Good - aDocker - Reference Materials.pdf
Kiran Kumar Bugude
Docker Ecosystem on Azure
Docker Ecosystem on AzureDocker Ecosystem on Azure
Docker Ecosystem on Azure
Patrick Chanezon
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
Eric Smalling
Updates
UpdatesUpdates
Updates
Isa Ansharullah
Updates
UpdatesUpdates
Updates
Isa Ansharullah
JetBrains Day Seoul - Exploring .NETs memory management a trip down memory...
JetBrains Day Seoul - Exploring .NETs memory management  a trip down memory...JetBrains Day Seoul - Exploring .NETs memory management  a trip down memory...
JetBrains Day Seoul - Exploring .NETs memory management a trip down memory...
Maarten Balliauw
Slackware Demystified [SELF 2011]
Slackware Demystified [SELF 2011]Slackware Demystified [SELF 2011]
Slackware Demystified [SELF 2011]
Vincent Batts
Shorten Device Boot Time for Automotive IVI and Navigation Systems
Shorten Device Boot Time for Automotive IVI and Navigation SystemsShorten Device Boot Time for Automotive IVI and Navigation Systems
Shorten Device Boot Time for Automotive IVI and Navigation Systems
National Cheng Kung University
The Ball Content Sync with Device Client
The Ball Content Sync with Device ClientThe Ball Content Sync with Device Client
The Ball Content Sync with Device Client
Kallex
Hyper v r2 deep dive
Hyper v r2 deep diveHyper v r2 deep dive
Hyper v r2 deep dive
Concentrated Technology
Jump into Squeak - Integrate Squeak projects with Docker & Github
Jump into Squeak - Integrate Squeak projects with Docker & GithubJump into Squeak - Integrate Squeak projects with Docker & Github
Jump into Squeak - Integrate Squeak projects with Docker & Github
hubx
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
Rafael Konlechner
Data hiding and finding on Linux
Data hiding and finding on LinuxData hiding and finding on Linux
Data hiding and finding on Linux
Anton Chuvakin
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinar
Maarten Balliauw
DotNetFest - Lets refresh our memory! Memory management in .NET
DotNetFest - Lets refresh our memory! Memory management in .NETDotNetFest - Lets refresh our memory! Memory management in .NET
DotNetFest - Lets refresh our memory! Memory management in .NET
Maarten Balliauw
maven-for-maine-jug-090226091601-phpapp02.ppt
maven-for-maine-jug-090226091601-phpapp02.pptmaven-for-maine-jug-090226091601-phpapp02.ppt
maven-for-maine-jug-090226091601-phpapp02.ppt
nikhilmahendranath1
Container security
Container securityContainer security
Container security
Anthony Chow
What You Should Know About Container Security
What You Should Know About Container SecurityWhat You Should Know About Container Security
What You Should Know About Container Security
All Things Open
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Project Documentation with Sphinx (or, How I Learned to Stop Worrying and Lov...
Artefactual Systems - AtoM
Good - aDocker - Reference Materials.pdf
Good - aDocker - Reference Materials.pdfGood - aDocker - Reference Materials.pdf
Good - aDocker - Reference Materials.pdf
Kiran Kumar Bugude
Docker Ecosystem on Azure
Docker Ecosystem on AzureDocker Ecosystem on Azure
Docker Ecosystem on Azure
Patrick Chanezon
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
IBM Index 2018 Conference Workshop: Modernizing Traditional Java App's with D...
Eric Smalling
JetBrains Day Seoul - Exploring .NETs memory management a trip down memory...
JetBrains Day Seoul - Exploring .NETs memory management  a trip down memory...JetBrains Day Seoul - Exploring .NETs memory management  a trip down memory...
JetBrains Day Seoul - Exploring .NETs memory management a trip down memory...
Maarten Balliauw
Slackware Demystified [SELF 2011]
Slackware Demystified [SELF 2011]Slackware Demystified [SELF 2011]
Slackware Demystified [SELF 2011]
Vincent Batts
Shorten Device Boot Time for Automotive IVI and Navigation Systems
Shorten Device Boot Time for Automotive IVI and Navigation SystemsShorten Device Boot Time for Automotive IVI and Navigation Systems
Shorten Device Boot Time for Automotive IVI and Navigation Systems
National Cheng Kung University
The Ball Content Sync with Device Client
The Ball Content Sync with Device ClientThe Ball Content Sync with Device Client
The Ball Content Sync with Device Client
Kallex
Jump into Squeak - Integrate Squeak projects with Docker & Github
Jump into Squeak - Integrate Squeak projects with Docker & GithubJump into Squeak - Integrate Squeak projects with Docker & Github
Jump into Squeak - Integrate Squeak projects with Docker & Github
hubx
Data hiding and finding on Linux
Data hiding and finding on LinuxData hiding and finding on Linux
Data hiding and finding on Linux
Anton Chuvakin
Exploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinarExploring .NET memory management - JetBrains webinar
Exploring .NET memory management - JetBrains webinar
Maarten Balliauw
DotNetFest - Lets refresh our memory! Memory management in .NET
DotNetFest - Lets refresh our memory! Memory management in .NETDotNetFest - Lets refresh our memory! Memory management in .NET
DotNetFest - Lets refresh our memory! Memory management in .NET
Maarten Balliauw

Recently uploaded (20)

EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
farooq048kp
microsoft office 2019 crack free download
microsoft office 2019 crack free downloadmicrosoft office 2019 crack free download
microsoft office 2019 crack free download
mohsinrazakpa39
Building-Your-Professional-Website-No-Coding-Required
Building-Your-Professional-Website-No-Coding-RequiredBuilding-Your-Professional-Website-No-Coding-Required
Building-Your-Professional-Website-No-Coding-Required
Ozias Rondon
Movavi Screen Recorder Studio 2025 crack Free Download
Movavi Screen Recorder Studio 2025 crack Free DownloadMovavi Screen Recorder Studio 2025 crack Free Download
Movavi Screen Recorder Studio 2025 crack Free Download
imran03kr
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
jackalen173
AR/VR Company in India - Simulanis.com
AR/VR Company in India  -  Simulanis.comAR/VR Company in India  -  Simulanis.com
AR/VR Company in India - Simulanis.com
mdashraf329911
Oracle Database administration Security PPT
Oracle Database administration Security PPTOracle Database administration Security PPT
Oracle Database administration Security PPT
pshankarnarayan
Clip Studio Paint EX Download (Latest 2025)
Clip Studio Paint EX Download (Latest 2025)Clip Studio Paint EX Download (Latest 2025)
Clip Studio Paint EX Download (Latest 2025)
mohsinrazakpa79
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
blouch36kp
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
E-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdfE-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdf
sandeepjangidimg
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
mORMot 2 - Pascal Cafe 2025 in Nederlands
mORMot 2 - Pascal Cafe 2025 in NederlandsmORMot 2 - Pascal Cafe 2025 in Nederlands
mORMot 2 - Pascal Cafe 2025 in Nederlands
Arnaud Bouchez
UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]
umeerbinfaizan
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: OverviewChoreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
IObit Driver Booster Pro 12.3.0.557 Free
IObit Driver Booster Pro 12.3.0.557 FreeIObit Driver Booster Pro 12.3.0.557 Free
IObit Driver Booster Pro 12.3.0.557 Free
mohsinrazakpa95
6 Best AI Tools for Contract Management.pdf
6 Best AI Tools for Contract Management.pdf6 Best AI Tools for Contract Management.pdf
6 Best AI Tools for Contract Management.pdf
Anadea
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Microsoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free DownloadMicrosoft Office Crack 2019 Free Download
Microsoft Office Crack 2019 Free Download
tayab01kp
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
farooq048kp
microsoft office 2019 crack free download
microsoft office 2019 crack free downloadmicrosoft office 2019 crack free download
microsoft office 2019 crack free download
mohsinrazakpa39
Building-Your-Professional-Website-No-Coding-Required
Building-Your-Professional-Website-No-Coding-RequiredBuilding-Your-Professional-Website-No-Coding-Required
Building-Your-Professional-Website-No-Coding-Required
Ozias Rondon
Movavi Screen Recorder Studio 2025 crack Free Download
Movavi Screen Recorder Studio 2025 crack Free DownloadMovavi Screen Recorder Studio 2025 crack Free Download
Movavi Screen Recorder Studio 2025 crack Free Download
imran03kr
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
Bandicut Video Cutter v3.6.8.709 Crack [April-2025]
jackalen173
AR/VR Company in India - Simulanis.com
AR/VR Company in India  -  Simulanis.comAR/VR Company in India  -  Simulanis.com
AR/VR Company in India - Simulanis.com
mdashraf329911
Oracle Database administration Security PPT
Oracle Database administration Security PPTOracle Database administration Security PPT
Oracle Database administration Security PPT
pshankarnarayan
Clip Studio Paint EX Download (Latest 2025)
Clip Studio Paint EX Download (Latest 2025)Clip Studio Paint EX Download (Latest 2025)
Clip Studio Paint EX Download (Latest 2025)
mohsinrazakpa79
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
Internet Download Manager (IDM) Crack + Lisence key Latest version 2025
blouch36kp
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio Webinar | Inside Deepseek 3FS: A Deep Dive into AI-Optimized Distribu...
Alluxio, Inc.
E-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdfE-commerce App Development cost in 2025.pdf
E-commerce App Development cost in 2025.pdf
sandeepjangidimg
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
mORMot 2 - Pascal Cafe 2025 in Nederlands
mORMot 2 - Pascal Cafe 2025 in NederlandsmORMot 2 - Pascal Cafe 2025 in Nederlands
mORMot 2 - Pascal Cafe 2025 in Nederlands
Arnaud Bouchez
UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]UniFab Crack 2025 Key Full Version [Latest]
UniFab Crack 2025 Key Full Version [Latest]
umeerbinfaizan
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: OverviewChoreo - The AI-Native Internal Developer Platform as a Service: Overview
Choreo - The AI-Native Internal Developer Platform as a Service: Overview
WSO2
IObit Driver Booster Pro 12.3.0.557 Free
IObit Driver Booster Pro 12.3.0.557 FreeIObit Driver Booster Pro 12.3.0.557 Free
IObit Driver Booster Pro 12.3.0.557 Free
mohsinrazakpa95
6 Best AI Tools for Contract Management.pdf
6 Best AI Tools for Contract Management.pdf6 Best AI Tools for Contract Management.pdf
6 Best AI Tools for Contract Management.pdf
Anadea

Crate Shared Nothing Web Backends - Web Backend Meetup May 2014