It’s the name of a talk I will be giving in the coming weeks. It’s basically about data modelling for unstructured or semi-structured data.

If you are interested I will be giving it at the following conferences:

 

If you have some time to spare, this is basically a write up of the talk introduction:

Promises of agility and schema-less data are always around the corner for NoSQL databases. And the thing is this is all true. You can store unstructured data easily. But you’ll need to apply structure when you come to actually use the data. There are various ways to apply that structure. And we’re going to talk about it today.

But first let’s get into the Structured VS Unstructured topic. Structured data as we know it in databases traditionally refers to columns. A column has a name and a type and is grouped by table. When you try to insert a new line in that table, all of the elements on this line have to correspond to the name and type of each column. You can’t add a new one on the fly or change the type dynamically.

Well you could probably store everything as Strings but it kind of defeats the purpose of using database columns (it’s also worth mentioning most of the column store are coming up with a Json type). So it’s like having a schema. And if what you are trying to store does not fit that schema you’ll get an error.

What is Schemaless anyway?

Being schemaless on the other hand would let you store anything of any type. If you think about programming and data structures like Maps or Dictionaries, they are schemaless structures. If you think about a key/value store, the value can be anything. It can be binary encoded image, a serialized object, JSON, XML, a number, etc..

While there might not be any structure embedded in a binary encoded file, there is one for JSON and XML. We usually refer to it as semi-structured data. They both give you named, typed field and flexibility to add any field at any given time. It’s like an implicit schema. And they both have actual schema specifications like XSD or JSON-SCHEMA.

So most of the time in databases, when you hear about schemaless, it’s actually closer to semi-structured data.

Structured, Unstructured or Semi-Structured, got it, what now?

And of course since you are storing data, you’ll want to use it at one point. So that means roughly three things:

  • You need to write that data
  • You need to read that data
  • You need to map the data store answer to a structure or an object usable by your application

 

These three points coupled to the architecture of the store you are using will raise more questions:

  • What you can use to retrieve data (simple key get? materialized views? query language? )
  • Is your data distributed, replicated, consistent?

 

These points will all have an impact on how you structure your data. And to do that you can add all the specifics of your domain design.

I’ll try to answer these questions as much as possible and by taking Couchbase as example. Couchbase is a distributed Key/Value store and a Document database and makes a good candidate for that.

So join me to learn more about Data Modeling!

Author

Posted by Laurent Doguin, Developer Advocate, Couchbase

Laurent is a Paris based Developer Advocate where he focuses on helping Java developers and the French community. He writes code in Java and blog posts in Markdown. Prior to joining Couchbase he was Nuxeo’s community liaison where he devoted his time and expertise to helping the entire Nuxeo Community become more active and efficient.

Leave a reply