{"id":46581,"date":"2018-02-21T00:00:00","date_gmt":"2018-02-21T08:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/griddb-editions-compared\/"},"modified":"2025-11-13T12:54:42","modified_gmt":"2025-11-13T20:54:42","slug":"griddb-editions-compared","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/griddb-editions-compared\/","title":{"rendered":"GridDB Community and Standard Edition Compared"},"content":{"rendered":"<h1 id=\"intro\">Introduction<\/h1>\n<p>GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor. Both editions provide ACID compliance, high scalability, and high performance through an in-memory architecture. They also all provide high reliability and availability due to its hybrid cluster architecture. This blog intends to reveal the biggest differentiators between the different editions. This will naturally lead to some real-life \u00e2\u20ac\u201d although limited \u00e2\u20ac\u201d examples or scenarios in which one edition may be superior to another.<br \/>\n<b>GridDB Community Edition (CE)<\/b> is the free and open-source version. This version can be considered as the most basic version of GridDB, though it still provides many benefits and features over other NoSQL databases. GridDB CE is available under the AGPLv3 license and was built with high performance, scalability, and fault tolerance in mind.<br \/>\n<b>GridDB Standard Edition (SE)<\/b> is the commercial version of GridDB. GridDB SE provides extra software support with updates, patches and provides new tools and features not seen in Community Edition. These include online node additions, a web dashboard, a command-line shell for cluster management, and spatial data types.<\/p>\n<h2 id=\"common \">Common Features<\/h2>\n<h4>Catered to IoT Data<\/h4>\n<p>GridDB is tailored for IoT data by using a key-container model of storing and accessing data. In many IoT applications, many devices report data very frequently and have timestamps associated with them. GridDB provides a <b>TimeSeries<\/b> container that can handle timestamp data that arrive at high rates. TimeSeries containers provide aggregation and sampling functions along with data compression as a way to save storage space.<br \/>\n<img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2018\/01\/containers_intro.gif\" alt=\"\" width=\"512\" height=\"162\" class=\"aligncenter size-full wp-image-20012\" \/><\/p>\n<h4>High Performance<\/h4>\n<p>GridDB uses a <i>Memory First, Storage Second<\/i> approach to accessing data. Frequently accessed data is stored in-memory and preferably within the same block. GridDB&#8217;s precise and effective use of multi-threading and CPU allocation reduce the overhead of database operations. Performance is further increased through parallel processing within and across nodes. This allows GridDB to make maximal use of memory and CPU.<br \/>\n<a href=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/hybrid_cluster_management.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/hybrid_cluster_management.png\" alt=\"\" width=\"626\" height=\"558\" class=\"aligncenter size-full wp-image-25764\" srcset=\"\/wp-content\/uploads\/2018\/02\/hybrid_cluster_management.png 626w, \/wp-content\/uploads\/2018\/02\/hybrid_cluster_management-300x267.png 300w, \/wp-content\/uploads\/2018\/02\/hybrid_cluster_management-600x535.png 600w\" sizes=\"(max-width: 626px) 100vw, 626px\" \/><\/a><\/p>\n<h2 id=\"griddb-ce\">GridDB Community Edition<\/h2>\n<p><b>GridDB Community Edition<\/b> is the open-source version of GridDB. Version <b>3.0.1<\/b> is free and available for download on the <a href=\"https:\/\/griddb.net\/en\/downloads\/\" target=\"_blank\" title=\"Download GridDB CE RPM\" rel=\"noopener noreferrer\">GridDB Downloads page<\/a> along with its various connectors.  GridDB Community Edition can be deployed in a public cloud environment and has an <a href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B01N5ASG2S\" target=\"_blank\" title=\"GridDB CE AWS AMI\" rel=\"noopener noreferrer\">AMI<\/a> available through AWS. GridDB brings pivotal features like:<\/p>\n<h4>Open Source and Well Documented<\/h4>\n<p>GridDB Community Edition is fully open-source and provides APIs and connectors to several frameworks for developers. GridDB has APIs in C, Java, Python, and Ruby. Developers can use the connectors to YCSB, Apache Spark, Hadoop MapReduce, Kafka, and KairosDB.<br \/>\nSource code for GridDB, its APIs, and its connectors can be viewed on <a href=\"https:\/\/github.com\/griddb\" target=\"_blank\" title=\"GridDB Github\" rel=\"noopener noreferrer\">GitHub<\/a><\/p>\n<h4 id=\"ce-setup\">Setting Up and Adding Nodes in Community Edition<\/h4>\n<p>When using Community Edition, a GridDB cluster can be composed of many nodes. The procedure for adding new nodes is fairly simple and straightforward: simply stop the cluster and rejoin all the nodes (including the <i>new<\/i> node). Then, login as the <code>gsadm<\/code> user on all node machines. From there, have each node in the current cluster leave the cluster. Then stop the node.<br \/>\nOn each of the old nodes:<\/p>\n<pre class=\"prettyprint\">\n$ sudo su - gsadm\n$ gs_leavecluster -u username\/password\n$ gs_stopnode -u username\/password\n<\/pre>\n<p>Now that the cluster is stopped, the new node is ready to be added. Simply ensure that the new node has the same <b>cluster definition file<\/b> (<code>gs_cluster.json<\/code>) as all the other nodes. From there, start all the nodes and join them into the cluster. Now the GridDB cluster is operating and ready for use with the new nodes.<br \/>\nIn this example, we will add a new node at IP address <code>192.168.0.1<\/code> to a cluster named <code>cluster1<\/code> which is made up of <b>3 nodes<\/b>.<br \/>\nOn all the nodes (both old and new), issue:<\/p>\n<pre class=\"prettyprint\">\n$ gs_startnode\n$ gs_joincluster -c cluster1 -u username\/password -n 4 -w\n<\/pre>\n<p>Node entry can also be specified with from another node (as long as all nodes are started with <code>gs_startnode<\/code> beforehand). In this case, the cluster will not begin operation until all 4 nodes have been joined (<code>-n 4<\/code>).<br \/>\nWe will add the new node by issuing:<\/p>\n<pre class=\"prettyprint\">\n$ gs_joincluster -c cluster1 -n 4 -s 192.168.0.1:10040 -u username\/admin\n<\/pre>\n<p>Having seen how to add nodes in an already functioning cluster on Community Edition is important because it will provide some context for the next section.<\/p>\n<h2 id=\"griddb-se\">Key Features of GridDB Standard Edition<\/h2>\n<p>GridDB Standard Edition is the commercial version of GridDB. GridDB Standard Edition gives software support with maintenance releases, bug fixes, patches, updates, and company support 24\/7, 365 days a year. GridDB also provides an <a href=\"https:\/\/aws.amazon.com\/marketplace\/pp\/B01N9QMCMF\/\" target=\"_blank\" title=\"Get GridDB SE on AWS\" rel=\"noopener noreferrer\">AWS AMI<\/a>. GridDB SE brings in useful utilities like:<\/p>\n<h4>Spatial Data Types<\/h4>\n<p>Spatial data are data points that can be mapped and stored as points or as topologies in a coordinate space. Spatial data is used heavily in Geographic Information System (GIS) applications and map information systems. Spatial data that captures aspects of location are also quite frequently in IoT applications. Examples of spatial data include geometries like <i>POINT, LINESTRING, POLYGON<\/i>. Spatial data is represented with <code>GEOMETRY<\/code> columns in GridDB. Developers can add spatial columns and spatial indexing to their containers. One can also make geometric queries using TQL such as spatial intersections. Developers can also create geometry objects and execute geometric functions using the C and Java APIs of GridDB Standard Edition.<br \/>\n<img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2018\/01\/kelsey-knight-452154-300x200.jpg\" alt=\"map\" width=\"300\" height=\"200\" class=\"aligncenter size-medium wp-image-19523\" srcset=\"\/wp-content\/uploads\/2018\/01\/kelsey-knight-452154-300x200.jpg 300w, \/wp-content\/uploads\/2018\/01\/kelsey-knight-452154-768x512.jpg 768w, \/wp-content\/uploads\/2018\/01\/kelsey-knight-452154-1024x683.jpg 1024w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><br \/>\nMore detailed information on Geometric data can be found on the <a href=\"https:\/\/griddb.net\/en\/blog\/using-geometry-values-griddb\/\" title=\"Geometry values in GridDB\">using geometry values<\/a> post.<\/p>\n<h4>Web Management GUI<\/h4>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2018\/01\/gs_admin-monitor.png\" alt=\"performance monitor\" width=\"567\" height=\"432\" class=\"aligncenter size-full wp-image-19783\" srcset=\"\/wp-content\/uploads\/2018\/01\/gs_admin-monitor.png 567w, \/wp-content\/uploads\/2018\/01\/gs_admin-monitor-300x229.png 300w\" sizes=\"(max-width: 567px) 100vw, 567px\" \/><br \/>\nGridDB Standard Edition provides an intuitive, easy-to-use management dashboard application that runs in Apache Tomcat. With the web application, users can see and manage their GridDB clusters and repositories. Users and administrators can also view and manage the configurations, connections, and settings of the nodes with the GridDB cluster, as well as issue and analyze TQL queries. Snapshots can be taken of nodes to view individual nodes and their performances at points in time. Individual containers can be listed and its properties and data can be managed from the dashboard as well. General system information like checkpoint and backup information can also be seen in the GUI application. Errors, logs, and events that have occurred on containers and GridDB clusters are available for listing and analysis through the management GUI are also included.<br \/>\n<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2018\/01\/gs_admin-repos.png\" alt=\"Repository management dashboard\" width=\"953\" height=\"592\" class=\"aligncenter size-full wp-image-19733\" srcset=\"\/wp-content\/uploads\/2018\/01\/gs_admin-repos.png 953w, \/wp-content\/uploads\/2018\/01\/gs_admin-repos-300x186.png 300w, \/wp-content\/uploads\/2018\/01\/gs_admin-repos-768x477.png 768w\" sizes=\"(max-width: 953px) 100vw, 953px\" \/><\/p>\n<h4>Cluster Management Shell<\/h4>\n<p>GridDB provides a command line interpreter to operate on GridDB. This tool is known as <code>gs_sh<\/code> that can be accessed from the <code>gsadm<\/code> user. This command line tool allows a user to manage cluster and data operations in GridDB; clusters can be easily defined and their status and logs can be displayed. Individual nodes can be started and stopped from a cluster in <code>gs_sh<\/code> as well. GridDB containers and triggers can be listed and displayed. Indexes can be added and dropped from containers at will and TQL operations can be performed on containers through the shell.<br \/>\nThe <code>gs_sh<\/code> can be used in two different modes. The first mode offered is <b>interactive mode<\/b> where special GridDB-specific commands can be entered like a traditional command-line. The second mode offered is <b>batch-mode<\/b> which involves the use of a script file in the <code>.gsh<\/code> format that contain series of subcommands to execute on GridDB.<\/p>\n<h4>Online Backup and Online Expansion<\/h4>\n<p>Expansion in a database involves increasing its size and capacity. This translates to adding more nodes so that it may scale out with commodity hardware. For most databases, adding more nodes can only be done when the database is offline. GridDB Standard Edition offers the ability for users to expand their database online without having to stop operation and halt services. When adding new nodes to a cluster in <a href=\"#ce-setup\">Community Edition<\/a>, all the nodes in the cluster must leave the cluster and be restarted. This can be tedious and costly for a large database with many nodes. In Standard Edition, this step can be skipped altogether.<br \/>\nTo add new nodes in GridDB Standard, simply use the <code>gs_appendcluster<\/code> command. Specify the cluster that you wish to add to as well as the IP address and port of the node machine. For example to add a node with IP address <code>192.168.0.3<\/code> to a cluster named <code>largeCluster<\/code> you would issue:<\/p>\n<pre class=\"prettyprint\">\n$ sudo su - gsadm\n$ gs_appendcluster --cluster largeCluster 192.168.0.3:10040 -u username\/password\n<\/pre>\n<p>Standard Edition also features online backup so periodic backups can be executed on a cluster as a safeguard against data corruption or application malfunctions.<\/p>\n<h4>Differential Backup Function<\/h4>\n<p><a href=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/rsz_bkup.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/rsz_bkup.png\" alt=\"\" width=\"695\" height=\"459\" class=\"aligncenter size-full wp-image-25768\" srcset=\"\/wp-content\/uploads\/2018\/02\/rsz_bkup.png 695w, \/wp-content\/uploads\/2018\/02\/rsz_bkup-300x198.png 300w, \/wp-content\/uploads\/2018\/02\/rsz_bkup-600x396.png 600w\" sizes=\"(max-width: 695px) 100vw, 695px\" \/><\/a><br \/>\nGridDB Standard Edition adds a new backup type known as <i>differential or incremental backup<\/i>. In incremental backup, the cluster database is stored in node units in a <i>backup<\/i> directory. For future backups, only the differences between the update block and the last backup get backed up. Updated data blocks are only backed up once a specified baseline is executed. Differential backup can also be done online.<\/p>\n<h4>Export \/ Import Tools for Migration<\/h4>\n<p>Standard Edition provides export and import tools so GridDB nodes can recover from local damages and containers can be migrated, even from an RDB database. The <b>export<\/b> function of GridDB allows developers to export whole clusters, individual databases and containers, user rights, and row sets resulting from search queries. Exported data can be stored either in <i>csv<\/i> or <i>binary<\/i> formats. Individual or multiple containers can be exported into single files known as <i>container data files<\/i> as well.<br \/>\nThe <b>import function<\/b> can be used to migrate a relational database into GridDB. Just like the export function, individual containers, databases, and clusters can be imported in GridDB. The way that the relational database translates to a GridDB database can be specified with a resource definition, an RDB collection function, a mapping function, and a GridDB registration function.<br \/>\n<a href=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/rsz_expimp.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/newen\/wp-content\/uploads\/2018\/02\/rsz_expimp.png\" alt=\"\" width=\"803\" height=\"620\" class=\"aligncenter size-full wp-image-25767\" srcset=\"\/wp-content\/uploads\/2018\/02\/rsz_expimp.png 803w, \/wp-content\/uploads\/2018\/02\/rsz_expimp-300x232.png 300w, \/wp-content\/uploads\/2018\/02\/rsz_expimp-768x593.png 768w, \/wp-content\/uploads\/2018\/02\/rsz_expimp-600x463.png 600w\" sizes=\"(max-width: 803px) 100vw, 803px\" \/><\/a><br \/>\nImports and export processes can be sped up by being executed in parallel. Details and instructions for using the export and import functionality can be found <a href=\"https:\/\/griddb.net\/en\/docs\/documents\/6-5_migration-from-other-databases.php\">in this section<\/a> of the documentation.<\/p>\n<h5 id=\"setup-se\">Setting Up Nodes in Standard Edition<\/h5>\n<p>In GridDB Standard Edition, nodes can be added using either the <code>gsadm<\/code> user from the command-line just like in <a href=\"#ce-setup\">Community Edition<\/a> or by using the <code>gs_sh<\/code> shell. Node variables can be created with the IP and Port numbers of the node machines using <code>gs_sh<\/code>. Cluster variables can be created with many node variables attached to it. The cluster can then be started, joined, or have nodes added to it.<\/p>\n<pre class=\"prettyprint\">\n\/\/ Access gsadm user and gs_sh shell\n$ sudo su - gsadm\n$ gs_sh\n\/\/ Define node\ngs> setnode node0 192.168.0.1 10000\n\/\/ Define cluster and attach cluster to it\ngs> setcluster cluster0 defaultCluster 239.0.0.1 31999 $node0\ngs> joincluster $cluster0 $node0\n\/\/ Additional Nodes can be added using 'appendcluster'\ngs> setnode node2 192.168.0.2 10000\ngs> appendcluster $cluster0 $node2\n<\/pre>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>GridDB provides the best options for your backend database needs regardless of the scale of your application. GridDB Community Edition is well suited for smaller scale IoT applications while giving the benefit of a reliable, high performance database and still remaining open-source. GridDB Standard Edition is tailor-made for larger commercial applications with its additional tools and support for cluster management.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor. Both editions provide ACID compliance, high scalability, and high performance through an in-memory architecture. They also all provide high reliability and availability due to its hybrid cluster architecture. This blog intends to reveal [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":80,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46581","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>GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\" \/>\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=\"2018-02-21T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:54:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Israel\" \/>\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=\"Israel\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\"},\"author\":{\"name\":\"Israel\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740\"},\"headline\":\"GridDB Community and Standard Edition Compared\",\"datePublished\":\"2018-02-21T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\"},\"wordCount\":1684,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\",\"url\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\",\"name\":\"GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png\",\"datePublished\":\"2018-02-21T08:00:00+00:00\",\"dateModified\":\"2025-11-13T20:54:42+00:00\",\"description\":\"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png\",\"contentUrl\":\"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png\",\"width\":200,\"height\":200},{\"@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\/c8a430e7156a9e10af73b1fbb46c2740\",\"name\":\"Israel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g\",\"caption\":\"Israel\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/israel\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT","description":"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.","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:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/","og_locale":"en_US","og_type":"article","og_title":"GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.","og_url":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2018-02-21T08:00:00+00:00","article_modified_time":"2025-11-13T20:54:42+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png","type":"image\/png"}],"author":"Israel","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Israel","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#article","isPartOf":{"@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/"},"author":{"name":"Israel","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/c8a430e7156a9e10af73b1fbb46c2740"},"headline":"GridDB Community and Standard Edition Compared","datePublished":"2018-02-21T08:00:00+00:00","dateModified":"2025-11-13T20:54:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/"},"wordCount":1684,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/","url":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/","name":"GridDB Community and Standard Edition Compared | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage"},"image":{"@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png","datePublished":"2018-02-21T08:00:00+00:00","dateModified":"2025-11-13T20:54:42+00:00","description":"Introduction GridDB offers two different editions (Community or Standard) each of which have an increased number of features relative to its predecessor.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.griddb.net\/en\/blog\/griddb-editions-compared\/#primaryimage","url":"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png","contentUrl":"\/wp-content\/uploads\/2016\/07\/13263830_603296313164252_6978182861002654775_n.png","width":200,"height":200},{"@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\/c8a430e7156a9e10af73b1fbb46c2740","name":"Israel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4df8cfc155402a2928d11f80b0220037b8bd26c4f1b19c4598d826e0306e6307?s=96&d=mm&r=g","caption":"Israel"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/israel\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46581","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/comments?post=46581"}],"version-history":[{"count":1,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46581\/revisions"}],"predecessor-version":[{"id":51269,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46581\/revisions\/51269"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/80"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46581"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46581"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46581"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}