Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Datomic Spotlight
Search
Amitay Horwitz
August 24, 2017
Programming
0
93
Datomic Spotlight
Amitay Horwitz
August 24, 2017
Tweet
Share
More Decks by Amitay Horwitz
See All by Amitay Horwitz
Transducers
amitayh
0
43
Building event sourced systems with Kafka Streams
amitayh
1
920
Event Sourcing with Kafka Streams
amitayh
1
1k
TDD For The Curious
amitayh
0
280
Other Decks in Programming
See All in Programming
Javaに鉄道指向プログラミング (Railway Oriented Pro gramming) のエッセンスを取り入れる/Bringing the Essence of Railway-Oriented Programming to Java
cocet33000
2
580
今ならAmazon ECSのサービス間通信をどう選ぶか / Selection of ECS Interservice Communication 2025
tkikuc
11
2.6k
GraphRAGの仕組みまるわかり
tosuri13
7
440
LINEヤフー データグループ紹介
lycorp_recruit_jp
0
760
AIコーディング道場勉強会#2 君(エンジニア)たちはどう生きるか
misakiotb
1
240
都市をデータで見るってこういうこと PLATEAU属性情報入門
nokonoko1203
1
540
データベースコネクションプール(DBCP)の変遷と理解
fujikawa8
1
270
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
2
540
プロダクト開発でも使おう 関数のオーバーロード
yoiwamoto
0
160
Effect の双対、Coeffect
yukikurage
5
1.4k
GoのWebAssembly活用パターン紹介
syumai
3
10k
Java on Azure で LangGraph!
kohei3110
0
160
Featured
See All Featured
The Language of Interfaces
destraynor
158
25k
Making the Leap to Tech Lead
cromwellryan
134
9.3k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
920
Code Review Best Practice
trishagee
68
18k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
20
1.3k
Designing for Performance
lara
609
69k
YesSQL, Process and Tooling at Scale
rocio
173
14k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
16
940
Git: the NoSQL Database
bkeepers
PRO
430
65k
Become a Pro
speakerdeck
PRO
28
5.4k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
Transcript
DATOMIC @amitayh THE FUNCTIONAL DATABASE
FULL DISCLOSURE ⚠
ABOUT DATOMIC • Developed by Cognitect • Initial release 2012
• Designed by Rich Hickey (author of the Clojure programming language) • Used by Facebook, Netflix, more…
FACTS ✅
FACTS • “Abraham Lincoln is the president of the United
States”
FACTS • “Abraham Lincoln is the president of the United
States” • “Abraham Lincoln was elected president of the United States on March 4, 1861”
FACTS • Abraham Lincoln • Position • President • March
4, 1861 Entity Attribute Value Timestamp
FACT = DATOM Entity Attribute Value Tx Operation
FACT = DATOM Entity Attribute Value Tx Operation 1033 :first-name
"Abraham" 260 add 1033 :last-name "Lincoln" 260 add 1033 :position "Lawyer" 277 add
FACT = DATOM Entity Attribute Value Tx Operation 1033 :first-name
"Abraham" 260 add 1033 :last-name "Lincoln" 260 add 1033 :position "Lawyer" 277 add 1033 :position "President" 522 add
FACT = DATOM Entity Attribute Value Tx Operation 1033 :first-name
"Abraham" 260 add 1033 :last-name "Lincoln" 260 add 1033 :position "Lawyer" 277 add 1033 :position "President" 522 add 1033 :position "President" 881 retract
FACT BASED MODEL Facts Facts Facts Facts Facts Facts Facts
Facts Time Facts Facts Time
GIT Facts Facts Facts Facts Objects Facts Facts Objects Time
Facts Objects Time
A DATABASE • A collection of datoms • At a
specific point in time • An immutable value
DATABASE AS A VALUE • Same as 42 is a
value • Safe to share, easy to reason about • Functions that take a database as an argument, or return a database
TIME BUILT IN • Get the database value as of,
or since, a point in time • See how the database would have looked like as if certain transactions took place • Reactive transaction reports
QUERIES
DATALOG • Equivalent to relational model + recursion • Declarative,
expressive and powerful • Pattern matching style • No more string concatenation!
EXAMPLE DATABASE Entity Attribute Value 42 :email
[email protected]
43 :email
[email protected]
42 :orders 107 42 :orders 141
DATA PATTERN Constrains the results returned, binds variables: [?customer :email
?email] Attribute Value Entity
DATA PATTERN Constrains the results returned, binds variables: [?customer :email
?email] Constant Variable Variable
Entity Attribute Value 42 :email
[email protected]
43 :email
[email protected]
42
:orders 107 42 :orders 141 “Find all customers with emails” [?customer :email ?email]
Entity Attribute Value 42 :email
[email protected]
43 :email
[email protected]
42
:orders 107 42 :orders 141 “Find a particular customer’s email” [42 :email ?email]
Entity Attribute Value 42 :email
[email protected]
43 :email
[email protected]
42
:orders 107 42 :orders 141 “What attributes does 42 have?” [42 ?attribute]
Entity Attribute Value 42 :email
[email protected]
43 :email
[email protected]
42
:orders 107 42 :orders 141 “What attributes and values does 42 have?” [42 ?attribute ?value]
WHERE CLAUSE [:find ?customer :where [?customer :email]] Data pattern
FIND CLAUSE [:find ?customer :where [?customer :email]]
IMPLICIT JOIN [:find ?customer :where [?customer :email] [?customer :orders]] “Find
all the customers who have placed orders”
PREDICATES [:find ?item :where [?item :item/price ?price] [(< 50 ?price)]]
“Find the expensive items”
CALLING FUNCTIONS [:find ?customer ?product :where [?customer :ship-address ?addr] [?adde
:zip ?zip] [?product :product/weight ?weight] [?product :product/price ?price] [(Shipping/estimate ?zip ?weight) ?ship-cost] [(<= ?price ?ship-cost)]] “Find me the customer/product combinations where the shipping cost dominates the product cost”
ARCHITECTURE
DATABASE ROLES • Queries • Transactions • Consistency • Storage
BREAK DOWN
DATOMIC COMPONENTS Peer library Transactor Storage
PEER LIBRARY Transactor Storage Peer library Your app • Embedded
in your app • Executed queries locally
Peer library Your app cache PEER LIBRARY Transactor Storage •
Reads data from storage • Caches locally
Peer library Your app cache Peer library Your app cache
Peer library Your app cache SCALE HORIZONTALLY Transactor Storage
TRANSACTOR Transactor Storage Peer library Your app • Standalone service
• Scales vertically
Transactor TRANSACTOR Transactor Storage Peer library Your app • Standalone
service • Scales vertically • Hot standby for failover
Transactor TRANSACTOR Storage Peer library Your app • Coordinates writes
• Guarantees ACID transactions (isolation level “serializable”)
Storage Transactor TRANSACTOR Peer library Your app • Writes transaction
log to storage • Generates indices
Peer library Your app cache Peer library Your app cache
Peer library Your app cache Storage Transactor TRANSACTOR • Broadcasts live updates
STORAGE Transactor Storage Peer library Your app • Provided as
a service • Many different backends
LOCAL STORAGE Transactor Storage Peer library Your app • Memory
• Filesystem • Great for testing!
NEARBY STORAGE Transactor Storage Peer library Your app • SQL
database (any JDBC)
DISTRIBUTED STORAGE ☁ Transactor Storage Peer library Your app •
DynamoDB • Riak • CouchBase • Cassandra • …
Peer library Your app cache Peer library Your app cache
Peer library Your app cache SHARED MEMCACHED Transactor Storage Memcached
EVENT SOURCING? • Datomic is lower level - facts vs
events • Annotate transactions! • Querying already built in • Listen on transaction queue to build reactive systems
Q&A
RESOURCES • http://www.datomic.com/ • Intro to Datomic by Rich Hickey
- http://wix.to/b8CQABU • The Value of Values by Rich Hickey - http://wix.to/D8CRABU • Datomic Datalog - http://wix.to/cMCQABU