Slide 1

Slide 1 text

RethinkDB The database for the realtime web ForwardJS San Francisco, California July 30, 2015

Slide 2

Slide 2 text

Jorge Silva @thejsj Developer Evangelist @ RethinkDB

Slide 3

Slide 3 text

Schedule 1. What is RethinkDB? 2. RethinkDB query language 3. Working with changefeeds 4. Using RethinkDB with Node.js 5. Tutorial: Building a chat app

Slide 4

Slide 4 text

Introduction What is RethinkDB?

Slide 5

Slide 5 text

What is RethinkDB? • Open source database for building realtime web applications • NoSQL database that stores schemaless JSON documents • Distributed database that is easy to scale

Slide 6

Slide 6 text

Built for Realtime Apps • Subscribe to change notifications from database queries (changefeeds) • No more polling — the database pushes changes to your app • Reduce the amount of plumbing needed to stream live updates

Slide 7

Slide 7 text

Built for Realtime Apps • Having your database push changes keeps your database as the central source of truth • Having a central source of truth simplifies your architecture

Slide 8

Slide 8 text

Power and Convenience • Highly expressive query language • Relational features like table joins • Powerful admin UI with point- and-click cluster management

Slide 9

Slide 9 text

RethinkDB Structure Database → Table → Document MySQL: Database → Table → Row MongoDB: Database → Collection → Document

Slide 10

Slide 10 text

Sample Document { "name": "Will Riker", "position": "Commander", "height": 193, "birthdate": Mon Aug 19 2335, "ships": [ { "name": "USS Pegasus" }, { "name": "USS Potemkin" }, { "name": "USS Enterprise" }, ], ... }

Slide 11

Slide 11 text

Differences with Firebase • Firebase is a cloud service, not an open-source database • Because Firebase is not a database, it has limited querying abilities • Firebase is made to be queried from the browser

Slide 12

Slide 12 text

Differences with MongoDB • RethinkDB supports joins and subqueries • MongoDB only supports the traditional query-response model. You can't subscribe to queries.

Slide 13

Slide 13 text

Introduction to ReQL RethinkDB query language

Slide 14

Slide 14 text

Introduction to ReQL • ReQL embeds natively into your programming language • Compose ReQL queries by chaining commands

Slide 15

Slide 15 text

Anatomy of a ReQL Query r.table("users") .pluck("last_name") .distinct().count() Number of unique last names

Slide 16

Slide 16 text

Anatomy of a ReQL Query r.table("users") .pluck("last_name") .distinct().count() Access a database table

Slide 17

Slide 17 text

Anatomy of a ReQL Query r.table("users") .pluck("last_name") .distinct().count() Isolate a document property

Slide 18

Slide 18 text

Anatomy of a ReQL Query r.table("users") .pluck("last_name") .distinct().count() Consolidate duplicate values

Slide 19

Slide 19 text

Anatomy of a ReQL Query r.table("users") .pluck("last_name") .distinct().count() Display the number of items

Slide 20

Slide 20 text

Sample ReQL Queries r.table("users") .filter(r.row("age").gt(30)) r.table(“posts") .eqJoin(“userId”, r.table(“users”)) .zip() r.table("posts") .filter({status: "draft"}) .update({status: "published"})

Slide 21

Slide 21 text

ReQL Commands • Transformations: map, orderBy, skip, limit, slice • Aggregations: group, reduce, count, sum, avg, min, max, distinct, contains • Documents: row, pluck, without, merge, append, difference, keys, hasFields, spliceAt • Writing: insert, update, replace, delete • Control: forEach, range, branch, do, coerceTo, expr

Slide 22

Slide 22 text

ReQL Commands • Transformations: map, orderBy, skip, limit, slice • Aggregations: group, reduce, count, sum, avg, min, max, distinct, contains • Documents: row, pluck, without, merge, append, difference, keys, hasFields, spliceAt • Writing: insert, update, replace, delete • Control: forEach, range, branch, do, coerceTo, expr

Slide 23

Slide 23 text

ReQL Commands • Transformations: map, orderBy, skip, limit, slice • Aggregations: group, reduce, count, sum, avg, min, max, distinct, contains • Documents: row, pluck, without, merge, append, difference, keys, hasFields, spliceAt • Writing: insert, update, replace, delete • Control: forEach, range, branch, do, coerceTo, expr

Slide 24

Slide 24 text

ReQL Commands • Transformations: map, orderBy, skip, limit, slice • Aggregations: group, reduce, count, sum, avg, min, max, distinct, contains • Documents: row, pluck, without, merge, append, difference, keys, hasFields, spliceAt • Writing: insert, update, replace, delete • Control: forEach, range, branch, do, coerceTo, expr

Slide 25

Slide 25 text

ReQL Commands • Transformations: map, orderBy, skip, limit, slice • Aggregations: group, reduce, count, sum, avg, min, max, distinct, contains • Documents: row, pluck, without, merge, append, difference, keys, hasFields, spliceAt • Writing: insert, update, replace, delete • Control: forEach, range, branch, do, coerceTo, expr

Slide 26

Slide 26 text

Understanding ReQL • All queries are executed by the database, not the client • Client driver translates ReQL queries into wire protocol • In JS use e.g. the mul and gt commands instead of the normal operators

Slide 27

Slide 27 text

Additional ReQL Features • Geospatial indexing for location- based queries • Date and time functions • Support for storing binary objects • Execute http requests using r.http

Slide 28

Slide 28 text

Installation http://rethinkdb.com/install

Slide 29

Slide 29 text

Running Queries https://github.com/thejsj/rethinkdb-workshop

Slide 30

Slide 30 text

Running Queries http://localhost:8080/ http://rethinkdb.thejsj.com:8080/

Slide 31

Slide 31 text

Realtime Updates Working with Changefeeds

Slide 32

Slide 32 text

Subscribe to change notifications on database queries Changefeeds

Slide 33

Slide 33 text

r.table("users").changes() Track changes on the users table Changefeeds

Slide 34

Slide 34 text

Changefeeds • The changes command returns a cursor that receives updates • Each update includes the new and old value of the modified record

Slide 35

Slide 35 text

Changefeeds r.table("users").changes() r.table("users") .insert({name: "Bob"}) Changefeed output: { new_val: { id: '362ae837-2e29-4695-adef-4fa415138f90', name: 'Bob', ... }, old_val: null }

Slide 36

Slide 36 text

Changefeeds r.table("users").changes() r.table("users") .filter({name: "Bob"}).delete() Changefeed output: { new_val: null, old_val: { id: '362ae837-2e29-4695-adef-4fa415138f90', name: 'Bob', ... } }

Slide 37

Slide 37 text

Changefeeds r.table("users").changes() r.table("users") .get("362ae837-2e29-4695-adef-4fa415138f90") .update({name: "Bobbby"}) Changefeed output: { new_val: { id: '362ae837-2e29-4695-adef-4fa415138f90', name: 'Bobby' }, old_val: { id: '362ae837-2e29-4695-adef-4fa415138f90', name: 'Bob' } }

Slide 38

Slide 38 text

Changefeeds r.table("players") .orderBy({index: r.desc("score")}) .limit(3).changes() Track top three players by score Chain the changes command to an actual ReQL query:

Slide 39

Slide 39 text

Changefeeds r.table("table").get(ID).changes() r.table("table").getAll(ID).changes() r.table("table").between(X, Y).changes() r.table("table").pluck(X, Y, Z).changes() r.table("table").filter(CONDITION).changes() r.table("table").union(ID).changes() r.table("table").map(FUNCTION).changes() r.table("table").min(INDEX).changes() r.table("table").max(INDEX).changes() r.table("table").orderBy(INDEX) .limit(N).changes() Commands that currently work with changefeeds:

Slide 40

Slide 40 text

Using Changefeeds

Slide 41

Slide 41 text

Building Web Apps Using RethinkDB in Node

Slide 42

Slide 42 text

Client Driver • Use a RethinkDB client driver to access the database in your app • Official drivers available for Ruby, Python, and JavaScript • Third-party drivers available for other languages like Go and Clojure

Slide 43

Slide 43 text

> Client Driver Install the JS client driver from npm in your Node.js project: $ npm install rethinkdb --save

Slide 44

Slide 44 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob”}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); Add Bob to the “users” table

Slide 45

Slide 45 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob"}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); Import the RethinkDB module

Slide 46

Slide 46 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob”}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); Connect to the database

Slide 47

Slide 47 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob”}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); ReQL query that inserts a record

Slide 48

Slide 48 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob”}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); Run the query on a connection

Slide 49

Slide 49 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob"}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }); Display query response

Slide 50

Slide 50 text

Client Driver var r = require("rethinkdb"); r.connect().then(function(conn) { return r.table("users") .insert({name: “Bob"}).run(conn) .finally(function () { conn.close(); }); }).then(function(output) { console.log(output); }).error(function(err) { console.log("Failed:", err); }); Handle errors emitted by Promise

Slide 51

Slide 51 text

Using Changefeeds r.connect().then(function(conn) { return r.table("fellowship") .changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, item) { console.log(item); }); }); Display every change on the “fellowship” table

Slide 52

Slide 52 text

Using Changefeeds Attach a changefeed to the table r.connect().then(function(conn) { return r.table("fellowship") .changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, item) { console.log(item); }); });

Slide 53

Slide 53 text

Using Changefeeds Iterate over every value passed into the cursor r.connect().then(function(conn) { return r.table("fellowship") .changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, item) { console.log(item); }); });

Slide 54

Slide 54 text

Using Changefeeds r.connect().then(function(conn) { return r.table("fellowship") .changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, item) { console.log(item); }); }); Display received changes in the console

Slide 55

Slide 55 text

Using Socket.io • Powerful framework for realtime client/server communication • Supports WebSockets, long polling, and other transports • Lets you send JSON messages between your app and frontend

Slide 56

Slide 56 text

Socket.io (Server) var sockio = require("socket.io"); var app = require("express")(); var r = require("rethinkdb"); var io = sockio.listen(app.listen(8090)); r.connect().then(function(conn) { return r.table("players") .orderBy({index: r.desc("score")}) .limit(5).changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, data) { io.sockets.emit("update", data); }); }); Broadcast score changes over Socket.io

Slide 57

Slide 57 text

Socket.io (Server) var sockio = require("socket.io"); var app = require("express")(); var r = require("rethinkdb"); var io = sockio.listen(app.listen(8090)); r.connect().then(function(conn) { return r.table("players") .orderBy({index: r.desc("score")}) .limit(5).changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, data) { io.sockets.emit("update", data); }); }); Load the Socket.io module

Slide 58

Slide 58 text

Socket.io (Server) var sockio = require("socket.io"); var app = require("express")(); var r = require("rethinkdb"); var io = sockio.listen(app.listen(8090)); r.connect().then(function(conn) { return r.table("players") .orderBy({index: r.desc("score")}) .limit(5).changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, data) { io.sockets.emit("update", data); }); }); Instantiate Socket.io server

Slide 59

Slide 59 text

Socket.io (Server) var sockio = require("socket.io"); var app = require("express")(); var r = require("rethinkdb"); var io = sockio.listen(app.listen(8090)); r.connect().then(function(conn) { return r.table("players") .orderBy({index: r.desc("score")}) .limit(5).changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, data) { io.sockets.emit("update", data); }); }); Attach a changefeed to the query

Slide 60

Slide 60 text

Socket.io (Server) var sockio = require("socket.io"); var app = require("express")(); var r = require("rethinkdb"); var io = sockio.listen(app.listen(8090)); r.connect().then(function(conn) { return r.table("players") .orderBy({index: r.desc("score")}) .limit(5).changes().run(conn); }) .then(function(cursor) { cursor.each(function(err, data) { io.sockets.emit("update", data); }); }); Broadcast updates to all Socket.io connections

Slide 61

Slide 61 text

Socket.io (Client) Real-time web app var socket = io.connect(); socket.on("update", function(data) { console.log("Update:", data); }); Receive Socket.io updates on frontend

Slide 62

Slide 62 text

Socket.io (Client) Real-time web app var socket = io.connect(); socket.on("update", function(data) { console.log("Update:", data); }); Load the Socket.io client script

Slide 63

Slide 63 text

Socket.io (Client) Real-time web app var socket = io.connect(); socket.on("update", function(data) { console.log("Update:", data); }); Connect to the Socket.io server

Slide 64

Slide 64 text

Socket.io (Client) Real-time web app var socket = io.connect(); socket.on("update", function(data) { console.log("Update:", data); }); Create handler for “update” messages

Slide 65

Slide 65 text

Socket.io (Client) Real-time web app var socket = io.connect(); socket.on("update", function(data) { console.log("Update:", data); }); Display update in browser console

Slide 66

Slide 66 text

Tutorial: Building a chat app

Slide 67

Slide 67 text

#1: Clone the repository Clone From GitHub: git clone https://github.com/thejsj/ rethinkdb-workshop.git Download Tarball: https://github.com/thejsj/rethinkdb- workshop/tarball/master

Slide 68

Slide 68 text

#2: Install Dependencies // Go to the project directory cd rethinkdb-workshop // Install dependencies npm install

Slide 69

Slide 69 text

#3: Go to config/default.js Update your RethinkDB database configuration var config = { "rethinkdb": { "host": "localhost", // or rethinkdb.thejsj.com "port": 28015, "db" : "rethinkdb_workshop" // or GITHUB_HANDLE_rethinkdb_workshop },

Slide 70

Slide 70 text

#4: Run Server // Start server npm run dev // or `node server`

Slide 71

Slide 71 text

#4: Go to server/index.js Look for the comments in order to write the correct ReQL queries // Step 1 // Write a query

Slide 72

Slide 72 text

Connections In this app, the `r` object contains a connection. r.table("messages").run(r.conn);

Slide 73

Slide 73 text

#5: Switch database Connect to the following database, so we can all share messages var config = { "rethinkdb": { "host": "rethinkdb.thejsj.com", "port": 29015, "db" : "GITHUB_HANDLE_rethinkdb_workshop" },

Slide 74

Slide 74 text

Next steps • Advanced Commands: `r.do`, `r.branch`, `r.forEach` • Map/Reduce queries • Indexes (multi, compound, index functions, geospatial) • Sharding and replication

Slide 75

Slide 75 text

Questions • RethinkDB website:
 http://rethinkdb.com • Install RethinkDB:
 http://rethinkdb.com/install/ • Email me: jorge@rethinkdb.com • Tweet: @thejsj, @rethinkdb