{"id":46541,"date":"2017-01-25T00:00:00","date_gmt":"2017-01-25T08:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/building-griddb-azure-cluster\/"},"modified":"2025-11-13T12:54:18","modified_gmt":"2025-11-13T20:54:18","slug":"building-griddb-azure-cluster","status":"publish","type":"post","link":"https:\/\/www.griddb.net\/en\/blog\/building-griddb-azure-cluster\/","title":{"rendered":"Building a GridDB Azure Cluster"},"content":{"rendered":"<p>This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the end user has general knowledge of Cloud Computing Concepts, Linux System Administration, and use of GridDB.<\/p>\n<h1>Install Azure Tools<\/h1>\n<p>For this document, we will assume Windows 8.1 or 10 is being used to control the Azure cluster.<\/p>\n<p>First download and install the Azure PowerShell CmdLets, the Azure Command Line Interface and AzCopy from. <a href=\"https:\/\/azure.microsoft.com\/en-us\/downloads\/\"><strong>https:\/\/azure.microsoft.com\/en-us\/downloads\/<\/strong><\/a><\/p>\n<h1>Create The Base Image<\/h1>\n<p>The first step is to create a disk image used for all 100 nodes in the cluster. First login to portal.azure.com and create the resource group, BASEGRP by clicking on Resource Groups and then and . Then create a Virtual Machine BASEVM by clicking Resource Groups, then BASEGRP, and then . Search for Centos 6.7 and select the OpenLogics image. Choose your desired Basic Settings and Size and in the Settings pane click on Storage Account and Create New picking a unique name such as BASESTOR. Also on the Settings pane click Public IP address and Create New. We can use a dynamic IP as we will create a new IP address resource for the final cluster&#8217;s headnode. Now you can login to host via ssh using a tool such as Putty or MINGW\/ssh using the IP address listed and the user account created. Now we need to create the users that can login to the nodes. This is simple with adduser.<\/p>\n<pre># sudo adduser MYUSER\n# sudo passwd MYUSER<\/pre>\n<p>For each user you create we need to create SSH keys so we can login to other nodes in the cluster without a password.<\/p>\n<pre># sudo su - MYUSER\n$ ssh-keygen -t rsa\n$ cp .ssh\/id_rsa.pub .ssh\/authorized_keys\n$ exit<\/pre>\n<p>We should also do this for the root user:<\/p>\n<pre># ssh-keygen -t rsa\n# cp .ssh\/id_rsa.pub .ssh\/authorized_keys<\/pre>\n<p>If other users should be able to sudo to root, add this line to \/etc\/sudoers<\/p>\n<pre>MYUSER ALL=(ALL)-\u00a0 NOPASSWD: ALL<\/pre>\n<p>Now, we&#8217;re ready to start installing GridDB per the instructions in the<\/p>\n<p><a href=\"http:\/\/www.griddb.org\/griddb_nosql\/manual\/GridDB_RPM_InstallGuide.html\">GridDB Community Edition RPM Install Guide<\/a>. If you&#8217;re using GridDB SE or AE, the details may be slightly different. Please refer to the <a href=\"https:\/\/griddb.net\/en\/docs\/GridDB_QuickStartGuide.html#sec-2.2.2\">GridDB SE\/AE Quick Start<\/a>\u00a0for more information.<\/p>\n<pre>#\u00a0rpm -Uvh\u00a0https:\/\/github.com\/griddb\/griddb_nosql\/releases\/download\/v3.0.0\/griddb_nosql-3.0.0-1.linux.x86_64.rpm<\/pre>\n<p>We&#8217;re going to use a profile script to set the GridDB environment variables, as root create \/etc\/profile.d\/griddb_nosql.sh:<\/p>\n<pre>#!\/bin\/bash\nexport GS_HOME=\/var\/lib\/gridstore\nexport GS_LOG=$GS_HOME\/log<\/pre>\n<p>You can log out and then back in and the settings will be applied. GridDB has two configuration files which we have created for a 24 node cluster and are included in the ZIP file at the bottom of this page. Copy\u00a0gs_cluster.json and gs_node.json to their correct location in in $GS_HOME\/conf<\/p>\n<pre># cp GridDBAzureFiles\/gs_*.json \/var\/lib\/gridstore\/conf<\/pre>\n<p>Now you create the GridDB password for admin.<\/p>\n<pre>$ bin\/gs_passwd admin (input your_password)<\/pre>\n<p>Then de-provision the the node so we can capture the image.<\/p>\n<pre>$ sudo waagent --deprovision<\/pre>\n<p>Then stop and delete the VM from the Azure portal by clicking on Virtual Machines, BASEVM, Delete, and following the instructions.<\/p>\n<h1>Deploy The Cluster<\/h1>\n<p>Prepare the Azure environment for every cmd.exe window you use:<\/p>\n<pre>&gt; azure login\n&gt; azure account set MY_SUBSCRIPTION<\/pre>\n<p>To do a mass deployment with azure, you need two files that define your nodes and their parameters; nodes.json and params.json respectively. These files have been included in a zipfile at the bottom of this page. Editing nodes.json is only required if you wish to change the size of the YCSB cluster as it currently contains 24 nodes. Simply delete or add node definitions within the file as necessary. You will need to edit the params.json file to contain the correct values. storageAccountName is set to the same storage account used for the original node and\u00a0<\/p>\n<p><span class=\"s1\">sourceVhdFilename is set to just the filename used for the original node. These values can be found in the Azure portal by going to the node, then Disks, the entry under OS Disks and parsing the URL. The first sub-domain is the storage account, while the actual filename becomes sourceVhdFilename.<\/span> <span class=\"s1\">For example, with a URL such as https:\/\/griddbtestdisks.blob.core.windows.net\/vhds\/griddbtest120161220.vhd, the storageAccountName is griddbtestdisks and the sourceVhdFilename is\u00a0griddbtest120161220.vhd.\u00a0<\/span> Now, we can deploy the nodes.<\/p>\n<pre>&gt; azure group deployment create -f nodes.json\u00a0-e params.json -g CLUSTER<\/pre>\n<p>This will take some time, once the nodes are deployed they will be running and billing.<\/p>\n<p>Since we need to be access the cluster, so we need to add a public IP to node1. In the Azure Portal, go to Virtual machines, node1, Network Interfaces, nic1, &#8220;IP Configurations&#8221;, &#8220;ipconfig1&#8221;, Public IP address Enabled, IP Address, Create New, enter a desired name as CLUSTERIP, select Static, Okay, and finally Save on the nic1 pane.<\/p>\n<h1>Starting GridDB on the Cluster<\/h1>\n<p>Now we can SSH to the IP Address we just created and start working with the Azure VMs. The first thing we want to use is a small script that enables us to run commands on all VMs at the same time. Create runcmd.sh in your favorite editor:<\/p>\n<pre>#!\/bin\/bash\n\nfor x in `seq 4 27`; do\n    sudo ssh  -o StrictHostKeyChecking=no 10.0.0.$x \"$@\" &\n    pids[$x]=$!\ndone\nfor x in `seq 4 27`; do\n    wait ${pids[$x]}\ndone\n\n<\/pre>\n<p>Make it executable:<\/p>\n<pre>$ chmod +x runcmd.sh<\/pre>\n<p>Now we can run commands on all of the hosts with one simple command:<\/p>\n<pre>$ .\/runcmd.sh hostname\n node1\n node2\n node3\n \u20ac\u00a6\n node23\n node24\n<\/pre>\n<p>The next step is to start all of the GridDB servers on all of the nodes:<\/p>\n<pre>runcmd su -c gs_startnode gsadm\nsleep 2;\nruncmd su -c \"gs_joincluster -c defaultCluster -u admin\/admin -n 24\" gsadm\n<\/pre>\n<p>You can check to see if the cluster is running with the gs_stat tool.<\/p>\n<pre># gs_stat -u admin\/your_password\n{\n    \"checkpoint\": {\n        \"archiveLog\": 0,\n        \"backupOperation\": 0,\n        \"duplicateLog\": 0,\n        \"endTime\": 1484681438011,\n        \"mode\": \"RECOVERY_CHECKPOINT\",\n        \"normalCheckpointOperation\": 0,\n        \"pendingPartition\": 0,\n        \"requestedCheckpointOperation\": 0,\n        \"startTime\": 1484681437974\n    },\n    \"cluster\": {\n        \"clusterName\": \"defaultCluster\",\n        \"clusterStatus\": \"FOLLOWER\",\n        \"designatedCount\": 5,\n        \"loadBalancer\": \"ACTIVE\",\n        \"master\": {\n            \"address\": \"10.3.0.5\",\n            \"port\": 10040\n        },\n        \"nodeList\": [\n            {\n                \"address\": \"10.3.0.6\",\n                \"port\": 10040\n            },\n            {\n                \"address\": \"10.3.0.5\",\n                \"port\": 10040\n            }\n        ],\n        \"nodeStatus\": \"ACTIVE\",\n        \"notificationMode\": \"FIXED_LIST\",\n        \"partitionStatus\": \"NORMAL\",\n        \"startupTime\": \"2017-01-17T19:30:36Z\",\n        \"syncCount\": 46\n    },\n    \"currentTime\": \"2017-01-17T19:40:17Z\",\n    \"performance\": {\n        \"batchFree\": 0,\n        \"checkpointFileSize\": 65536,\n... snip ...\n        \"totalRowWrite\": 451987,\n        \"totalWriteOperation\": 451987\n    },\n    \"recovery\": {\n        \"progressRate\": 1\n    },\n    \"version\": \"3.0.0 CE\"\n}\n<\/pre>\n<p>Using gs_stat with the -s with the IP address of the cluster&#8217;s master node (which is automatically determined with a bully algorithm) will give you further details. Now check out how to use the<\/p>\n<p><a href=\"https:\/\/griddb.net\/en\/blog\/getting-started-ycsb-griddb-connector\/\">YCSB GridDB connector<\/a> to benchmark your new cluster. Some of the files used in the post have been made available in a zip file you can download <a href=\"http:\/\/griddb-pro.azurewebsites.net\/wp-content\/uploads\/2017\/01\/GridDBAzureFiles.zip\">here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the end user has general knowledge of Cloud Computing Concepts, Linux System Administration, and use of GridDB. Install Azure Tools For this document, we will assume Windows 8.1 or 10 is [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":22012,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46541","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>Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the\" \/>\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.net\/en\/blog\/building-griddb-azure-cluster\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\" \/>\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=\"2017-01-25T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.griddb.net\/wp-content\/uploads\/2017\/01\/blog_title_03.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/www.griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Building a GridDB Azure Cluster\",\"datePublished\":\"2017-01-25T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\"},\"wordCount\":901,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2017\/01\/blog_title_03.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\",\"name\":\"Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/www.griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2017\/01\/blog_title_03.png\",\"datePublished\":\"2017-01-25T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:18+00:00\",\"description\":\"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2017\/01\/blog_title_03.png\",\"contentUrl\":\"\/wp-content\/uploads\/2017\/01\/blog_title_03.png\",\"width\":870,\"height\":490},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.griddb.net\/en\/#website\",\"url\":\"https:\/\/www.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:\/\/www.griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/www.griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.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:\/\/www.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:\/\/www.griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.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:\/\/www.griddb.net\/en\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT","description":"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the","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.net\/en\/blog\/building-griddb-azure-cluster\/","og_locale":"en_US","og_type":"article","og_title":"Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT","og_description":"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the","og_url":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2017-01-25T08:00:00+00:00","article_modified_time":"2025-11-13T20:54:18+00:00","og_image":[{"width":870,"height":490,"url":"https:\/\/www.griddb.net\/wp-content\/uploads\/2017\/01\/blog_title_03.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/"},"author":{"name":"Owen","@id":"https:\/\/www.griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Building a GridDB Azure Cluster","datePublished":"2017-01-25T08:00:00+00:00","dateModified":"2025-11-13T20:54:18+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/"},"wordCount":901,"commentCount":0,"publisher":{"@id":"https:\/\/www.griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2017\/01\/blog_title_03.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/","url":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/","name":"Building a GridDB Azure Cluster | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/www.griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2017\/01\/blog_title_03.png","datePublished":"2017-01-25T08:00:00+00:00","dateModified":"2025-11-13T20:54:18+00:00","description":"This document explains how to build a multi-node cluster on Microsoft Azure for the testing, development and use of GridDB NoSQL software. It assumes the","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/building-griddb-azure-cluster\/#primaryimage","url":"\/wp-content\/uploads\/2017\/01\/blog_title_03.png","contentUrl":"\/wp-content\/uploads\/2017\/01\/blog_title_03.png","width":870,"height":490},{"@type":"WebSite","@id":"https:\/\/www.griddb.net\/en\/#website","url":"https:\/\/www.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:\/\/www.griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/www.griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.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:\/\/www.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:\/\/www.griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.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:\/\/www.griddb.net\/en\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46541"}],"version-history":[{"count":1,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46541\/revisions"}],"predecessor-version":[{"id":51235,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46541\/revisions\/51235"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media\/22012"}],"wp:attachment":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}