+ All Categories
Home > Technology > NoSQL Yes, But YesCQL, No?

NoSQL Yes, But YesCQL, No?

Date post: 15-Jan-2015
Category:
Upload: eric-evans
View: 4,344 times
Download: 4 times
Share this document with a friend
Description:
 
Popular Tags:
24
NoSQL Yes, But YesCQL, No? Berlin Buzzwords June 7, 2011 Eric Evans [email protected] @jericevans http://blog.sym-link.com
Transcript
Page 1: NoSQL Yes, But YesCQL, No?

NoSQL Yes, But YesCQL, No?

Berlin BuzzwordsJune 7, 2011

Eric [email protected]

@jericevanshttp://blog.sym-link.com

Page 2: NoSQL Yes, But YesCQL, No?

Cassandra Query Language

● Structured query language for Apache Cassandra.

● CQL for short (pronounced /si kw l/).ː ə● SQL alike (best effort).● An alternative to the existing API, not a

replacement (not yet).● Available for use in Cassandra 0.8.0.

Page 3: NoSQL Yes, But YesCQL, No?

Wait, aren't you the guy...?

Page 4: NoSQL Yes, But YesCQL, No?
Page 5: NoSQL Yes, But YesCQL, No?

So, is this a troll?

Page 6: NoSQL Yes, But YesCQL, No?

Gonna Give You Up.

Never.

Page 7: NoSQL Yes, But YesCQL, No?

Naw.(not a troll, honest)

Page 8: NoSQL Yes, But YesCQL, No?

But, why?

Page 9: NoSQL Yes, But YesCQL, No?

Because the API sucks.

Page 10: NoSQL Yes, But YesCQL, No?

“Thrift sucks, ergo the API sucks”

● Generated code (C++ compiler).● Loads of languages, but varying levels of

support.● PHP anyone?

● Upstream alternating between extremes of combativeness and apathy.● Patches ignored, (or refused).● Loads of (serious )bugs ignored for long periods.● Infrequent releases.

Page 11: NoSQL Yes, But YesCQL, No?

“Avro Does Not Suck, so...”

1. Avro

2. Something, something, something

3. Profit!

Page 12: NoSQL Yes, But YesCQL, No?

And the API still sucks.

Page 13: NoSQL Yes, But YesCQL, No?

Brass Tacks

● Unstable● Too tightly coupled to internal APIs

● Too difficult to use● Very little abstraction (forces clients to abstract)● Poor mental fit for query/data models

Page 14: NoSQL Yes, But YesCQL, No?

Back to the drawing board

● RPC (Thrift, Avro, Protobuf, etc)● REST● Query language● Etc, etc

Page 15: NoSQL Yes, But YesCQL, No?

Back to the drawing board

● RPC (Thrift, Avro, Protobuf, etc)● Easy to implement● Performant

● REST● Query language● Etc, etc

Page 16: NoSQL Yes, But YesCQL, No?

Back to the drawing board

● RPC (Thrift, Avro, Protobuf, etc)● Easy to implement● Performant

● REST● Little need for client abstraction

● Query language● Etc, etc

Page 17: NoSQL Yes, But YesCQL, No?

Back to the drawing board

● RPC (Thrift, Avro, Protobuf, etc)● Easy to implement● Performant

● REST● Little need for client abstraction

● Query language● Little need for client abstraction● Reads well; What you see is what you get● The Devil we all know

● Etc, etc

Page 18: NoSQL Yes, But YesCQL, No?

Grok This

firstname = Column(name="firstname", value="Eric", timestamp=time)

firstcosc = ColumnOrSuperColumn(column=firstname)

lastname = Column(name="lastname", value="Evans", timestamp=time)

lastcosc = ColumnOrSuperColumn(column=lastname)

mutations = []

mutations.append(Mutation(column_or_supercolumn=firstcosc))

mutations.append(Mutation(column_or_supercolumn=lastcosc))

client.batch_mutate(mutation_map={"eevans": {"table": mutations}}, consistency_level=ConsistencyLevel.ONE)

Page 19: NoSQL Yes, But YesCQL, No?

What about this?

UPDATE tableSET firstname=Eric, lastname=Evans WHERE KEY=eevans

Page 20: NoSQL Yes, But YesCQL, No?

Grok This

parent = ColumnParent(column_family="table")colnames = ["firstname", "lastname"]predicate = SlicePredicate(column_names=colnames)row = client.get_slice(key="eevans", column_parent=parent, predicate=predicate, consistency_level=CL.ONE)

Page 21: NoSQL Yes, But YesCQL, No?

And this?

SELECT firstname, lastnameFROM table WHERE KEY = eevans

Page 22: NoSQL Yes, But YesCQL, No?

Official(?) Drivers

● Java (JDBC)● Python (DBAPI2)● Node.js● Twisted● PHP (coming soon?)● Ruby (coming soon?)

Page 23: NoSQL Yes, But YesCQL, No?

More Info

● Docs (doc/cql/CQL.html)● http://www.datastax.com/docs/0.8/api/using_cql● http://caqel.deadcafe.org (live demo!)● cqlsh (interactive shell shipped w/ Python

driver)

Page 24: NoSQL Yes, But YesCQL, No?

Recommended