{"id":46555,"date":"2017-08-04T00:00:00","date_gmt":"2017-08-04T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/aws-griddb-se-ami\/"},"modified":"2025-11-13T12:54:26","modified_gmt":"2025-11-13T20:54:26","slug":"aws-griddb-se-ami","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/aws-griddb-se-ami\/","title":{"rendered":"Deploying AWS Marketplace GridDB Standard Edition AMIs."},"content":{"rendered":"<p>Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and developers to quickly set up GridDB in the cloud. In this blog post we&#8217;ll look at how to effectively deploy a small cluster. We&#8217;ll create an 8 node cluster, with 5 application servers and 3 GridDB nodes and then run a YCSB to demonstrate it working. Launching the Instances If you&#8217;re new to AWS, after creating and verifying your account, you&#8217;ll need to either upload an SSH public key or create one via the EC2 console. You must upload\/create the key pair in the region you intend to launch the VMs. Now we can head to the market place for the AMIs of both GridDB SE and CentOS 7 that we will be using for the application servers. We use the CentOS 7 AMI instead of the RedHat or Amazon Linux AMI because GridDB AMIs are based off CentOS 7 and having the same base platform may make deploying the solution easier. GridDB:\u00a0<\/p>\n<p><a href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B01N9QMCMF\">https:\/\/aws.amazon.com\/marketplace\/pp\/B01N9QMCMF<\/a> CentOS 7:\u00a0<a href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B00O7WM7QW\">https:\/\/aws.amazon.com\/marketplace\/pp\/B00O7WM7QW<\/a> What instance type to use is going to be very application specific. We know from past experience that YCSB is very CPU-intensive, but not very memory-intensive. This makes the C3\/C4 instances an ideal fit for the application servers. We selected C4 as it has newer processors and faster networking for basically the same cost as C3. Since GridDB will keep as much of the database in-memory as it can, the R3\/R4 instances are more ideal as they contain more memory. R3 includes some SSD storage, but the included sizes are too small as we know from the <a href=\"https:\/\/griddb.net\/newen\/blog\/estimating-requirements-griddb-cluster\/\">estimating blog<\/a> post that you need at approximately 3x as much disk storage as memory for an in-memory database and even more disk storage if the database will grow past memory bounds, so we&#8217;ll create an R4 instance and they can create additional SSD EBS volume later. From their Marketplace pages, we&#8217;ll create three GridDB instances and five CentOS 7 instances with our selected instance types using one click launch. Now we need to create the SSD volumes for the GridDB Servers. From the EC2 console, go to Volumes and then Create New Volume. Once again, checkout the <a href=\"https:\/\/griddb.net\/newen\/blog\/estimating-requirements-griddb-cluster\/\">Estimating blog post<\/a> to determine how large of a volume you&#8217;ll need for your solution. A GP2 volume is a good mix of price and performance and would be recommended for most applications. The availability zone is a very important configuration option: it needs to be the exact same zone as your instances. If your instances are in the us-east-1e zone and you use the default selection of us-east-1a for the Volume zone, you will not be able to attach the volume to your instance. Once you&#8217;ve created the volume, you can then attach it to an instance by selecting and then going to Actions -> Attach Volume.<\/p>\n<h1>Configuring The Instances After your instances have launched, it&#8217;s a good idea to name them all, for example ycsb1-5 and gsserver1-3. We&#8217;ll only manage the other nodes from ycsb1 using ssh, so also upload your private key to it:<\/h1>\n<pre>$ scp ~\/.ssh\/id_rsa ycsb1_public_ip:.ssh\/<\/pre>\n<p>We&#8217;ll use the local IPs for all services, the external IPs are dynamic and will change on reboot. If your application requires consistent external access, you can assign Elastic IPs as required. One annoying thing about AWS is the local IP determination it&#8217;s very random. Rather than having IPs like 172.16.1.10,11,12,13,15 it ends up being more like 172.31.63.83, 172.31.61.5, 172.31.57.184. To get around this, make three files:<\/p>\n<p><em>all_ips:<\/em> Contains a newline separated ll the instance local IPs. <em>ycsb_ips:<\/em> Contains a newline separated list of the application server local IPs. <em>griddb_ips:<\/em> Contains a new line separated list of the GridDB server local IPs. To ease management of the small cluster, we&#8217;ll create two scripts to copy files and run programs on our nodes. Using Puppet or another configuration management system is highly recommended in larger clusters. runcmd.sh takes as input one of the file above plus a string of command arguments to run.<\/p>\n<pre>#!\/bin\/bash\nfor x in `<code>cat $1`<\/code>; do ssh -t centos@$x $2; done<\/pre>\n<p>cpall.sh\u00a0takes as input one of the file above plus a path to copy:<\/p>\n<pre>#!\/bin\/bash\nfor x in `<code>cat $1<\/code>`; do scp -r $2 $x:$3; done<\/pre>\n<h1>Starting the GridDB Servers First we need to partition the attached SSD EBS volume we created above:<\/h1>\n<pre>$ sudo fdisk \/dev\/xvdf\nCommand (m for help): n\nPartition type:\n p primary (0 primary, 0 extended, 4 free)\n e extended\nSelect (default p): p\nPartition number (1-4, default 1): 1\nFirst sector (63-83886079, default 63): \nUsing default value 63\nLast sector, +sectors or +size{K,M,G} (63-83886079, default 83886079): \nUsing default value 83886079\nPartition 1 of type Linux and of size 40 GiB is set\n\nCommand (m for help): w\nThe partition table has been altered!\n\nCalling ioctl() to re-read partition table.\nSyncing disks.<\/pre>\n<p>Then format the newly created partition:<\/p>\n<pre>$ sudo mkfs.ext4 \/dev\/xvdf1\nmke2fs 1.42.9 (28-Dec-2013)\nFilesystem label=\nOS type: Linux\nBlock size=4096 (log=2)\nFragment size=4096 (log=2)\nStride=0 blocks, Stripe width=0 blocks\n2621440 inodes, 10485752 blocks\n524287 blocks (5.00%) reserved for the super user\nFirst data block=0\nMaximum filesystem blocks=2157969408\n320 block groups\n32768 blocks per group, 32768 fragments per group\n8192 inodes per group\nSuperblock backups stored on blocks: \n 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, \n 4096000, 7962624\n\nAllocating group tables: done \nWriting inode tables: done \nCreating journal (32768 blocks): done\nWriting superblocks and filesystem accounting information: done<\/pre>\n<p>There are several pieces of documentation about how to setup GridDB but most of those guides use Community Edition on a private network that supports multicast. Most cloud services including AWS do not support multicast between instances so GridDB must be configured using a fixed list. Now edit \/etc\/fstab with your favorite editor, adding the new volume as follows:<\/p>\n<pre>\/dev\/xvdf1 \/var\/lib\/gridstore\/data ext4 defaults 0 0\u00a0<\/pre>\n<p>You can then mount the new partition and ensure the permissions are correct:<\/p>\n<pre>$ sudo mount \/var\/lib\/gridstore\/data\n$ sudo chown gsadm.gridstore \/var\/lib\/gridstore\/data<\/pre>\n<p>It&#8217;ll automatically be mounted on subsequent reboots. Now you can configure and start GridDB itself. It is best to perform all GridDB configuration as the gsadm user to prevent any possible permission issues in the future. You can switch to the gsadm user with the following command:<\/p>\n<pre>$ sudo su - gsadm<\/pre>\n<p>Edit \/var\/lib\/gridstore\/conf\/gs_cluster.json to look like the following replacing $GRIDDB_1, $GRIDDB_2, and $GRIDDB_3 with the correct IP addresses on all three GridDB servers.<\/p>\n<pre>{\n        \"dataStore\":{\n                \"partitionNum\":128,\n                \"storeBlockSize\":\"64KB\"\n        },\n        \"cluster\":{\n                \"clusterName\":\"AWSCluster\",\n                \"replicationNum\":2,\n                \"heartbeatInterval\":\"5s\",\n                \"loadbalanceCheckInterval\":\"180s\",\n                \"notificationMember\": [\n                        {\n\n                                \"cluster\": {\"address\":\"$GRIDDB_1\", \"port\":10010},\n                                \"sync\": {\"address\":\"$GRIDDB_1\", \"port\":10020},\n                                \"system\": {\"address\":\"$GRIDDB_1\", \"port\":10040},\n                                \"transaction\": {\"address\":\"$GRIDDB_1\", \"port\":10001},\n                        },\n                        {\n\n                                \"cluster\": {\"address\":\"$GRIDDB_2\", \"port\":10010},\n                                \"sync\": {\"address\":\"$GRIDDB_2\", \"port\":10020},\n                                \"system\": {\"address\":\"$GRIDDB_2\", \"port\":10040},\n                                \"transaction\": {\"address\":\"$GRIDDB_2\", \"port\":10001},\n                        },\n                        {\n\n                                \"cluster\": {\"address\":\"$GRIDDB_3\", \"port\":10010},\n                                \"sync\": {\"address\":\"$GRIDDB_3\", \"port\":10020},\n                                \"system\": {\"address\":\"$GRIDDB_3\", \"port\":10040},\n                                \"transaction\": {\"address\":\"$GRIDDB_3\", \"port\":10001},\n                        }\n                ]\n        },\n        \"sync\":{\n                \"timeoutInterval\":\"30s\"\n        }\n}<\/pre>\n<p>For optimum performance of, edit the<\/p>\n<p><em>storeMemoryLimit<\/em> field to 10240MB and the <em>concurrency<\/em> field to 2 in the gs_node.json file. Now set the password for admin user on all three GridDB servers:<\/p>\n<pre>$ gs_passwd\nPassword: \nRetype password: \n$ exit\n<\/pre>\n<p>Finally, edit \/etc\/sysconfig\/gridstore\/gridstore.conf changing CLUSTER_NAME=INPUT_YOUR_CLUSTER_NAME_HERE to CLUSTER_NAME=AWSCluster and set MIN_NODE_NUM=3. Now you can start server process\u00a0on the three GridDB servers:<\/p>\n<pre>$ sudo systemctl enable gridstore\n$ sudo systemctl start gridstore<\/pre>\n<p>If the start succeeds on all three GridDB servers, you can confirm the operation with the gs_stat command. Running it on the master will return a list of all nodes, but running gs_stat on a follower will include only itself and the master:<\/p>\n<pre>\"cluster\": {\n        \"clusterName\": \"AWSCluster\", \n        \"clusterStatus\": \"FOLLOWER\", \n        \"designatedCount\": 3, \n        \"loadBalancer\": \"ACTIVE\", \n        \"master\": {\n                \"address\": \"172.31.57.21\", \n                \"port\": 10040\n        }, \n        \"nodeList\": [\n        {\n               \"address\": \"172.31.57.184\", \n               \"port\": 10040\n        }, \n        {\n               \"address\": \"172.31.57.21\", \n               \"port\": 10040\n        }\n        ], \n        \"nodeStatus\": \"ACTIVE\", \n        \"notificationMode\": \"FIXED_LIST\", \n        \"partitionStatus\": \"NORMAL\", \n        \"startupTime\": \"2017-07-19T00:31:12Z\", \n        \"syncCount\": 6\n }<\/pre>\n<h1>Application Server Configuration Now it&#8217;s time to set up the application servers, unless specified the following needs to be run on each individual node. First, we need to install Java x64 RPM which can be downloaded from\u00a0<\/h1>\n<p><a href=\"http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html\">http:\/\/www.oracle.com\/technetwork\/java\/javase\/downloads\/jdk8-downloads-2133151.html<\/a>.<\/p>\n<pre>$ sudo rpm -Uvh\u00a0<span class=\"s1\">jdk-8u121-linux-x64.rpm<\/span><\/pre>\n<p>The GridDB client is located on the GridDB SE AMI instance, please note that the GridDB SE and CE clients are not compatible you can&#8217;t use a CE client with SE server and vice-versa. You<\/p>\n<p>&#42;can&#42;* copy the RPM files from one of the GridDB server, but their permissions are owned by root:<\/p>\n<pre>$ ssh -t $GRIDDB_1 sudo chmod 755 \/usr\/gridstore\/rpm\n$ ssh -t $GRIDDB_1 sudo chmod 644 \/usr\/gridstore\/rpm\/griddb-se-java_lib-3.1.0-linux.x86_64.rpm.rpm<\/pre>\n<p>Now we can copy and install the RPMS on all of the applications:<\/p>\n<pre>$ scp -r $GRIDDB_1:\/usr\/gridstore\/rpm\/griddb-se-java_lib-3.1.0-linux.x86_64.rpm ~\n$ sudo rpm -Uvh ~\/griddb-se-java_lib-3.1.0-linux.x86_64.rpm<\/pre>\n<p>Finally, we&#8217;ll edit .bashrc to set our CLASSPATH variable:<\/p>\n<pre>export CLASSPATH=:\/usr\/share\/java\/gridstore.jar<\/pre>\n<h1>Setting Up YCSB We will follow the\u00a0Getting Started with YCSB Blog Post but make a few changes to account\u00a0for the FIXED_LIST notification mechanism. We&#8217;ll use the following YCSB options for all of our YCSB commands:<\/h1>\n<pre>YCSB_OPTIONS=\" -p notificationMember=172.31.57.184:10001,172.31.61.151:10001,172.31.57.21:10001 -p clusterName=AWSCluster -p userName=admin -p password=admin -cp \/usr\/share\/java\/gridstore.jar -p fieldlength=100 -p fieldcount=10\"<\/pre>\n<p>Then run a load workload to make sure everything is working:<\/p>\n<pre>$ .\/bin\/ycsb load griddb -P workloads\/workloada $YCSB_OPTIONS<\/pre>\n<p>Then a transactional workload: \u00a0<\/p>\n<pre>$ .\/bin\/ycsb run griddb -P workloads\/workloada $YCSB_OPTIONS<\/pre>\n<p>Once everything is working on one application server node, copy the YCSB directory to the other client nodes and perform testing. If everything works, you&#8217;re ready to move on to the multi-node test.<\/p>\n<h1>Multi-Node YCSB The following script executes five YCSB clients that load 10M rows into GridDB and then runs Workload A, a simple read-write workload. Like the above scripts, you need to replace $GRIDDB_1,2,3 and $YCSB_1,2,3,4,5 with the correct IP addresses.<\/h1>\n<pre>#!\/bin\/bash\n\nCOUNT=10000000\nOPCOUNT=1000000\nLOADSIZE=`expr $COUNT \/ 5`\n\nYCSB_OPTIONS=\"-p notificationMember=$GRIDDB_1:10001,$GRIDDB_2:10001,$GRIDDB_3:10001 -p clusterName=AWSCluster -p userName=admin -p password=admin -cp \/usr\/share\/java\/gridstore.jar -p fieldlength=100 -p fieldcount=10\"\n\necho Loading...\n\n.\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p recordcount=${COUNT} -p insertstart=`expr $LOADSIZE * 0` -p insertcount=${LOADSIZE} -s &\npids=\"$! \"\nssh $YCSB_2 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p recordcount=${COUNT} -p insertstart=`expr $LOADSIZE * 1` -p insertcount=${LOADSIZE} -s &\npids=\"$! $pids\"\nssh $YCSB_3 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p recordcount=${COUNT} -p insertstart=`expr $LOADSIZE * 2` -p insertcount=${LOADSIZE} -s &\npids=\"$! $pids\"\nssh $YCSB_4 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p recordcount=${COUNT} -p insertstart=`expr $LOADSIZE * 3` -p insertcount=${LOADSIZE} -s &\npids=\"$! $pids\"\nssh $YCSB_5 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p recordcount=${COUNT} -p insertstart=`expr $LOADSIZE * 4` -p insertcount=${LOADSIZE} -s &\npids=\"$! $pids\"\n\nwait $pids\n\necho\necho Running...\n.\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p operationcount=${OPCOUNT} -p recordcount=${COUNT} -s\npids=\"$! \"\nssh $YCSB_2 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p operationcount=${OPCOUNT} -p recordcount=${COUNT} -s\npids=\"$! $pids\"\nssh $YCSB_3 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p operationcount=${OPCOUNT} -p recordcount=${COUNT} -s\npids=\"$! $pids\"\nssh $YCSB_4 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p operationcount=${OPCOUNT} -p recordcount=${COUNT} -s\npids=\"$! $pids\"\nssh $YCSB_5 .\/ycsb-0.10.0\/bin\/ycsb load griddb -P ycsb-0.10.0\/workloads\/workloada $YCSB_OPTIONS -p operationcount=${OPCOUNT} -p recordcount=${COUNT} -s\npids=\"$! $pids\"\n\nwait $pids<\/pre>\n<p>Congratulations, you&#8217;re all done. All of the above can be tweaked to find your ideal configuration.*<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and developers to quickly set up GridDB in the cloud. In this blog post we&#8217;ll look at how to effectively deploy a small cluster. We&#8217;ll create an 8 node cluster, with 5 application servers [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":4453,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46555","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>Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and\" \/>\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\/aws-griddb-se-ami\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\" \/>\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-08-04T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"752\" \/>\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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Deploying AWS Marketplace GridDB Standard Edition AMIs.\",\"datePublished\":\"2017-08-04T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\"},\"wordCount\":1279,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\",\"name\":\"Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png\",\"datePublished\":\"2017-08-04T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:26+00:00\",\"description\":\"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png\",\"contentUrl\":\"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png\",\"width\":2000,\"height\":752},{\"@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":"Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT","description":"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and","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\/aws-griddb-se-ami\/","og_locale":"en_US","og_type":"article","og_title":"Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT","og_description":"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and","og_url":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2017-08-04T07:00:00+00:00","article_modified_time":"2025-11-13T20:54:26+00:00","og_image":[{"width":2000,"height":752,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.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":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/"},"author":{"name":"Owen","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Deploying AWS Marketplace GridDB Standard Edition AMIs.","datePublished":"2017-08-04T07:00:00+00:00","dateModified":"2025-11-13T20:54:26+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/"},"wordCount":1279,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/","url":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/","name":"Deploying AWS Marketplace GridDB Standard Edition AMIs. | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png","datePublished":"2017-08-04T07:00:00+00:00","dateModified":"2025-11-13T20:54:26+00:00","description":"Back in April 2017, Toshiba started offering GridDB SE Amazon Machine Images in the AWS Marketplace. These images allow system administrators and","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/aws-griddb-se-ami\/#primaryimage","url":"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png","contentUrl":"\/wp-content\/uploads\/2017\/08\/AmazonWebservices_Logo.svg_.png","width":2000,"height":752},{"@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\/46555","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=46555"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46555\/revisions"}],"predecessor-version":[{"id":51248,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46555\/revisions\/51248"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/4453"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46555"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46555"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46555"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}