Further data modeling concepts

Further data modeling concepts.

Graph data models can be expanded to encompass complex relationships. The recipe data model can be modified to include new layers of data. The whole graph can be digested better if subgraphs are considered. For instance, let’s look at modifications to the vertex label ingredient.

Consider an ingredient. Many additional properties could be added to an ingredient:

  • category

    vegetable, fruit, pasta, meat

  • nutritional value

    % of vitamins, protein, carbohydrate, fat

  • calories

    number of kcals

dataModelAdvExample1

While it may seem simple to choose the property values for an ingredient, consider the complexity. For instance, category seems straightforward. Depending on the number of categories used to describe the ingredients, it can be more advantageous to create a vertex label or a property for category. Each graph query must start with a vertex or edge label, not a vertex or edge property. To ask the question "what ingredients are dairy products?", the dairy vertex requires one edge hop per ingredient to find all the ingredients categorized as dairy.

dataModelAdvExample2

However, if too many ingredients are dairy, a supernode, defined as a node with too many incoming edges, can slow down queries that are searching for dairy ingredients. Of course, an index on an ingredient category could mean that category is better as a property than as a vertex label.

dataModelAdvExample3

Nutrients are a set number of items, such as vitamin C, vitamin D, calcium, and sodium. Creating a vertex label for nutrient and weighting the edges between ingredient and nutrient with the percentage adds another dimension to the graph. Look at the relationships that result for just one ingredient if the nutrients are each created as a vertex label:

dataModelAdvExample4

and imagine the graph resulting for even one hundred ingredients, let alone thousands of ingredients. Examine whether it is better to create a nutrient vertex label or nutrient vertex properties. The number of indexes on a single vertex label can cause poor performance, so a better choice is to use a collection, map, or user-defined type (UDT) to model the nutrients as vertex label properties.

dataModelAdvExample5

Imagine the possibilities for applications built using the ingredient properties. Look in the refrigerator and discover that you have mushrooms and beef, and query the graph database to find a recipe to cook, such as Beef Stroganoff. With the coming possibility of tagged food in your refrigerator, you could even have your fridge tell you what’s for dinner tonight, given the items stored.

Was this helpful?

Give Feedback

How can we improve the documentation?

© 2024 DataStax | Privacy policy | Terms of use

Apache, Apache Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr, Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered trademarks or trademarks of the Apache Software Foundation or its subsidiaries in Canada, the United States and/or other countries. Kubernetes is the registered trademark of the Linux Foundation.

General Inquiries: +1 (650) 389-6000, info@datastax.com