the database as a value
play

The Database as a Value Rich Hickey What is Datomic? A functional - PowerPoint PPT Presentation

The Database as a Value Rich Hickey What is Datomic? A functional database A sound model of information, with time Provides database as a value to applications Bring declarative programming to applications Focus on reducing


  1. The Database as a Value Rich Hickey

  2. What is Datomic? • A functional database • A sound model of information, with time • Provides database as a value to applications • Bring declarative programming to applications • Focus on reducing complexity

  3. DB Complexity • Stateful, inherently • Same query, different results • no basis • Over there • ‘Update’ poorly defined • Places

  4. Manifestations • Wrong programs • Scaling problems • Round-trip fears • Fear of overloading server • Coupling, e.g. questions with reporting

  5. Coming to Terms Value State • An immutable • Value of an identity at a magnitude, quantity, moment in time number... or immutable Time composite thereof • Relative before/after Identity ordering of causal values • A putative entity we associate with a series of causally related values (states) over time

  6. Epochal Time Model Process events (pure functions) F F F v1 v2 v3 v4 States Identity (immutable values) (succession of states) Observers/perception/memory

  7. Implementing Values • Persistent data structures • Trees • Structural sharing

  8. Structural Sharing Next Past

  9. Place Model Process events Transactions (pure functions) F F F The Database Place Identity DB (succession of Connection states) Observers/perception/memory Queries

  10. Epochal Time Model Process events Transactions (pure functions) F F F v1 v2 v3 v4 States DB Values Identity (immutable values) DB (succession of Connection states) Observers/perception/memory Queries

  11. 2 Notions of DB

  12. 2 Notions of DB • Database system • facilitates the process of creating, sharing, growing db values • a machine • has identity

  13. 2 Notions of DB • Database system • facilitates the process of creating, sharing, growing db values • a machine • has identity • Database values • the things with which we compute

  14. DB as Process Novelty Computation Request DB fn(?) Process Result

  15. DB as Process Novelty Computation Request DB fn(?) Process Result What’s allowed? Reproducible results? How to use more than one db?

  16. Functional DB Process Novelty DB Process DB Values

  17. Functional DB Process Novelty DB Process DB Values Where’s computation?

  18. Functional DB Process Novelty DB Process DB Values Where’s computation? Separate from process!

  19. Functional DB Computation

  20. Functional DB Computation DB Value Result fn(db)

  21. Functional DB Computation DB Value DB Value Result fn(db, db) fn(db)

  22. Functional DB Computation DB Value DB DB Value Result Value fn(db, db) fn(db)

  23. Value Propositions • Just data • language-independent • aggregate, compose • Persistent data structures • alias freedom • efficient incremental ‘change’

  24. One Structure, Many Functions • Datalog queries • Other query langs • Direct index access • seek + scan • Entity navigation

  25. Speculation • What-if scenarios • Just drop to backtrack • Datomic’s “with” dbval tx-data -> dbval • Try before you buy/transact • Tree propagation

  26. Time Travel • Accretive values contain all history • Query as-of and/or since a point in time • Query across time

  27. Testing • Flowing connections around, ugh ambient connection pool no different • Reproducibility • Values can easily be fabricated/generated

  28. Stable Bases //Peer Database db = connection.db().asOf(1000); Peer.q(aQuery, db); basis //Client GET /data/mem/test/1000/datoms?index=aevt • Same query, same results • db permalinks! • communicable, recoverable • Multiple conversations about same value

  29. Datomic Datalog • dbs are arguments to query, not implicit q(query, db1, db2, otherInputs ...); {:find [?customer ?product] :where [[?customer :shipAddress ?addr] [?addr :zip ?zip] [?product :product/weight ?weight] [?product :product/price ?price] [(Shipping/estimate ?zip ?weight) ?shipCost] [(<= ?price ?shipCost)]]}

  30. DB Values • Time travel and more • db.asOf - past, db.since - windowed • db.with(tx) - speculative • db.filter(pred) - slice • mock with datom-shaped data: [[:fred :likes "Pizza"] [:sally :likes "Ice cream"]]

  31. Implementation

  32. Traditional Database App Process ORM? App Caching policy? Strings DDL + DML Serialized Serialized Result Sets ??? ??? cache Server Trans- Indexing actions Query I/O Disk

  33. The Choices • Coordination • how much, and where? • process requires it • perception shouldn’t • Immutability • sine qua non

  34. Approach • Move to information model • Split process and perception • Immutable basis in storage • Novelty in memory

  35. Information • Inform • ‘to convey knowledge via facts’ • ‘give shape to (the mind)’ • Information • the facts

  36. Facts • Fact - ‘an event or thing known to have happened or existed’ • From: factum - ‘something done’ • Must include time • Remove structure (a la RDF) • Atomic Datom • Entity/Attribute/Value/Transaction

  37. Database State • The database as an expanding value • An accretion of facts • The past doesn’t change - immutable • Process requires new space • Fundamental move away from places

  38. Accretion • Root per transaction doesn’t work • Latest values include past as well • The past is sub-range • Important for information model

  39. Datomic Architecture App Server Process App Server Process App Server Process Peer Lib Peer Lib Peer Lib App App Query App Query Query Live Comm Cache Live Index Comm Cache Live Index Comm Cache Index Data Segments memcached cluster (optional) Storage Service Transactor Transactor Trans- Data Segments Indexing Trans- actions Segment storage Redundant Indexing actions segment storage standby

  40. Indexing • Maintaining sort live in storage - bad • BigTable et al: • Accumulate novelty in memory • Current view: mem + storage merge • Occasional integrate mem into storage Releases memory

  41. Transactions and Indexing Trans- actions Log Data Segments Novelty Live Storage Index Index Data Segments Index Merging

  42. Perception Novelty Index Data Segments Live Storage Index

  43. Process • Reified • Primitive representation of novelty • Assertions and retractions of facts • Minimal • Other transformations expand into those

  44. Process • Assert/retract can’t express transformation • Transaction function: (f db & args) -> tx-data • tx-data: assert|retract|(tx-fn args...) • Expand/splice until all assert/retracts

  45. Process Expansion + + - foo - + + + + - bar baz - + + + + - + + + - + - + + ...

  46. Memory Index • Persistent sorted set • Large internal nodes • Pluggable comparators • 2 sorts always maintained • EAVT, AEVT • plus AVET, VAET

  47. Storage • Log of tx asserts/retracts (in tree) • Various covering indexes (trees) • Storage service/server requirements • Data segment values (K->V) • atoms (consistent read) • pods (conditional put)

  48. Index in Storage Identity Index ref T EAVT AEVT VeAET AVET Lucene 42 Index Root of key->dir Value dirs Sorted segs Datoms

  49. What’s in a DB Value? Identity Memory index (live window) db atom db value live Storage index history nextT asOfT sinceT Lucene index Storage-backed index live Lucene Roots EAVT AEVT VeAET t Value Hierarchical Cache

  50. Functional DB Benefits • Epochal state • Coordination only for process • Transactions well defined • Functional accretion • Freedom to relocate/scale storage, query • Extensive caching • Process events

  51. Thanks for Listening!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend