SlideShare ist ein Scribd-Unternehmen logo
1 von 189
Downloaden Sie, um offline zu lesen
HBase Schema Design
HBase Schema Design
How I Learned To Stop
Worrying And Love
Denormalization
What Is Schema Design?
Who am I?
Ian Varley
Software engineer at Salesforce.com
@thefutureian
What Is Schema Design?
Logical Data Modeling
What Is Schema Design?
Logical Data Modeling
+
Physical Implementation
You always start with a logical model.
Even if it's just an implicit one.
That's totally fine. (If you're right.)
There are lots of ways to model data.
The most common one is:
Entity / Attribute / Relationship
(This is probably what you know
of as just "data modeling".)
There's a well established visual
language for data modeling.
Entities are boxes.
With rounded corners if you're fancy.
Attributes are listed vertically in the box.
Optionally with data types, for clarity.
Relationships are connecting lines.
Optionally with special endpoints, and/or verbs
Example: Concerts
Example: Concerts
Example: Concerts

A note about diagrams: they're useful
for communicating, but can be more
trouble than they're worth. Don't do
them out of obligation; only do them to
understand your problem better.
Example: Concerts
Entity

Attribute
Relationship
For relational databases, you usually
start with this normalized model,
then plug & chug.
For relational databases, you usually
start with this normalized model,
then plug & chug.
Entities → Tables
Attributes → Columns
Relationships → Foreign Keys
Many-to-many → Junction tables
Natural keys → Artificial IDs
So, what's missing?
So, what's missing?
If your data is not massive,

NOTHING.
You should use a relational database. They rock*
So, what's missing?
If your data is not massive,

NOTHING.
You should use a relational database. They rock*
* - This statement has not been approved by the HBase product management committee, and neglects known
deficiencies with the relational model such as poor modeling of hierarchies and graphs, overly rigid attribute structure
enforcement, neglect of the time dimension, and physical optimization concerns leaking into the conceptual
abstraction.
Relational DBs work well because they
are close to the pure logical model.
That model is less likely to change as your
business needs change. You may want to ask
different questions over time, but if you got the
logical model correct, you'll have the answers.
Ah, but what if you do have massive
data? Then what's missing?
Problem: The relational model
doesn't acknowledge scale.
Problem: The relational model
doesn't acknowledge scale.
"It's an implementation concern;
you shouldn't have to worry about it."
The trouble is, you do have
to worry about it. So you...
● Add indexes
● Add hints
● Write really complex, messy SQL
● Memorize books by Tom Kyte & Joe Celko
● Bow down to the optimizer!
● Denormalize
● Cache
● etc ...
Generally speaking, you poke holes in
the abstraction, and it starts leaking.
So then you hear about this thing
called NoSQL. Can it help?
Maybe. But ultimately, it's just a
different way of physically representing
your same logical data model.
Some things are easier; some are much harder.
If you haven't started by understanding your logical
model, you're doing it wrong.
HBase Architecture: A Brief Recap
HBase Architecture: A Brief Recap
• Scales by splitting all rows into regions
HBase Architecture: A Brief Recap
• Scales by splitting all rows into regions
• Each region is hosted by exactly one server
HBase Architecture: A Brief Recap
• Scales by splitting all rows into regions
• Each region is hosted by exactly one server
• Writes are held (sorted) in memory until flush
HBase Architecture: A Brief Recap
• Scales by splitting all rows into regions
• Each region is hosted by exactly one server
• Writes are held (sorted) in memory until flush
• Reads merge rows in memory with flushed files
HBase Architecture: A Brief Recap
• Scales by splitting all rows into regions
• Each region is hosted by exactly one server
• Writes are held (sorted) in memory until flush
• Reads merge rows in memory with flushed files
• Reads & writes to a single row are consistent
So what does data in HBase look like?
HBase Data Model: Brief Recap
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic byte array, with one row key
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic byte array, with one row key
Not just a bunch of bytes, dude! A k/v map!
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Value: a value in the k/v container inside a row
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Value: a value in the k/v container inside a row
HBase Data Model: Brief Recap
Hold up! What about
Table: design-time namespace, has many rows.
time?
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Value: a value in the k/v container inside a row
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
The "row" is atomic, and gets flushed
to disk periodically. But it doesn't have
to be flushed into just a single file!

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
This "row" brokenatomic, and gets store
It can be guy is up into different
flushed to disk periodically. Butand
files with different properties, it doesn't
have to caninto just just a subset.
reads be look at one file.

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
This "row" brokenatomic, and gets store
It This becalled "Column different It's
can is guy is up into Families".
flushed to disk periodically. want, and
files inof an advancedyou Butoption, so
whatever way design it doesn't
kind be
have to caninto just one file.at a subset.
reads think too much about it yet.
choose to look
don't

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
This "row" brokenatomic, and gets store
It This becalled "Column different It's
can is guy is up into Families".
From the Percolator paper by Google: "Bigtable
flushed to disk periodically. want, and allows
files inof an advancedyou characteristics of the
whatever performance Butoption, so
way design it doesn't
users to
kind becontrol just one file.
have to caninto the setto columns into subset.
table
locality
reads by grouping amuch about a yet.
choose of
don't think too waylook at it a CFs.
group." That's a good
to think about

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
Calling these "columns" is an unfortunate use
of terminology. They're not fixed; each row can
have different keys, and the names are not
defined at runtime. So you can represent
another axis of data (in the key of the
key/value pair). More on that later.

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
They're officially called "column qualifiers". But
many people just say "columns".
Or "CQ". Or "Quallie". Now you're one of the cool kids.

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
What data types are stored in key/value pairs?

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
What data types are stored in key/value pairs?
It's all bytes.

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
What data types are stored in key/value pairs?
Row keys, column names, values: arbitrary bytes

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
What data types are stored in key/value pairs?
Row keys, column names, values: arbitrary bytes
Table and column family names: printable characters

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
What data types are stored in key/value pairs?
Row keys, column names, values: arbitrary bytes
Table and column family names: printable characters
Timestamps: long integers

HBase Data Model: Brief Recap
Table: design-time namespace, has many rows.
Row: atomic key/value container, with one row key
Column Family: divide columns into physical files
Column: a key in the k/v container inside a row
Timestamp: long milliseconds, sorted descending
Value: a time-versioned value in the k/v container
HBase Data Model: Brief Recap
One more thing that bears repeating: every "cell" (i.e.
the time-versioned value of one column in one row)
is stored "fully qualified" (with its full rowkey, column
family, column name, etc.) on disk.
So now you know what's available.
Now, how do you model things?
Let's start with the entity / attribute /
relationship modeling paradigm,
and see how far we get applying it to HBase.
A note about my example:
it's for clarity, not realism.
For bands & shows, there's not enough data to
warrant using HBase, even if you're tracking every
show by every band for all of human history. It
might be GB, but not TB.
So, back to entities (boxes).
With fancy rounded corners.
What's that in HBase? A table, right?
What's that in HBase? A table, right?
Dramatic foreshadowing: not always ...
And what do entities have?
Attributes!
Attributes!
For example: a "Band" entity might have a "Name" (with values like
"Jonathan Coulton") and a "Genre" (with values like "Nerd Core")
Logically, attributes are unordered.
Their vertical position is meaningless. They're simply
characteristics of the entity.
Attributes can be identifying.
i.e. they uniquely identify a particular instance of that entity.
Attributes can be identifying.
i.e. they uniquely identify a particular instance of that entity.

Logical models usually leave this out, and identity is
implied (i.e. we just assume there's some set of attributes
that's identifying, but we don't have to say what it is)
Attributes can be identifying.
i.e. they uniquely identify a particular instance of that entity.

PK

Physical models refer to it explicitly, like how in a relational
database model you'd label some set of attributes as being
the "Primary Key" (PK).
Attributes can be identifying.
i.e. they uniquely identify a particular instance of that entity.

So in our Band example, neither Name nor Genre is
uniquely identifying, but something like URL might be.
How does this map to HBase?
How does this map to HBase?
Identifying attributes (aka the "PK") become parts of
the row key, and other attributes become columns.
So here's a Band schema.
The row key is the URL, and we have
Name and Genre as attributes.
A much common pattern is to use IDs.
That way, you have an immutable way to refer to this
entity forever, even if they leave MySpace.
A much common pattern is to use IDs.
That way, you have an immutable way to refer to this
entity forever, even if they leave MySpace.

Where do IDs come from? We'll talk about that later.
If there's just a single row key,
how can there be multiple identifying attributes?
Let's call that "mashing".
Which is to say, concatenation, in either a fixed-width
or delimited manner, in the byte array.
Mashing includes several techniques:
● Fixed byte width representation
● Delimiting (for variable length)
● Other serialization (avro, etc.)
Mashing includes several techniques:
● Fixed byte width representation
● Delimiting (for variable length)
● Other serialization (avro, etc.)
Doesn't matter how you do it; the important thing is that any byte
array in HBase can represent more than one logical attribute.
If we want, we can even add types to
the schema definition.
If we want, we can even add types to
the schema definition.
?
If we want, we can even add types to
the schema definition.
?

HBase don't care,
but we do (sometimes).
If we want, we can even add types.
You could also mark things as ASC or DESC,
depending on whether you invert the bits.
?
This is pretty textbook stuff, but here's
where it gets exciting.
This is pretty textbook stuff, but here's
where it gets exciting.
(If you're astute, you'll notice we haven't
talked about relationships yet.)
HBase has no foreign keys, or joins, or
cross-table transactions.
This can make representing relationships
between entities ... tricky.
Part of the beauty of the relational model
is that you can punt on this question.
If you model the entities as fully normalized, then you
can write any query you want at run time, and the DB
performs joins on tables as optimally as it can.
(This relies heavily on indexing.)
In HBase (or any distributed DB)
you don't have that luxury.
Joins get way more expensive and complicated
across a distributed cluster of machines, as do the
indexes that make them happen efficiently.
HBase has neither joins nor indexes.
You have two choices, if you need
relationships between entities.
You have two choices, if you need
relationships between entities.
● Roll your own joins
You have two choices, if you need
relationships between entities.
● Roll your own joins
● Denormalize the data
Rolling your own joins is hard.
You'll probably get it wrong
if you try to do it casually.
Ever implemented a multi-way merge sort by hand?
Denormalizing is fun!
But it also sucks. We'll see why.
The basic concept of denormalization is simple:
two logical entities share
one physical representation.
The basic concept of denormalization is simple:
two logical entities share
one physical representation.
Of course, there are lots of ways to skin a cat...
Let's look at standard relational database
denormalization techniques first.
In a relational database, if the
normalized physical model is this:
You could start with the Band, and give it
extra columns to hold the shows:
You could start with the Band, and give it
extra columns to hold the shows:
That's pretty obviously a bad idea, because
bands can play a lot of shows.

WTF?
You could also just give it an unstructured
blob of text for all the shows.
You could also just give it an unstructured
blob of text for all the shows.

But then you've given up
the integrity of your data.
(Which might be fine.
If so, stop here.)
You get similar problems if you try to bring
all the info into the Show table.
Another solution is to focus
on the junction table.
And pull in copies of the info
in the other tables:
Leaving you with one table, with
one row per band/show combination:
The cons to this should be self-evident.
Updating and querying are more complicated, because
you have to deal with many representations of the "same"
data, which could get out of sync, etc.
But the pros are that with huge data,
answering some questions is much faster.
(If you happen to be asking the query in the same way
you structured the denormalization, that is.)
So back to HBase. How do you
denormalize in an HBase schema?
HBase columns can be defined at runtime.
A column doesn't have to represent a pre-defined attribute.
HBase columns can be defined at runtime.
A column doesn't have to represent a pre-defined attribute.
In fact, it doesn't have to be an attribute at all.
A set of dynamically named columns
can represent another entity!
If you put data into the column name,
and expect many such columns in the same row,
then logically, you've created a nested entity.
You can scan over columns.
See: hadoop-hbase.blogspot.com/2012/01/hbase-intra-row-scanning.html
So we can store shows inside bands.
Which is like the denormalization we say earlier,
except without the relational DB kludges.
Note!

HBase don't care.
It's just a matter of how your app treats the columns. If you
put repeating info in column names, you're doing this.
Why is this so difficult for most
relational database devs to grok?
Because
relational databases have no concept of nested entities!
You'd make it a separate table in an RDBMS, which is more
flexible but much more difficult to optimize.
It's very difficult to talk about HBase
schemas if you don't acknowledge this.
You don't have to represent it this way (with a nested box) but
you have to at least acknowledge it. And maybe name it.
But, once you do acknowledge it,
you can do some neat things.
Nested entities can have attributes,
some of which are identifying.
Nested entities can have attributes,
some of which are identifying.

Identifying attributes
make up the column
qualifier (just like
row keys, it could be
multiple attributes
mashed together)
Nested entities can have attributes,
some of which are identifying.

Identifying attributes
make up the column
qualifier (just like
row keys, it could be
multiple attributes
mashed together)

Non-identifying
attributes are held
in the value (again,
you could mash
many attributes in
here)
Shows is nested in Band
show_id is the column qualifier
Other attributes are mashed into the value

The column qualifier
is the show id.

Everything else
gets mashed into
the value field.
1 table can have many nested entities,
provided your app can tell them apart.
How do you tell them apart?
With prefixes ...

qualifier starts with:
"s" + show_id
"a" + album_id
"m" + name
Where can you
nest entities?
Knock yourself out.
Where can you
nest entities?
Knock yourself out.
● In columns
Where can you
nest entities?
Knock yourself out.
● In columns
● Two levels deep in
columns!
Where can you
nest entities?
Knock yourself out.
● In columns
● Two levels deep in
columns!
● In the row key?!
Where can you
nest entities?
Knock yourself out.
● In columns
● Two levels deep in
columns!
● In the row key?!
● Using timestamps as a
dimension!!
This is a fundamental modeling
property of HBase: nesting entities.
Wait, what about Column Families?
They're just namespaces--additional
vertical sections on the same entity.
Where column families aren't shown
explicitly, let's assume there's just one.
So that brings us to a standard way to
show an HBase schema:
Table: Top level entity name, fixed at design time.
Row key: Can consist of multiple parts, each with a
name & type. All data in one row shares the same
row key. Can be nested.
Column family: A container that allows sets of
columns to have separate storage & semantics.
Column qualifiers: Fixed attributes--design-time
named columns, holding a value of a certain type.
Nested entities: Run-time named column qualifiers,
where the qualifier is made up of one (or more)
values, each with a type, along with one or more
values (by timestamp) which also have a type.
Nested versions: Because multiple timestamped
copies of each value can exist, you can also treat the
timestamp as a modeled dimension in its own right.
Hell, you could even use a long that's not a
timestamp (like, say, an ID number). Caveats apply.
"But," you say, "what if I don't have all
of these fancy modeling tools?"
Say it in text.
XML, JSON, DML, whatever you like.
<table name="Band">
<key>
<column name="band_id" type="int" />
</key>
<columnFamily name="cf1">
<column name="band_name" type="string"/>
<column name="hometown" type="string"/>
<entity name="Show">
<key>
<column name="show_id">
</key>
<column name="date" type="date" />
</entity>
</columnFamily>
</table>
Text is faster and more general, but
slightly harder to grok quickly.
So we'll stick with diagrams here.
Some examples are in order.
Example 1: a simple parent/child relationship
Relational Schema: Applicants & Answers

Standard parent/child relationship. One Applicant has many
Answers; every Answer relates to a single Applicant (by id). It
also relates to a Question (not shown). SQL would have you JOIN
them to materialize an applicant and their answers.
HBase Schema: Answers By Applicant

● Answer is contained implicitly in Applicant
● If you know an applicant_id, you get O(1) access
● If you know an applicant_id AND question_id, O(1) access
● Answer.created_date is implicit in the timestamp on value
HBase Schema: Answers By Applicant

● You get answer history for free
● Applicant.applied_date can be implicit in the timestamp
● More attributes on applicant directly? Just add them!
● Answers are atomic and transactional by Applicant!!
Example of rows in HBase:
Before you get too excited, remember
that there are cons to denormalization.
The cons:
● Nested entities aren't independent any more.
○ No: "SELECT avg(value) FROM Answer WHERE
○ But you can still do that with map/reduce

question_id = 123;
"

● This decomposition only works in one direction.
○ No relation chains without serious trickery.
○ Timestamps are another dimension, but that counts as trickery.

● No way to enforce the foreign key to another table.
○ But would you really do that in a big RDBMS?

● On disk, it repeats the row key for every column
○ You didn't really save anything by having applicant_id be implied.
○ Or did you? Compression negates that on disk ...
○ ... and prefix compression (HBASE-4218) will totally sink this.
Example 2: dropping some database science
Relational Schema: Users And Messages

Many-to-many relationship. One User sees many Messages, and
a single Message can be seen by many Users. We want to do
things like show the most recent message by subject (e.g. an inbox
view).
What kind of SQL would you run on this? Say, we
want to get the most recent 20 messages for 1 user.
SELECT TOP 20
M.subject,
M.body
FROM
User_Message UM
INNER JOIN Message M
ON UM.message_id = M.message_id
WHERE
UM.user_id = <user_id>
ORDER BY
M.sent_date DESC
Seems easy, right? Well, the database is doing
some stuff behind the scenes for you:
Assuming no secondary indexes, it might:
● Drive the join from the User_Message table
● For each new record with our given user_id, do a single
disk access into the Message table (i.e. a hash_join)
● Get the records for *every* message for this user
● Sort them all
● Take the top 20
No shortcuts; we can't find the top 20 by date w/o seeing ALL messages.
This gets more expensive as a user gets more messages. (But it's still
pretty fast if a given user has a reasonable number of messages).
How could you do this in HBase?
Try the same pattern as parent / child?

1. Because of the many-to-many, you now have N copies
of the message (one per user).
○ Maybe that's OK (especially if it's immutable!). Disk is cheap.

2. Your statement has to do the same amount of work, but
now you have to do it yourself. :(
If I know that I always want it ordered by date, why
not store it that way?

● Now I can scan over messages by date until I get
enough; it's O(1)
● But what if I want it by message_id again? Doh. I'm
screwed, unless ...
I store it both ways!

Nice: updates to this are transactional (consistent) for a given
user, because it's all in one row. So it's not a bear to maintain.
Which I could even do in different column families ...

(Makes sense if I don't usually access them at the same time; I only
pay the cost for the query I am running.)
So, for example ...
Or I could just use the by-date one as an "index" ...

So I only store the subject and body once.
This means I need to perform my own "join" in code.
See a theme emerging?
Relational DBs lull you into not thinking about physical
access as much; but when you have to scale, there are hard
limits.
HBase makes you think about it sooner, but gives you the
tools to think about it in more a straightforward way.
Example 3: Flurry
See: http://www.flurry.com/data/

● One row per device
● Nested entity in CF "Sessions"
○ Polymorphic "fragments"
of session reports
○ Map/Reduce transforms

Caveat: this is based on email exchanges, so the details
may be wonky, but I think the overall point is right.
Example 4: Indexes
Example from Andrew Purtell

● Using one table as an index into another often makes sense
● Can't be transactional (without external coordination)
● So you have to keep it clean, or tolerate dirty indexes
● Note that there are several attempts to add solid general purpose
indexing to HBase, but so far none have caught on.
Same caveat: this is based on email exchanges, so the
details may be wonky, but I think the overall point is right.
Here are some more design patterns.
0: The row key design is the single
most important decision you will make.
0: The row key design is the single
most important decision you will make.
This is also true for the "key" you're putting in the
column family name of nested entities.
1: Design for the questions,
not the answers.
1: Design for the questions,
not the answers.
(hat tip to Ilya Katsov from the High Scalability blog
for this useful way to put it; and possibly to Billy
Newport or Eben Hewitt for saying it first.)
1: Design for the questions,
not the answers.
Let's be clear: this sucks big time,
if you aren't 100% sure what the
questions are going to be.
Let's be clear: this sucks big time,
if you aren't 100% sure what the
questions are going to be.
Use a relational DB for that!
Or a document database like CouchDB ...
"But isn't NoSQL more flexible than a
relational DB?"
For column schema? Yes!
For row key structures, NO!
2: There are only two sizes of data:
too big, and not too big.
2: There are only two sizes of data:
too big, and not too big.
(That is, too big to scan all of something
while answering an interactive request.)
2: There are only two sizes of data:
too big, and not too big.
3: Be compact.
You can squeeze a lot into a little space.
3: Be compact.
You can squeeze a lot into a little space.
This is also important because the
rowkey and CF name are repeated for
every single value (memory and disk).
File compression can negate this on disk, and prefix
compression will probably negate this in memory.
4: Use row atomicity as a design tool.
Rows are updated atomically, which gives you a form
of relational integrity in HBase!
4: Use row atomicity as a design tool.
If you made this two HBase tables, you couldn't
guarantee integrity (updated to one could succeed,
while updates to the other fail).
4: Use row atomicity as a design tool.
If you make it one table with a nested entity, you can
guarantee updates will be atomic, and you can do
much more complex mutations of state.
5: Attributes can move into the row key
Even if it's not "identifying" (part of the uniqueness of
an entity), adding an attribute into the row key can
make access more efficient in some cases.
5: Attributes can move into the row key
Even if it's not "identifying" (part of the uniqueness of
an entity), adding an attribute into the row key can
make access more efficient in some cases.
5: Attributes can move into the row key
This ability to move things left or right (without
changing the physical storage requirements) is part of
what Lars George calls "folding".
Also, if you like this subject, go watch his videos on
advanced HBase schema design, they're awesome.
6: If you nest entities, you can
transactionally pre-aggregate data.
You can recalculate aggregates on write,
or periodically with a map/reduce job.
Practically: how do you load schema
into HBase?
Practically: how do you load schema
into HBase?
Direct actuation: https://github.com/larsgeorge/hbase-schema-manager
Practically: how do you load schema
into HBase?
Direct actuation: https://github.com/larsgeorge/hbase-schema-manager
Coming soon: script generation: https://github.com/ivarley/scoot
Thank you!
Questions? @thefutureian

Weitere ähnliche Inhalte

Was ist angesagt?

Scalability, Availability & Stability Patterns
Scalability, Availability & Stability PatternsScalability, Availability & Stability Patterns
Scalability, Availability & Stability PatternsJonas Bonér
 
HBaseCon 2012 | HBase Schema Design - Ian Varley, Salesforce
HBaseCon 2012 | HBase Schema Design - Ian Varley, SalesforceHBaseCon 2012 | HBase Schema Design - Ian Varley, Salesforce
HBaseCon 2012 | HBase Schema Design - Ian Varley, SalesforceCloudera, Inc.
 
Chicago Data Summit: Apache HBase: An Introduction
Chicago Data Summit: Apache HBase: An IntroductionChicago Data Summit: Apache HBase: An Introduction
Chicago Data Summit: Apache HBase: An IntroductionCloudera, Inc.
 
High Performance Data Lake with Apache Hudi and Alluxio at T3Go
High Performance Data Lake with Apache Hudi and Alluxio at T3GoHigh Performance Data Lake with Apache Hudi and Alluxio at T3Go
High Performance Data Lake with Apache Hudi and Alluxio at T3GoAlluxio, Inc.
 
Introduction to NOSQL databases
Introduction to NOSQL databasesIntroduction to NOSQL databases
Introduction to NOSQL databasesAshwani Kumar
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture EMC
 
A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.Navdeep Charan
 
Operating and Supporting Delta Lake in Production
Operating and Supporting Delta Lake in ProductionOperating and Supporting Delta Lake in Production
Operating and Supporting Delta Lake in ProductionDatabricks
 
Spark SQL Deep Dive @ Melbourne Spark Meetup
Spark SQL Deep Dive @ Melbourne Spark MeetupSpark SQL Deep Dive @ Melbourne Spark Meetup
Spark SQL Deep Dive @ Melbourne Spark MeetupDatabricks
 
From cache to in-memory data grid. Introduction to Hazelcast.
From cache to in-memory data grid. Introduction to Hazelcast.From cache to in-memory data grid. Introduction to Hazelcast.
From cache to in-memory data grid. Introduction to Hazelcast.Taras Matyashovsky
 
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...Databricks
 
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...Simplilearn
 
MongoDB Database Replication
MongoDB Database ReplicationMongoDB Database Replication
MongoDB Database ReplicationMehdi Valikhani
 

Was ist angesagt? (20)

Scalability, Availability & Stability Patterns
Scalability, Availability & Stability PatternsScalability, Availability & Stability Patterns
Scalability, Availability & Stability Patterns
 
HBaseCon 2012 | HBase Schema Design - Ian Varley, Salesforce
HBaseCon 2012 | HBase Schema Design - Ian Varley, SalesforceHBaseCon 2012 | HBase Schema Design - Ian Varley, Salesforce
HBaseCon 2012 | HBase Schema Design - Ian Varley, Salesforce
 
Chicago Data Summit: Apache HBase: An Introduction
Chicago Data Summit: Apache HBase: An IntroductionChicago Data Summit: Apache HBase: An Introduction
Chicago Data Summit: Apache HBase: An Introduction
 
Apache HBase™
Apache HBase™Apache HBase™
Apache HBase™
 
Apache Spark Architecture
Apache Spark ArchitectureApache Spark Architecture
Apache Spark Architecture
 
Une introduction à HBase
Une introduction à HBaseUne introduction à HBase
Une introduction à HBase
 
High Performance Data Lake with Apache Hudi and Alluxio at T3Go
High Performance Data Lake with Apache Hudi and Alluxio at T3GoHigh Performance Data Lake with Apache Hudi and Alluxio at T3Go
High Performance Data Lake with Apache Hudi and Alluxio at T3Go
 
Intro to HBase
Intro to HBaseIntro to HBase
Intro to HBase
 
Introduction to NOSQL databases
Introduction to NOSQL databasesIntroduction to NOSQL databases
Introduction to NOSQL databases
 
Hadoop Overview & Architecture
Hadoop Overview & Architecture  Hadoop Overview & Architecture
Hadoop Overview & Architecture
 
A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.A Seminar on NoSQL Databases.
A Seminar on NoSQL Databases.
 
Voldemort
VoldemortVoldemort
Voldemort
 
Operating and Supporting Delta Lake in Production
Operating and Supporting Delta Lake in ProductionOperating and Supporting Delta Lake in Production
Operating and Supporting Delta Lake in Production
 
Spark SQL Deep Dive @ Melbourne Spark Meetup
Spark SQL Deep Dive @ Melbourne Spark MeetupSpark SQL Deep Dive @ Melbourne Spark Meetup
Spark SQL Deep Dive @ Melbourne Spark Meetup
 
Introduction to Hadoop
Introduction to HadoopIntroduction to Hadoop
Introduction to Hadoop
 
From cache to in-memory data grid. Introduction to Hazelcast.
From cache to in-memory data grid. Introduction to Hazelcast.From cache to in-memory data grid. Introduction to Hazelcast.
From cache to in-memory data grid. Introduction to Hazelcast.
 
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...
A Tale of Three Apache Spark APIs: RDDs, DataFrames, and Datasets with Jules ...
 
HBase
HBaseHBase
HBase
 
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...
Hadoop Training | Hadoop Training For Beginners | Hadoop Architecture | Hadoo...
 
MongoDB Database Replication
MongoDB Database ReplicationMongoDB Database Replication
MongoDB Database Replication
 

Andere mochten auch

Bottled water 요약 설명 20151114
Bottled water 요약 설명 20151114Bottled water 요약 설명 20151114
Bottled water 요약 설명 20151114Daeyong Shin
 
FleetDB A Schema-Free Database in Clojure
FleetDB A Schema-Free Database in ClojureFleetDB A Schema-Free Database in Clojure
FleetDB A Schema-Free Database in Clojureelliando dias
 
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 GamingAmazon Web Services Korea
 
Employee management system1
Employee management system1Employee management system1
Employee management system1supriya
 
service quality-models-ppt
 service quality-models-ppt service quality-models-ppt
service quality-models-pptsubroto36
 
Services Marketing - Service Quality GAPS Model
Services Marketing - Service Quality GAPS ModelServices Marketing - Service Quality GAPS Model
Services Marketing - Service Quality GAPS ModelHimansu S Mahapatra
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentationsameerraaj
 
Medical Store Management System Software Engineering Project
Medical Store Management System Software Engineering ProjectMedical Store Management System Software Engineering Project
Medical Store Management System Software Engineering Projecthani2253
 
Employee Management System
Employee Management SystemEmployee Management System
Employee Management Systemvivek shah
 

Andere mochten auch (12)

Bottled water 요약 설명 20151114
Bottled water 요약 설명 20151114Bottled water 요약 설명 20151114
Bottled water 요약 설명 20151114
 
FleetDB A Schema-Free Database in Clojure
FleetDB A Schema-Free Database in ClojureFleetDB A Schema-Free Database in Clojure
FleetDB A Schema-Free Database in Clojure
 
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
게임을 위한 DynamoDB 사례 및 팁 - 김일호 솔루션즈 아키텍트:: AWS Cloud Track 3 Gaming
 
Freebase Schema
Freebase SchemaFreebase Schema
Freebase Schema
 
Dynamodb 삽질기
Dynamodb 삽질기Dynamodb 삽질기
Dynamodb 삽질기
 
Employee management system1
Employee management system1Employee management system1
Employee management system1
 
service quality-models-ppt
 service quality-models-ppt service quality-models-ppt
service quality-models-ppt
 
Services Marketing - Service Quality GAPS Model
Services Marketing - Service Quality GAPS ModelServices Marketing - Service Quality GAPS Model
Services Marketing - Service Quality GAPS Model
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
Medical Store Management System Software Engineering Project
Medical Store Management System Software Engineering ProjectMedical Store Management System Software Engineering Project
Medical Store Management System Software Engineering Project
 
Employee Management System
Employee Management SystemEmployee Management System
Employee Management System
 

Ähnlich wie HBase Schema Design - HBase-Con 2012

Schemaless Databases
Schemaless DatabasesSchemaless Databases
Schemaless DatabasesDan Gunter
 
HBase In Action - Chapter 04: HBase table design
HBase In Action - Chapter 04: HBase table designHBase In Action - Chapter 04: HBase table design
HBase In Action - Chapter 04: HBase table designphanleson
 
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...IndicThreads
 
rhbase_tutorial
rhbase_tutorialrhbase_tutorial
rhbase_tutorialAaron Benz
 
Performance By Design
Performance By DesignPerformance By Design
Performance By DesignGuy Harrison
 
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AGOLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AGLucidworks
 
Architectural anti-patterns for data handling
Architectural anti-patterns for data handlingArchitectural anti-patterns for data handling
Architectural anti-patterns for data handlingGleicon Moraes
 
NoSQL and MapReduce
NoSQL and MapReduceNoSQL and MapReduce
NoSQL and MapReduceJ Singh
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and UsesSuvradeep Rudra
 
Architectural anti patterns_for_data_handling
Architectural anti patterns_for_data_handlingArchitectural anti patterns_for_data_handling
Architectural anti patterns_for_data_handlingGleicon Moraes
 
Learning Cassandra NoSQL
Learning Cassandra NoSQLLearning Cassandra NoSQL
Learning Cassandra NoSQLPankaj Khattar
 
Is multi-model the future of NoSQL?
Is multi-model the future of NoSQL?Is multi-model the future of NoSQL?
Is multi-model the future of NoSQL?Max Neunhöffer
 
MyLife with HBase or HBase three flavors
MyLife with HBase or HBase three flavorsMyLife with HBase or HBase three flavors
MyLife with HBase or HBase three flavorsresponseteam
 

Ähnlich wie HBase Schema Design - HBase-Con 2012 (20)

Schemaless Databases
Schemaless DatabasesSchemaless Databases
Schemaless Databases
 
HBase In Action - Chapter 04: HBase table design
HBase In Action - Chapter 04: HBase table designHBase In Action - Chapter 04: HBase table design
HBase In Action - Chapter 04: HBase table design
 
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...
Breaking with relational DBMS and dating with Hbase [5th IndicThreads.com Con...
 
rhbase_tutorial
rhbase_tutorialrhbase_tutorial
rhbase_tutorial
 
Performance By Design
Performance By DesignPerformance By Design
Performance By Design
 
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AGOLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
OLAP Battle - SolrCloud vs. HBase: Presented by Dragan Milosevic, Zanox AG
 
Architectural anti-patterns for data handling
Architectural anti-patterns for data handlingArchitectural anti-patterns for data handling
Architectural anti-patterns for data handling
 
Uint-5 Big data Frameworks.pdf
Uint-5 Big data Frameworks.pdfUint-5 Big data Frameworks.pdf
Uint-5 Big data Frameworks.pdf
 
Uint-5 Big data Frameworks.pdf
Uint-5 Big data Frameworks.pdfUint-5 Big data Frameworks.pdf
Uint-5 Big data Frameworks.pdf
 
Oslo baksia2014
Oslo baksia2014Oslo baksia2014
Oslo baksia2014
 
No sql
No sqlNo sql
No sql
 
NoSQL and MapReduce
NoSQL and MapReduceNoSQL and MapReduce
NoSQL and MapReduce
 
NOSQL Databases types and Uses
NOSQL Databases types and UsesNOSQL Databases types and Uses
NOSQL Databases types and Uses
 
The Bund language
The Bund languageThe Bund language
The Bund language
 
Architectural anti patterns_for_data_handling
Architectural anti patterns_for_data_handlingArchitectural anti patterns_for_data_handling
Architectural anti patterns_for_data_handling
 
Datastores
DatastoresDatastores
Datastores
 
Learning Cassandra NoSQL
Learning Cassandra NoSQLLearning Cassandra NoSQL
Learning Cassandra NoSQL
 
01 hbase
01 hbase01 hbase
01 hbase
 
Is multi-model the future of NoSQL?
Is multi-model the future of NoSQL?Is multi-model the future of NoSQL?
Is multi-model the future of NoSQL?
 
MyLife with HBase or HBase three flavors
MyLife with HBase or HBase three flavorsMyLife with HBase or HBase three flavors
MyLife with HBase or HBase three flavors
 

Kürzlich hochgeladen

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 

Kürzlich hochgeladen (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 

HBase Schema Design - HBase-Con 2012

  • 2. HBase Schema Design How I Learned To Stop Worrying And Love Denormalization
  • 3. What Is Schema Design?
  • 4. Who am I? Ian Varley Software engineer at Salesforce.com @thefutureian
  • 5. What Is Schema Design? Logical Data Modeling
  • 6. What Is Schema Design? Logical Data Modeling + Physical Implementation
  • 7. You always start with a logical model. Even if it's just an implicit one. That's totally fine. (If you're right.)
  • 8. There are lots of ways to model data. The most common one is: Entity / Attribute / Relationship (This is probably what you know of as just "data modeling".)
  • 9. There's a well established visual language for data modeling.
  • 10. Entities are boxes. With rounded corners if you're fancy.
  • 11. Attributes are listed vertically in the box. Optionally with data types, for clarity.
  • 12. Relationships are connecting lines. Optionally with special endpoints, and/or verbs
  • 15. Example: Concerts A note about diagrams: they're useful for communicating, but can be more trouble than they're worth. Don't do them out of obligation; only do them to understand your problem better.
  • 17. For relational databases, you usually start with this normalized model, then plug & chug.
  • 18. For relational databases, you usually start with this normalized model, then plug & chug. Entities → Tables Attributes → Columns Relationships → Foreign Keys Many-to-many → Junction tables Natural keys → Artificial IDs
  • 19.
  • 21. So, what's missing? If your data is not massive, NOTHING. You should use a relational database. They rock*
  • 22. So, what's missing? If your data is not massive, NOTHING. You should use a relational database. They rock* * - This statement has not been approved by the HBase product management committee, and neglects known deficiencies with the relational model such as poor modeling of hierarchies and graphs, overly rigid attribute structure enforcement, neglect of the time dimension, and physical optimization concerns leaking into the conceptual abstraction.
  • 23. Relational DBs work well because they are close to the pure logical model. That model is less likely to change as your business needs change. You may want to ask different questions over time, but if you got the logical model correct, you'll have the answers.
  • 24. Ah, but what if you do have massive data? Then what's missing?
  • 25. Problem: The relational model doesn't acknowledge scale.
  • 26. Problem: The relational model doesn't acknowledge scale. "It's an implementation concern; you shouldn't have to worry about it."
  • 27. The trouble is, you do have to worry about it. So you... ● Add indexes ● Add hints ● Write really complex, messy SQL ● Memorize books by Tom Kyte & Joe Celko ● Bow down to the optimizer! ● Denormalize ● Cache ● etc ...
  • 28. Generally speaking, you poke holes in the abstraction, and it starts leaking.
  • 29. So then you hear about this thing called NoSQL. Can it help?
  • 30. Maybe. But ultimately, it's just a different way of physically representing your same logical data model. Some things are easier; some are much harder. If you haven't started by understanding your logical model, you're doing it wrong.
  • 31. HBase Architecture: A Brief Recap
  • 32. HBase Architecture: A Brief Recap • Scales by splitting all rows into regions
  • 33. HBase Architecture: A Brief Recap • Scales by splitting all rows into regions • Each region is hosted by exactly one server
  • 34. HBase Architecture: A Brief Recap • Scales by splitting all rows into regions • Each region is hosted by exactly one server • Writes are held (sorted) in memory until flush
  • 35. HBase Architecture: A Brief Recap • Scales by splitting all rows into regions • Each region is hosted by exactly one server • Writes are held (sorted) in memory until flush • Reads merge rows in memory with flushed files
  • 36. HBase Architecture: A Brief Recap • Scales by splitting all rows into regions • Each region is hosted by exactly one server • Writes are held (sorted) in memory until flush • Reads merge rows in memory with flushed files • Reads & writes to a single row are consistent
  • 37. So what does data in HBase look like?
  • 38. HBase Data Model: Brief Recap
  • 39. HBase Data Model: Brief Recap Table: design-time namespace, has many rows.
  • 40. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic byte array, with one row key
  • 41. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic byte array, with one row key Not just a bunch of bytes, dude! A k/v map!
  • 42. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key
  • 43. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row
  • 44. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Value: a value in the k/v container inside a row
  • 45. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Value: a value in the k/v container inside a row
  • 46. HBase Data Model: Brief Recap Hold up! What about Table: design-time namespace, has many rows. time? Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Value: a value in the k/v container inside a row
  • 47. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 48. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 49. The "row" is atomic, and gets flushed to disk periodically. But it doesn't have to be flushed into just a single file! HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 50. This "row" brokenatomic, and gets store It can be guy is up into different flushed to disk periodically. Butand files with different properties, it doesn't have to caninto just just a subset. reads be look at one file. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 51. This "row" brokenatomic, and gets store It This becalled "Column different It's can is guy is up into Families". flushed to disk periodically. want, and files inof an advancedyou Butoption, so whatever way design it doesn't kind be have to caninto just one file.at a subset. reads think too much about it yet. choose to look don't HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 52. This "row" brokenatomic, and gets store It This becalled "Column different It's can is guy is up into Families". From the Percolator paper by Google: "Bigtable flushed to disk periodically. want, and allows files inof an advancedyou characteristics of the whatever performance Butoption, so way design it doesn't users to kind becontrol just one file. have to caninto the setto columns into subset. table locality reads by grouping amuch about a yet. choose of don't think too waylook at it a CFs. group." That's a good to think about HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 53. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 54. Calling these "columns" is an unfortunate use of terminology. They're not fixed; each row can have different keys, and the names are not defined at runtime. So you can represent another axis of data (in the key of the key/value pair). More on that later. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 55. They're officially called "column qualifiers". But many people just say "columns". Or "CQ". Or "Quallie". Now you're one of the cool kids. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 56. What data types are stored in key/value pairs? HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 57. What data types are stored in key/value pairs? It's all bytes. HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 58. What data types are stored in key/value pairs? Row keys, column names, values: arbitrary bytes HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 59. What data types are stored in key/value pairs? Row keys, column names, values: arbitrary bytes Table and column family names: printable characters HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 60. What data types are stored in key/value pairs? Row keys, column names, values: arbitrary bytes Table and column family names: printable characters Timestamps: long integers HBase Data Model: Brief Recap Table: design-time namespace, has many rows. Row: atomic key/value container, with one row key Column Family: divide columns into physical files Column: a key in the k/v container inside a row Timestamp: long milliseconds, sorted descending Value: a time-versioned value in the k/v container
  • 61. HBase Data Model: Brief Recap One more thing that bears repeating: every "cell" (i.e. the time-versioned value of one column in one row) is stored "fully qualified" (with its full rowkey, column family, column name, etc.) on disk.
  • 62. So now you know what's available. Now, how do you model things?
  • 63. Let's start with the entity / attribute / relationship modeling paradigm, and see how far we get applying it to HBase.
  • 64. A note about my example: it's for clarity, not realism. For bands & shows, there's not enough data to warrant using HBase, even if you're tracking every show by every band for all of human history. It might be GB, but not TB.
  • 65. So, back to entities (boxes). With fancy rounded corners.
  • 66. What's that in HBase? A table, right?
  • 67. What's that in HBase? A table, right? Dramatic foreshadowing: not always ...
  • 68. And what do entities have?
  • 70. Attributes! For example: a "Band" entity might have a "Name" (with values like "Jonathan Coulton") and a "Genre" (with values like "Nerd Core")
  • 71. Logically, attributes are unordered. Their vertical position is meaningless. They're simply characteristics of the entity.
  • 72. Attributes can be identifying. i.e. they uniquely identify a particular instance of that entity.
  • 73. Attributes can be identifying. i.e. they uniquely identify a particular instance of that entity. Logical models usually leave this out, and identity is implied (i.e. we just assume there's some set of attributes that's identifying, but we don't have to say what it is)
  • 74. Attributes can be identifying. i.e. they uniquely identify a particular instance of that entity. PK Physical models refer to it explicitly, like how in a relational database model you'd label some set of attributes as being the "Primary Key" (PK).
  • 75. Attributes can be identifying. i.e. they uniquely identify a particular instance of that entity. So in our Band example, neither Name nor Genre is uniquely identifying, but something like URL might be.
  • 76. How does this map to HBase?
  • 77. How does this map to HBase? Identifying attributes (aka the "PK") become parts of the row key, and other attributes become columns.
  • 78. So here's a Band schema. The row key is the URL, and we have Name and Genre as attributes.
  • 79. A much common pattern is to use IDs. That way, you have an immutable way to refer to this entity forever, even if they leave MySpace.
  • 80. A much common pattern is to use IDs. That way, you have an immutable way to refer to this entity forever, even if they leave MySpace. Where do IDs come from? We'll talk about that later.
  • 81. If there's just a single row key, how can there be multiple identifying attributes?
  • 82. Let's call that "mashing". Which is to say, concatenation, in either a fixed-width or delimited manner, in the byte array.
  • 83. Mashing includes several techniques: ● Fixed byte width representation ● Delimiting (for variable length) ● Other serialization (avro, etc.)
  • 84. Mashing includes several techniques: ● Fixed byte width representation ● Delimiting (for variable length) ● Other serialization (avro, etc.) Doesn't matter how you do it; the important thing is that any byte array in HBase can represent more than one logical attribute.
  • 85. If we want, we can even add types to the schema definition.
  • 86. If we want, we can even add types to the schema definition. ?
  • 87. If we want, we can even add types to the schema definition. ? HBase don't care, but we do (sometimes).
  • 88. If we want, we can even add types. You could also mark things as ASC or DESC, depending on whether you invert the bits. ?
  • 89. This is pretty textbook stuff, but here's where it gets exciting.
  • 90. This is pretty textbook stuff, but here's where it gets exciting. (If you're astute, you'll notice we haven't talked about relationships yet.)
  • 91. HBase has no foreign keys, or joins, or cross-table transactions. This can make representing relationships between entities ... tricky.
  • 92. Part of the beauty of the relational model is that you can punt on this question. If you model the entities as fully normalized, then you can write any query you want at run time, and the DB performs joins on tables as optimally as it can. (This relies heavily on indexing.)
  • 93. In HBase (or any distributed DB) you don't have that luxury. Joins get way more expensive and complicated across a distributed cluster of machines, as do the indexes that make them happen efficiently. HBase has neither joins nor indexes.
  • 94. You have two choices, if you need relationships between entities.
  • 95. You have two choices, if you need relationships between entities. ● Roll your own joins
  • 96. You have two choices, if you need relationships between entities. ● Roll your own joins ● Denormalize the data
  • 97. Rolling your own joins is hard. You'll probably get it wrong if you try to do it casually. Ever implemented a multi-way merge sort by hand?
  • 98. Denormalizing is fun! But it also sucks. We'll see why.
  • 99. The basic concept of denormalization is simple: two logical entities share one physical representation.
  • 100. The basic concept of denormalization is simple: two logical entities share one physical representation. Of course, there are lots of ways to skin a cat...
  • 101. Let's look at standard relational database denormalization techniques first.
  • 102. In a relational database, if the normalized physical model is this:
  • 103. You could start with the Band, and give it extra columns to hold the shows:
  • 104. You could start with the Band, and give it extra columns to hold the shows:
  • 105. That's pretty obviously a bad idea, because bands can play a lot of shows. WTF?
  • 106. You could also just give it an unstructured blob of text for all the shows.
  • 107. You could also just give it an unstructured blob of text for all the shows. But then you've given up the integrity of your data. (Which might be fine. If so, stop here.)
  • 108. You get similar problems if you try to bring all the info into the Show table.
  • 109. Another solution is to focus on the junction table.
  • 110. And pull in copies of the info in the other tables:
  • 111. Leaving you with one table, with one row per band/show combination:
  • 112. The cons to this should be self-evident. Updating and querying are more complicated, because you have to deal with many representations of the "same" data, which could get out of sync, etc.
  • 113. But the pros are that with huge data, answering some questions is much faster. (If you happen to be asking the query in the same way you structured the denormalization, that is.)
  • 114. So back to HBase. How do you denormalize in an HBase schema?
  • 115. HBase columns can be defined at runtime. A column doesn't have to represent a pre-defined attribute.
  • 116. HBase columns can be defined at runtime. A column doesn't have to represent a pre-defined attribute. In fact, it doesn't have to be an attribute at all.
  • 117. A set of dynamically named columns can represent another entity!
  • 118.
  • 119. If you put data into the column name, and expect many such columns in the same row, then logically, you've created a nested entity.
  • 120. You can scan over columns. See: hadoop-hbase.blogspot.com/2012/01/hbase-intra-row-scanning.html
  • 121. So we can store shows inside bands. Which is like the denormalization we say earlier, except without the relational DB kludges.
  • 122. Note! HBase don't care. It's just a matter of how your app treats the columns. If you put repeating info in column names, you're doing this.
  • 123. Why is this so difficult for most relational database devs to grok? Because relational databases have no concept of nested entities! You'd make it a separate table in an RDBMS, which is more flexible but much more difficult to optimize.
  • 124. It's very difficult to talk about HBase schemas if you don't acknowledge this. You don't have to represent it this way (with a nested box) but you have to at least acknowledge it. And maybe name it.
  • 125. But, once you do acknowledge it, you can do some neat things.
  • 126. Nested entities can have attributes, some of which are identifying.
  • 127. Nested entities can have attributes, some of which are identifying. Identifying attributes make up the column qualifier (just like row keys, it could be multiple attributes mashed together)
  • 128. Nested entities can have attributes, some of which are identifying. Identifying attributes make up the column qualifier (just like row keys, it could be multiple attributes mashed together) Non-identifying attributes are held in the value (again, you could mash many attributes in here)
  • 129. Shows is nested in Band show_id is the column qualifier Other attributes are mashed into the value The column qualifier is the show id. Everything else gets mashed into the value field.
  • 130. 1 table can have many nested entities, provided your app can tell them apart.
  • 131. How do you tell them apart? With prefixes ... qualifier starts with: "s" + show_id "a" + album_id "m" + name
  • 132. Where can you nest entities? Knock yourself out.
  • 133. Where can you nest entities? Knock yourself out. ● In columns
  • 134. Where can you nest entities? Knock yourself out. ● In columns ● Two levels deep in columns!
  • 135. Where can you nest entities? Knock yourself out. ● In columns ● Two levels deep in columns! ● In the row key?!
  • 136. Where can you nest entities? Knock yourself out. ● In columns ● Two levels deep in columns! ● In the row key?! ● Using timestamps as a dimension!!
  • 137. This is a fundamental modeling property of HBase: nesting entities.
  • 138. Wait, what about Column Families?
  • 139. They're just namespaces--additional vertical sections on the same entity.
  • 140. Where column families aren't shown explicitly, let's assume there's just one.
  • 141. So that brings us to a standard way to show an HBase schema: Table: Top level entity name, fixed at design time. Row key: Can consist of multiple parts, each with a name & type. All data in one row shares the same row key. Can be nested. Column family: A container that allows sets of columns to have separate storage & semantics. Column qualifiers: Fixed attributes--design-time named columns, holding a value of a certain type. Nested entities: Run-time named column qualifiers, where the qualifier is made up of one (or more) values, each with a type, along with one or more values (by timestamp) which also have a type. Nested versions: Because multiple timestamped copies of each value can exist, you can also treat the timestamp as a modeled dimension in its own right. Hell, you could even use a long that's not a timestamp (like, say, an ID number). Caveats apply.
  • 142. "But," you say, "what if I don't have all of these fancy modeling tools?"
  • 143. Say it in text. XML, JSON, DML, whatever you like. <table name="Band"> <key> <column name="band_id" type="int" /> </key> <columnFamily name="cf1"> <column name="band_name" type="string"/> <column name="hometown" type="string"/> <entity name="Show"> <key> <column name="show_id"> </key> <column name="date" type="date" /> </entity> </columnFamily> </table>
  • 144. Text is faster and more general, but slightly harder to grok quickly. So we'll stick with diagrams here.
  • 145. Some examples are in order.
  • 146. Example 1: a simple parent/child relationship Relational Schema: Applicants & Answers Standard parent/child relationship. One Applicant has many Answers; every Answer relates to a single Applicant (by id). It also relates to a Question (not shown). SQL would have you JOIN them to materialize an applicant and their answers.
  • 147. HBase Schema: Answers By Applicant ● Answer is contained implicitly in Applicant ● If you know an applicant_id, you get O(1) access ● If you know an applicant_id AND question_id, O(1) access ● Answer.created_date is implicit in the timestamp on value
  • 148. HBase Schema: Answers By Applicant ● You get answer history for free ● Applicant.applied_date can be implicit in the timestamp ● More attributes on applicant directly? Just add them! ● Answers are atomic and transactional by Applicant!!
  • 149. Example of rows in HBase:
  • 150. Before you get too excited, remember that there are cons to denormalization.
  • 151. The cons: ● Nested entities aren't independent any more. ○ No: "SELECT avg(value) FROM Answer WHERE ○ But you can still do that with map/reduce question_id = 123; " ● This decomposition only works in one direction. ○ No relation chains without serious trickery. ○ Timestamps are another dimension, but that counts as trickery. ● No way to enforce the foreign key to another table. ○ But would you really do that in a big RDBMS? ● On disk, it repeats the row key for every column ○ You didn't really save anything by having applicant_id be implied. ○ Or did you? Compression negates that on disk ... ○ ... and prefix compression (HBASE-4218) will totally sink this.
  • 152. Example 2: dropping some database science Relational Schema: Users And Messages Many-to-many relationship. One User sees many Messages, and a single Message can be seen by many Users. We want to do things like show the most recent message by subject (e.g. an inbox view).
  • 153. What kind of SQL would you run on this? Say, we want to get the most recent 20 messages for 1 user. SELECT TOP 20 M.subject, M.body FROM User_Message UM INNER JOIN Message M ON UM.message_id = M.message_id WHERE UM.user_id = <user_id> ORDER BY M.sent_date DESC
  • 154. Seems easy, right? Well, the database is doing some stuff behind the scenes for you: Assuming no secondary indexes, it might: ● Drive the join from the User_Message table ● For each new record with our given user_id, do a single disk access into the Message table (i.e. a hash_join) ● Get the records for *every* message for this user ● Sort them all ● Take the top 20 No shortcuts; we can't find the top 20 by date w/o seeing ALL messages. This gets more expensive as a user gets more messages. (But it's still pretty fast if a given user has a reasonable number of messages).
  • 155. How could you do this in HBase? Try the same pattern as parent / child? 1. Because of the many-to-many, you now have N copies of the message (one per user). ○ Maybe that's OK (especially if it's immutable!). Disk is cheap. 2. Your statement has to do the same amount of work, but now you have to do it yourself. :(
  • 156. If I know that I always want it ordered by date, why not store it that way? ● Now I can scan over messages by date until I get enough; it's O(1) ● But what if I want it by message_id again? Doh. I'm screwed, unless ...
  • 157. I store it both ways! Nice: updates to this are transactional (consistent) for a given user, because it's all in one row. So it's not a bear to maintain.
  • 158. Which I could even do in different column families ... (Makes sense if I don't usually access them at the same time; I only pay the cost for the query I am running.)
  • 160. Or I could just use the by-date one as an "index" ... So I only store the subject and body once. This means I need to perform my own "join" in code.
  • 161. See a theme emerging? Relational DBs lull you into not thinking about physical access as much; but when you have to scale, there are hard limits. HBase makes you think about it sooner, but gives you the tools to think about it in more a straightforward way.
  • 162. Example 3: Flurry See: http://www.flurry.com/data/ ● One row per device ● Nested entity in CF "Sessions" ○ Polymorphic "fragments" of session reports ○ Map/Reduce transforms Caveat: this is based on email exchanges, so the details may be wonky, but I think the overall point is right.
  • 163. Example 4: Indexes Example from Andrew Purtell ● Using one table as an index into another often makes sense ● Can't be transactional (without external coordination) ● So you have to keep it clean, or tolerate dirty indexes ● Note that there are several attempts to add solid general purpose indexing to HBase, but so far none have caught on. Same caveat: this is based on email exchanges, so the details may be wonky, but I think the overall point is right.
  • 164. Here are some more design patterns.
  • 165. 0: The row key design is the single most important decision you will make.
  • 166. 0: The row key design is the single most important decision you will make. This is also true for the "key" you're putting in the column family name of nested entities.
  • 167. 1: Design for the questions, not the answers.
  • 168. 1: Design for the questions, not the answers. (hat tip to Ilya Katsov from the High Scalability blog for this useful way to put it; and possibly to Billy Newport or Eben Hewitt for saying it first.)
  • 169. 1: Design for the questions, not the answers.
  • 170. Let's be clear: this sucks big time, if you aren't 100% sure what the questions are going to be.
  • 171. Let's be clear: this sucks big time, if you aren't 100% sure what the questions are going to be. Use a relational DB for that! Or a document database like CouchDB ...
  • 172. "But isn't NoSQL more flexible than a relational DB?" For column schema? Yes! For row key structures, NO!
  • 173. 2: There are only two sizes of data: too big, and not too big.
  • 174. 2: There are only two sizes of data: too big, and not too big. (That is, too big to scan all of something while answering an interactive request.)
  • 175. 2: There are only two sizes of data: too big, and not too big.
  • 176. 3: Be compact. You can squeeze a lot into a little space.
  • 177. 3: Be compact. You can squeeze a lot into a little space.
  • 178. This is also important because the rowkey and CF name are repeated for every single value (memory and disk). File compression can negate this on disk, and prefix compression will probably negate this in memory.
  • 179. 4: Use row atomicity as a design tool. Rows are updated atomically, which gives you a form of relational integrity in HBase!
  • 180. 4: Use row atomicity as a design tool. If you made this two HBase tables, you couldn't guarantee integrity (updated to one could succeed, while updates to the other fail).
  • 181. 4: Use row atomicity as a design tool. If you make it one table with a nested entity, you can guarantee updates will be atomic, and you can do much more complex mutations of state.
  • 182. 5: Attributes can move into the row key Even if it's not "identifying" (part of the uniqueness of an entity), adding an attribute into the row key can make access more efficient in some cases.
  • 183. 5: Attributes can move into the row key Even if it's not "identifying" (part of the uniqueness of an entity), adding an attribute into the row key can make access more efficient in some cases.
  • 184. 5: Attributes can move into the row key This ability to move things left or right (without changing the physical storage requirements) is part of what Lars George calls "folding". Also, if you like this subject, go watch his videos on advanced HBase schema design, they're awesome.
  • 185. 6: If you nest entities, you can transactionally pre-aggregate data. You can recalculate aggregates on write, or periodically with a map/reduce job.
  • 186. Practically: how do you load schema into HBase?
  • 187. Practically: how do you load schema into HBase? Direct actuation: https://github.com/larsgeorge/hbase-schema-manager
  • 188. Practically: how do you load schema into HBase? Direct actuation: https://github.com/larsgeorge/hbase-schema-manager Coming soon: script generation: https://github.com/ivarley/scoot