Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
Kai_Mueller
Advisor
Advisor

Example Use Case for the Document Store


Overview


In part one of this blog series the Document Store was introduced. The most interesting part about this is the possibility to interact with the relational world inside SAP HANA, e.g. joining a collection with a table. Since this is a very abstract feature, the following sections will introduce an example use case including SQL queries for a better and deeper understanding of the SAP HANA JSON Document Store.

Introduction of the Use Case


A web shop for a various kind of products uses SAP HANA as its database. The data is being stored in a simplified data model. This rudimentary model helps to focus on the key points that this blog wants to describe.



  • The Customer table stores all information about the customers of the shop like the name and the address for delivery purposes.

  • Orders are stored in the Order table with a zero to many relationship to the customer table. Since the web shop only needs information about the creation date of an order, only this besides an identifier and the affected customer is saved.

  • Details of an order like the bought products and their amount are stored in OrderPosition table. Each order position belongs to one order and each order needs at least one order position.

  • Information about the offered products of the web shop are stored in the Products table with information like their name and their price.


Scenario


The web shop becomes now more popular and wants to improve the user experience on its website. For that, additional information about the products like artist and genre for CD's or the number of pages and the edition of books should be shown. Besides the simple showing of additional fields, this should also be included into the search functionality, so that customers can search for artists or genre.

Solution 1: Use relational possibilities


Without using any additional SAP HANA non-relational technologies or secondary databases, the following ways are possible to store additional data in a searchable way.

Single Table Inheritance


To enable the database structure to store additional attributes, the single table inheritance pattern could be used. Each new product attribute is stored as a new column in the Product table. This pattern leads to many NULL values and denormalization, because with any new product and its new attributes, the table gets more complex and confusing.


Class Table Inheritance


The class table inheritance pattern will help to get rid of the NULL values and denormalization. For each kind of product, a new table is created with all the needed attributes.



This solution leads to many tables, especially when some attributes only needs to be saved for a subgroup of products categories. In this case, a new hierarchy level is needed. In addition, the application needs to know in which table the concrete product information is stored. If this information isn't directly available (e.g. by context), it could be stored as an additional attribute in the base table or by looking which table contains the id.

Beside the class table inheritance, the concrete table inheritance is also usable. These two approaches differ in the existence of a base class; the concrete inheritance doesn't use one, so all common attributes are stored in the product tables.

Store as an additional column


As a last option, the data can be stored as one string or LOB inside a separate column in the products table. The data could be formatted as simple key-value pairs, JSON or XML. To extract certain field values, e.g. SAP HANA fulltext search or JSON functions could be used, but without using supportive tools the information is mostly hidden.

Solution 2: Use the SAP HANA JSON Document Store


The relational data model solutions for this task are limited, sometimes complex and not flexible at all. The usage of SAP HANA JSON Document Store will help to solve the disadvantages in an easy and flexible way.

For that the Product table is replaced with a collection. Each document in the table should have the same fields as the table and all other attributes optionally.
{ "id": 469, 
"price": 69.05,
"name": "Product 469",
"author": "Muriel Towe",
"pages": 759,
"edition": 4
}
{ "id": 501,
"price": 91.18,
"name": "Product 501",
"artist": "Emile Gain",
"albumname": "AlbumName 1",
"genre": "Country"
}

Alternatively, to the usage of only one collection, multiple collections can be used. Moreover, the Product table can be used as the parent table and only the additional fields are stored inside a collection.

Since the Document Store is a document-oriented database it has no fixed structure which allows dynamic adding or removing of fields for individual documents. This flexibility applies also to the "mandatory" fields because the Document Store can't force the existence of fields. In that case the application has to make sure that the fields exist.

SAP HANA allows joins between collections and tables, so nothing else needs to be changed to the web shop to offer more and more kind of products. The major advantages of this solution are the easy development and fast deployment combined with the probability to change the data model in a more flexible way. Because the Document Store is an integral part of SAP HANA, no secondary database is needed. If JSON is used by the application, the documents could be used from the Document Store without additional formatting or parsing.

Use Case Example Queries


In this section example queries are presented which might be used by the web shop with focus on the special functionalities of the Document Store.

Get the favorite music genre of a customer


The following queries will return the most bought music genre of the customer with the id 2.

With relational possibilities (Class Table Inheritance):
SELECT TOP 1 CD.Genre, COUNT(*) AS "COUNT" FROM WEBSHOP."Customer" C
JOIN WEBSHOP."Order" O On O.CustomerID = C.ID
JOIN WEBSHOP."OrderPosition" OP ON OP.OrderID = O.ID
JOIN WEBSHOP."CD" CD ON CD.ID = OP.ProductID
WHERE C.ID = '2'
GROUP BY CD.Genre
ORDER BY COUNT DESC;

With the Document Store:
WITH productView AS (SELECT "id", "genre" FROM WEBSHOP."ProductCollection" WHERE "genre" IS SET)
SELECT TOP 1 P."genre", COUNT(*) AS "COUNT" FROM WEBSHOP."Customer" C
JOIN WEBSHOP."Order" O On O.CustomerID = C.ID
JOIN WEBSHOP."OrderPosition" OP ON OP.OrderID = O.ID
JOIN productView P ON P."id" = OP.ProductID
WHERE C.ID = '2'
GROUP BY P."genre"
ORDER BY COUNT DESC;

These two statements producing the same result but have a small difference in their SQL. The second statement must use the WITH-SELECT statement to define the fields of the documents selected by the query. The additional WHERE condition in the WITH clause filters all documents without the field genre.

Add and remove fields from documents


The UPDATE statement allows to add and remove fields to the documents. For example, a new attribute called authorDetails for a certain author (in this case Ollie Nesey) needs to be added to all documents which are containing this author:
UPDATE WEBSHOP."ProductCollection" 
SET "authorDetails" = 'This author is special'
WHERE "author" = 'Ollie Nesey';

To remove this field again, UNSET can be used.
UPDATE WEBSHOP."ProductCollection" UNSET "authorDetails";

Return JSON in a SELECT


SELECT can be used to return individual fields, as shown above. Using SELECT *, the entire document is being returned as a string. Moreover, it is possible to define the structure of JSON documents to be returned:
SELECT {
"productID": "id",
"articleName": "name",
"articlePrice": "price",
"articleType": 'book'}
FROM WEBSHOP."ProductCollection"
WHERE "pages" IS SET;

This returns JSON values like:
{ "productID": 469,
"articleName": "Product 469",
"articlePrice": 69.05,
"articleType": "book"
}

Performance Recommendation


When it's needed to use tables and the Document Store together, it is highly recommended to use precondition filters on the used collection as much as possible, as that will increase the overall performance and decrease the memory consumption as well.

Appendix


The model including sample data and all presented queries (including some more) are available in this GitHub repository.

References


Martin Fowler. Patterns of Enterprise Application Architecture (2003)

The SAP HANA JSON Document Store – Introduction (Part 1)

The Document Store in the SAP HANA Administration Guide

Maintenance of Collections in the SAP HANA Developer Guide (XS Advanced)

Document Store Statements in the SQL Reference
13 Comments
former_member194460
Participant
0 Kudos
Hi Experts,

nice blog, but please keep a SHOT at this link.:

https://answers.sap.com/questions/491389/sap-hana-xsa-23-sql-json-docstore-stringify-values.html

Maybe a nice challenge for you guys.

Thanks a lot!
Kai_Mueller
Advisor
Advisor
0 Kudos
Hi Dirk,

I comment on you question.

Best regards,

Kai
Former Member
0 Kudos
Hi Kai, et al,

Data in an LDAP directory server is also name/value pairs that could be converted to JSON with a little code.  Has any requirement been put into providing LDAP data or results of an LDAP search into JSON and making it available to applications with SQL data?  If you look at a typical user object from the SAP Active Directory, there is a long list of attributes and values for each user object that could be made available as a JSON table in DocStore.  The attributes include group membership, address information, manager, Distribution Lists, and potential other useful information.

Are you aware of a way that this is done currently?

Is there a benefit to customers to make LDAP data available as a JSON table in DocStore?

regards,

Alan
Kai_Mueller
Advisor
Advisor
0 Kudos
Hello Alan,

please excuse the late response. I never worked with LDAP, so I'm not an expert regarding this topic.

Since HANA and the DocStore inside of it are a "normal" database, you can just put there the data like you want. I'm not sure, but if you are asking, if HANA can consume LDAP directories then the answer is no, since you are responsible to add the data to the database.

The befits depending on the use case. In general you can search, consume and change the data in an easy way.

Best regards, Kai
0 Kudos
Hi Kai,

Can I run select and insert queries on document store from ABAP using AMDP?
Kai_Mueller
Advisor
Advisor
0 Kudos
Hello Santhosh,

I'm no ABAP developer, but as far as I understand AMDP's you can use anything which is supported in SQLScript, if you using SQLScript as the language and a SAP HANA version which supports the Document Store.

Best regards, Kai
jmalla
Contributor
0 Kudos
It seems the Docstore only supports limited JSON.  If you have arrays, it's not supported.  Also it does not appear to like blank values ""

 

So it seems the JSON functionality in HANA is definitely in it's infancy stages and not ready for real development but only simple prototyping.

 

Regards,

Jay
Kai_Mueller
Advisor
Advisor
Hello Jay,

The SAP HANA Document Store supports JSON completely and can be used in any productive environment even for complex scenarios.

You are right, that empty string are not supported, so INSERT INTO col VALUES(''); will fail. But what is the purpose of this statement? This is not even a JSON. How do you want to query it?

Also arrays on the root level are not supported, since only objects are allows. That mans that INSERT INTO col VALUES('[1,2]') will fail. This is a planned limitation, since how should the following be handled:

  1. CREATE COLLECTION col;

  2. INSERT INTO col VALUES('{a:2}');

  3. INSERT INTO col VALUES('[2]');

  4. SELECT [0] FROM col; --> what is the return for the first document?


I think that these planned limitations are well designed are not blocking for normal scenarios.

Btw, beside the Document Store HANA has also built-in JSON functions like JSON_TABLE, JSON_VALUE and JSON_QUERY which can be used on JSON documents stored in tables.

Best regards, Kai
former_member666834
Discoverer
0 Kudos
Hi Kai, nice blog. I had one question- Is there is a way to specify more than one collection in a single .hdbcollection file? For eg:

COLLECTION TABLE MyCollection1;

COLLECTION TABLE MyCollection2;

// and so on...
Kai_Mueller
Advisor
Advisor
0 Kudos
Hello Shrikant,

I'm not aware that this works. Just try it and if it fails then it is not supported.

Best regards,

Kai
former_member523146
Participant
0 Kudos
Hi!

I'm currently evaluating the Document Store and found no way of SELECT'ing the keys in a document (like jsonb_object_keys() for Postgres' JSONB store) - am I missing something?

 

Cheers,

Stefan
Kai_Mueller
Advisor
Advisor
0 Kudos
Hello Stefan,

I'm sorry, but I guess such a function is not available in the SAP HANA JSON Document Store.

Best regards, Kai
former_member523146
Participant
0 Kudos
Thanks Kai for the quick reply.