Data modeling is the process of planning a structure to represent how information and relationships between information will be stored in your system.

This post is a brief introduction to data modeling, as well as three progressive types of data models: conceptual data modeling, logical data modeling, and physical data modeling. What do these data models accomplish? Who should be involved in creating them? How are they created?

This is part one of a three part series on how to model data.

What is Data Modeling?

Data modeling is a process that helps you to understand the structures, form, and relationships of information. Just like any model, it’s a simplified and imperfect version of reality. But with careful and considerate work, a well-designed data model will be able to respond to change and handle future requirements.

Why is Data Modeling Important?

Creating a data model is an important step in application development. Data modeling will force your team to make decisions about what data is necessary and how to collect and structure it.

In fact, you can think of a data model as simply a “set of decisions”, assertions, and assumptions. Even if something is modeled incorrectly, those assumptions are written down, and help the team in the future to understand why it was modeled that way. With this baseline of information, the team in the future can more carefully consider if making a change is the right course of action.

Conceptual vs Logical vs Physical Data Modeling

There are three traditional levels of data modeling. Not every team will necessarily follow all three strictly. Often, all three – conceptual, logical, and physical data models – are compressed into one modeling exercise.

However, breaking the process down into these three levels can be valuable. Each step lays down a foundation for the next:

    1. Conceptual – the “what” model
    2. Logical – the “how” of the details
    3. Physical – the “how” of the implementation

Each level of conceptual, physical, and logical data models can involve different roles from your team.

Conceptual Data Model

The conceptual data model can be thought of as the “white board” data model. This model does not go into the “how” at all.

For this model, it’s important to focus on capturing all the types of data (or “entities”) that the system will need. In addition to entities, a conceptual data model will also capture:

    • Attributes: individual properties of an entity. For instance, a “person” entity may have “name” and “shoe size”. An “address” entity may have “zip code” and “city”.
    • Relationships: how an entity connects to other entities. For instance, a “person” entity may have one or more “addresses”.

Along with the entities, their attributes and relationships, a conceptual model can also:

    • Organize scope: which entities are included, but also which are explicitly NOT included.
    • Define business concepts / rules: For instance, are person entities allowed to have multiple addresses? What about multiple emails? Do they need to have a unique identifier?

The conceptual data model is often created by architects in conjunction with business stakeholders and domain experts.

Conceptual Data Model Example

There are many “languages” for describing a conceptual data model. But as long as it’s documented in an accessible way, it can be as easy as boxes and arrows.

Here’s an example of a conceptual diagram that involves two core entities, travel routes (and its associated schedules) and airlines:

conceptual data model example

While these may look like tables in a relational database, the conceptual modeling stage is too early to make a determination about how the data will be stored. That determination comes later: it could be tables, JSON documents, graph nodes, CSV files, blockchain, or any other number of storage mediums.

Logical Data Model

A logical data model is the next step, once the stakeholders have agreed on a conceptual model.

This step involves filling in the details of the conceptual model. It’s still too early to pick a specific DBMS, but this step can help you decide which class of database to use (relational, document, etc). For instance, if you decide relational, then it’s time to decide which tables to create. If you decide document, then it’s time to define the collections.

Decide the details of each individual field/column and relationship as well. This includes data types, sizes, lengths, arrays, nested objects, etc.

The logical model is typically created by architects and business analysts.

Logical Data Model Example

For instance, if going with a relational model, the logical model might look like this:

Logical data model example

However, with a document database, the schedule can be modeled as part of the route, directly. No need for a foreign key, but it’s still helpful to think of it as its own sub-entity. So that logical model might look like this:

Document database logical model example

In the case of a schedule, which has a fairly small, finite footprint, embedding into the same collection makes sense. In the case of, for example, a user making social media posts, which is unbounded, it makes sense to model in separate collections.

Physical Data Model

Once a logical model has been defined, it’s now time to actually implement it into a real database.

If you decided on a relational model, options include SQL Server, Oracle, PostgreSQL, MySQL, etc. However, if your modeling process reveals that your data model is likely to change frequently to adapt to new requirements, you might still consider going with a document database. One of the best choices for this is Couchbase, a “NoSQL” document database that supports familiar relational concepts like JOINs, ACID transactions and flexible JSON data.

The physical data model should include:

    • A specific DBMS (Couchbase, for instance)
    • How data is stored (On disk/RAM/hybrid/etc. Couchbase has a built-in cache to provide the speed of RAM with the durability of disk)
    • How to accommodate replications, shards, partitions, etc. (For Couchbase, sharding and partitioning is automatic. Replication is a drop-down box to select how many replicas you want).

The physical data model is typically created by DBAs and/or developers.

Physical Data Model Example

Here’s an example of a physical model for Couchbase:

Physical data model example for a document database

It’s sometimes helpful to show sample data along with the physical model.

Here’s a sample route document:

And here’s a sample airline document:

This is a simplified view of an actual physical data model. You can sign up for a free trial of Couchbase Capella and start working with this data model (no credit card required).

Difference Between Conceptual, Logical, and Physical Data Models

Each model is a necessary step on a journey to build a useful data model for you applications. A conceptual data model is the highest level, and therefore the least detailed. A logical data model involves more detailed thinking about the implementation without actually implementing anything. Finally, the physical data model draws on the requirements from the logical data model to create a real database.

Advantages of Data Modeling

The advantages of going through the data modeling process all come down to communication:

    • Short term communication among stakeholders to make decisions about what’s important, what the business rules are, and how to implement them.
    • Long term communication through database specifications that can be used to connect your data to other services through ETLs (Couchbase can help you reduce the number of ETLs, as there are a variety of built-in services to help address your expanding use cases – query, text search, caching, analytics, eventing, mobile sync).
    • Communication to help your team more easily identify corrupt or incorrect data.

Disadvantages of Data Modeling

There are costs to data modeling.

    • It can be a potentially long process. It can also be prone to waterfall mentality (e.g. a mistake found during the logical data modeling process could trigger a complete rework of the conceptual modeling process).
    • A physical relational model can be rigid and difficult to change once a physical data model has been created (especially in production).
    • A physical document model is easy to change at any time, but relies on the application layer to enforce constraints and data types.
    • With Couchbase’s document model, you can still use JOIN and ACID transactions when necessary, so the modeling process should be familiar to anyone who is used to relational modeling, but with added flexibility and data structures that line up exactly with application code objects/classes.

If you start the logical modeling process with a document database in mind, you can potentially avoid cycle time and reap flexibility benefits. (Unless you know your data model and requirements don’t change that much, e.g. once a year).

Next Steps and Resources

In part 2, I’ll be writing about the various physical data models, including relational, document, graph, wide-table, etc. This can help you to make decisions about which data model is best for your needs.

In the meantime, here are some more resources for data modeling:

Author

Posted by Matthew Groves

Matthew D. Groves is a guy who loves to code. It doesn't matter if it's C#, jQuery, or PHP: he'll submit pull requests for anything. He has been coding professionally ever since he wrote a QuickBASIC point-of-sale app for his parent's pizza shop back in the 90s. He currently works as a Senior Product Marketing Manager for Couchbase. His free time is spent with his family, watching the Reds, and getting involved in the developer community. He is the author of AOP in .NET, Pro Microservices in .NET, a Pluralsight author, and a Microsoft MVP.

Leave a reply