{"id":46658,"date":"2021-08-04T00:00:00","date_gmt":"2021-08-04T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/composite-row-keys-and-griddb\/"},"modified":"2025-11-13T12:55:31","modified_gmt":"2025-11-13T20:55:31","slug":"composite-row-keys-and-griddb","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/","title":{"rendered":"Composite Row Keys and GridDB"},"content":{"rendered":"<h2>Introduction to Composite Row keys<\/h2>\n<p>A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were added in GridDB v4.3 and allow rows to be uniquely identified by multiple columns within a collection.<\/p>\n<p>Why are composite row keys useful? Well in many cases, one column of the dataset isn&#8217;t unique and you either have to create a column with an incrementing integer or build a string comprised of other column&#8217;s values.<\/p>\n<p><style type=\"text\/css\">\n  .tg  {border-collapse:collapse;border-spacing:0;}\n.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;\n  font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}\n.tg .tg-0pky{border-color:inherit;text-align:left;vertical-align:top}\n<\/style>\n<\/p>\n<table class=\"tg\">\n<thead>\n<tr>\n<th class=\"tg-0pky\">\n        TIMESTAMP\n      <\/th>\n<th class=\"tg-0pky\">\n        Location\n      <\/th>\n<th class=\"tg-0pky\">\n        Data\n      <\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td class=\"tg-0pky\">\n        2021-07-15 21:05:58.898\n      <\/td>\n<td class=\"tg-0pky\">\n        4\n      <\/td>\n<td class=\"tg-0pky\">\n        76.85\n      <\/td>\n<\/tr>\n<tr>\n<td class=\"tg-0pky\">\n        2021-07-15 21:05:58.898\n      <\/td>\n<td class=\"tg-0pky\">\n        6\n      <\/td>\n<td class=\"tg-0pky\">\n        63.66\n      <\/td>\n<\/tr>\n<tr>\n<td class=\"tg-0pky\">\n        2021-07-15 21:05:59.398\n      <\/td>\n<td class=\"tg-0pky\">\n        3\n      <\/td>\n<td class=\"tg-0pky\">\n        56.12\n      <\/td>\n<\/tr>\n<tr>\n<td class=\"tg-0pky\">\n        2021-07-15 21:05:59.998\n      <\/td>\n<td class=\"tg-0pky\">\n        4\n      <\/td>\n<td class=\"tg-0pky\">\n        27.79\n      <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Based on the above schema, no column could be a unique key, but if we combined the TIMESTAMP and location into a composite row key, we can uniquely identify each row. Without a row key, inserting another row with same timestamp or sensor location would append another row to the collection. If timestamp alone was used a row, the second sensor which emit at the same time would overwrite the first one. This is called key collision.<\/p>\n<h3>Creating a Container with a Composite Row Key<\/h3>\n<p>To create a collection with composite row keys, the Column Info object must be specified before setting the list of columns that will comprise the composite row key:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-java\">ContainerInfo containerInfo = new ContainerInfo();\nList&lt;columninfo> columnList = new ArrayList&lt;\/columninfo>&lt;columninfo>();\ncolumnList.add(new ColumnInfo(\"name\", GSType.STRING));\ncolumnList.add(new ColumnInfo(\"phone_number\", GSType.STRING));\ncolumnList.add(new ColumnInfo(\"calls\", GSType.INTEGER));\ncontainerInfo.setColumnInfoList(columnList);\n\ncontainerInfo.setRowKeyColumnList(Arrays.asList(0, 1));\n\nCollection<?, Row> col = store.putCollection(containerName, containerInfo, false);&lt;\/columninfo><\/code><\/pre>\n<\/div>\n<p>We can then add rows to the collection:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-java\">col.setAutoCommit(false);\n\nRow row = col.createRow();\nrow.setString(0, \"John\");\nrow.setString(1, \"123-555-7890\");\nrow.setInteger(2, 10);\ncol.put(row);\ncol.commit();\n\nrow = col.createRow();\nrow.setString(0, \"John\");\nrow.setString(1, \"123-555-4567\");\nrow.setInteger(2, 5);\ncol.put(row);\ncol.commit();\n\nrow = col.createRow();\nrow.setString(0, \"John\");\nrow.setString(1, \"123-555-7890\");\nrow.setInteger(2, 15);\ncol.put(row);\ncol.commit();<\/code><\/pre>\n<\/div>\n<h3>Querying<\/h3>\n<p>You can also query using the Composite Row Key using a Predicate RowKey Map. A Predicate RowKey Map allows you to specify multiple queries by using the Java HashMap interface where the container name is a key and the set of keys as values for that container are the value.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-java\">RowKeyPredicate&lt;Row.Key> predicate = RowKeyPredicate.create(containerInfo);\nMap&lt;String, RowKeyPredicate&lt;Row.Key>> predMap = new HashMap&lt;String, RowKeyPredicate&lt;Row.Key>>();\n\nRow.Key rowKey = store.createRowKey(containerInfo);\nrowKey.setString(0,  \"John\");\nrowKey.setString(1,  \"123-555-7890\");\npredicate.add(rowKey);\n\npredMap.put(containerName, predicate);\n\nMap&lt;String, List&lt;row>> result = store.multiGet(predMap);\n\nRow rrow = result.get(containerName).get(0);\nSystem.out.println(rrow.getString(0)+\" \"+rrow.getString(1)+\" \"+rrow.getInteger(2)); \n    &lt;\/row><\/code><\/pre>\n<\/div>\n<h2>Caveats<\/h2>\n<p>The Composite Row Key implementation in GridDB has some limitations, mainly that it is only available in the Java API. Querying a container with Python or other languages will result in an exception. You can query collections with composite row keys with the JDBC connector but inserting or updating rows isn&#8217;t possible.<\/p>\n<p>Composite Row Keys aren&#8217;t available in Time Series containers but you can use a TIMESTAMP as part of a composite row key.<\/p>\n<h2>Potential Uses<\/h2>\n<p>In a previous blog, we analyzed the NYC Taxi Commission&#8217;s data. In that <a href=\"https:\/\/griddb.net\/en\/blog\/nyc-taxi-open-data-node-js\/\">blog<\/a>, we ran into row key collisions because there were no unique identifiers in the dataset. Lacking unique identifiers and also the lacking row key feature could cause errors by including duplicate trips if the data was ever imported more than once.<\/p>\n<p>There was another article we did on <a href=\"https:\/\/docs.griddb.net\/tutorial\/forecasting\">Time Series Data Forecasting<\/a> in which we experienced a similar phenomenon. In that tutorial, there was an intermediate container which stored aggregations which had an implicit row key collision which could have been prevented by using composite row keys.<\/p>\n<p>In that dataset, each of the ~125 precincts monthly statistics were stored. So when planning out the schema, we couldn&#8217;t just use the precinct as a row key as we wanted to store multiple months of data for one precinct. We also couldn&#8217;t use the timestamp as it would have conflict between precincts, so to prevent row key collisions and duplicated data, we set the row key to a string column that was the precinct and timestamp concatenated. This was obviously a very rudimentary and roundabout way of solving an issue that GridDB&#8217;s composite row key feature would have easily addressed.<\/p>\n<h2>Conclusion<\/h2>\n<p>Composite Row Keys are a useful mechanism to prevent conflicts when other alternatives don&#8217;t meet an application&#8217;s requirements when creating a data design. They present a more elegant solution than managing incremented integers or appending multiple strings together but given GridDB&#8217;s flexibility and overall Key-Container data architecture, the author feels they should be avoided unless necessary.<\/p>\n<p>For example, oftentimes the composite row key can be avoided by giving each sensor ID its own container and having the container name be the sensor&#8217;s ID. In this case, most IoT use cases can realistically avoid this situation. But sometimes it is unavoidable &#8212; and if it is, you can rest easy knowing the composite row exists as an option.<\/p>\n<p>The complete source code in this blog can be found on GridDB.net&#8217;s GitHub repository <a href=\"\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were added in GridDB v4.3 and allow rows to be uniquely identified by multiple columns within a collection. Why are composite row keys useful? Well in many cases, one column [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":22063,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46658","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-04T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:55:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2018\/02\/blog_title_21.png\" \/>\n\t<meta property=\"og:image:width\" content=\"870\" \/>\n\t<meta property=\"og:image:height\" content=\"490\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Owen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Owen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Composite Row Keys and GridDB\",\"datePublished\":\"2021-08-04T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\"},\"wordCount\":694,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/02\/blog_title_21.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\",\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\",\"name\":\"Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2018\/02\/blog_title_21.png\",\"datePublished\":\"2021-08-04T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:55:31+00:00\",\"description\":\"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2018\/02\/blog_title_21.png\",\"contentUrl\":\"\/wp-content\/uploads\/2018\/02\/blog_title_21.png\",\"width\":870,\"height\":490},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"caption\":\"Owen\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT","description":"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/","og_locale":"en_US","og_type":"article","og_title":"Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were","og_url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2021-08-04T07:00:00+00:00","article_modified_time":"2025-11-13T20:55:31+00:00","og_image":[{"width":870,"height":490,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2018\/02\/blog_title_21.png","type":"image\/png"}],"author":"Owen","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Owen","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#article","isPartOf":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/"},"author":{"name":"Owen","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Composite Row Keys and GridDB","datePublished":"2021-08-04T07:00:00+00:00","dateModified":"2025-11-13T20:55:31+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/"},"wordCount":694,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/02\/blog_title_21.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/","url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/","name":"Composite Row Keys and GridDB | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage"},"image":{"@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2018\/02\/blog_title_21.png","datePublished":"2021-08-04T07:00:00+00:00","dateModified":"2025-11-13T20:55:31+00:00","description":"Introduction to Composite Row keys A composite row consists of two of more attributes that identify a unique entity in a database. Composite row keys were","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/composite-row-keys-and-griddb\/#primaryimage","url":"\/wp-content\/uploads\/2018\/02\/blog_title_21.png","contentUrl":"\/wp-content\/uploads\/2018\/02\/blog_title_21.png","width":870,"height":490},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","caption":"Owen"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46658","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/comments?post=46658"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46658\/revisions"}],"predecessor-version":[{"id":51333,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46658\/revisions\/51333"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/22063"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46658"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46658"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46658"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}