{"id":46714,"date":"2022-09-09T00:00:00","date_gmt":"2022-09-09T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/"},"modified":"2025-11-13T12:56:07","modified_gmt":"2025-11-13T20:56:07","slug":"analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb","status":"publish","type":"post","link":"https:\/\/www.griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/","title":{"rendered":"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB"},"content":{"rendered":"<p>Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy. Energy costs significantly contribute to the decades-high inflation rates being observed as prices for a variety of goods and services rise. Gas prices fluctuate with the price of crude oil, though not always promptly or to the same degree. Oil is a commodity that is traded globally, so supply and demand on a global level primarily determine its price. When supply outpaces demand, prices fall. In contrast, when demand outpaces supply, prices rise.<\/p>\n<p>Fuel demand fell during COVID-19 because all businesses were shut down, but it has suddenly increased since the pandemic-related reopening of industries around the world. On the other hand, the situation got worse after Russia invaded Ukraine. Since, Russia is the world&#8217;s largest producer and exporter of oil, and because the United States of America, Canada, and many other nations forbade Russia&#8217;s import, fuel prices suddenly increased across the board.<\/p>\n<p>In this article, we will examine fuel prices and its demand globally using the recent dataset through GridDB.<\/p>\n<p><a href=\"https:\/\/github.com\/griddbnet\/Blogs\/tree\/trend_global_guel_prices\"> Full Source Code Here <\/a><\/p>\n<h2>Exporting and Importing Dataset Using GridDB<\/h2>\n<p>GridDB is a highly scalable and optimized in-memory No SQL database that allows parallel processing for higher performance and efficiency, especially for time-series databases. We will be using GridDB&#8217;s node js client, which allows us to connect GridDB to node js and import or export data in real-time.<\/p>\n<p>These are the columns that we would be using in our analysis:<\/p>\n<ol>\n<li>Country: Name of the countries &#8211; Primary key of our database.<\/li>\n<li>Daily Oil Consumption (Barrels): The number of oil barrels required for for daily consumption for each country.<\/li>\n<li>World Share: Percentage of oil consumption for each country.<\/li>\n<li>Yearly Gallons Per Capita: Number of gallons per year pe capita.<\/li>\n<li>Price Per Gallon (USD): Price per gallon in US Dollars.<\/li>\n<li>Price Per Liter (USD): Price per liter in US Dollars.<\/li>\n<li>Price Per Liter (PKR): Price per liter in Pakistani Rupees.<\/li>\n<\/ol>\n<p>To upload the dataset to GridDB, we would read the CSV file that contains the data which is taken from <a href=\"https:\/\/www.kaggle.com\/code\/rahulnayak1\/petrol-prices\/data\">Kaggle<\/a><\/p>\n<p>Now, we will create a GridDB container to pass our database schema to the GridDB to be able to generate the design of the database before inserting the row information. Next, we would insert our data into the GridDB. We have now successfully exported the dataset to the GridDB platform.<\/p>\n<p>On the other hand, to import the dataset from the GridDB platform, we will use TQL, GridDB&#8217;s query language similar to SQL. We will create a container and store the fetched data in it. The next step would be to extract the rows in order of the column info and save it into a data frame to use for data visualization and analysis.<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-js\">var griddb =  require('griddb_node');\n\nconst createCsvWriter = require('csv-writer').createObjectCsvWriter;\nconst csvWriter = createCsvWriter({\n  path: 'out.csv',\n  header: [\n      {id: \"country\", title: \"country\"},\n      {id: \"daily oil consumption (barrels)\", title: \"daily oil consumption (barrels)\"},\n      {id: \"world share\", title: \"world share\"},\n      {id: \"yearly gallons per capita\", title: \"yearly gallons per capita\"},\n      {id: \"price per gallon (USD)\", title: \"price per gallon(USD)\"},\n      {id: \"price per liter (USD)\", title: \"price per liter (USD)\"},\n      {id: \"price per liter (PKR)\", title: \"price per liter (PKR)\"}\n  ]\n});\n\nconst factory = griddb.StoreFactory.getInstance();\nconst store = factory.getStore({\n    \"host\": '239.0.0.1',\n    \"port\": 31999,\n    \"clusterName\": \"defaultCluster\",\n    \"username\": \"admin\",\n    \"password\": \"admin\"\n});\n\nconst conInfo = new griddb.ContainerInfo({\n    'name': \"globalfluctuationsfuelprices\",\n    'columnInfoList': [\n      [\"country\", griddb.Type.STRING],\n      [\"daily oil consumption (barrels)\", griddb.Type.INTEGER],\n      [\"world share\", griddb.Type.STRING],\n      [\"yearly gallons per capita\", griddb.Type.DOUBLE],\n      [\"price per gallon (USD)\", griddb.Type.DOUBLE],\n      [\"price per liter (USD)\", griddb.Type.DOUBLE],\n      [\"price per liter (PKR)\", griddb.Type.DOUBLE]\n    ],\n    'type': griddb.ContainerType.COLLECTION, 'rowKey': true\n});\n\nconst csv = require('csv-parser');\n\nconst fs = require('fs');\nvar lst = []\nvar lst2 = []\nvar i =0;\nfs.createReadStream('.\/dataset\/Petrol Dataset June 20 2022.csv')\n  .pipe(csv())\n  .on('data', (row) => {\n    lst.push(row);\n  })\n  .on('end', () => {\n\n    var container;\n    var idx = 0;\n\n    for(let i=0;i&lt;lst.length;i++){\n\n        lst[i]['daily oil consumption (barrels)'] = parseInt(lst[i][\"daily oil consumption (barrels)\"])\n        lst[i]['yearly gallons per capita'] = parseFloat(lst[i][\"yearly gallons per capita\"])\n        lst[i]['price per gallon(USD)'] = parseFloat(lst[i][\"price per gallon (USD)\"])\n        lst[i]['price per liter (USD)'] = parseFloat(lst[i][\"price per liter (USD)\"])\n        lst[i]['price per liter (PKR)'] = parseFloat(lst[i][\"price per liter (PKR)\"])\n\n\n        console.log(parseFloat(lst[i][\"country\"]))\n    store.putContainer(conInfo, false)\n        .then(cont => {\n            container = cont;\n            return container.createIndex({ 'columnName': 'name', 'indexType': griddb.IndexType.DEFAULT });\n        })\n        .then(() => {\n            idx++;\n            container.setAutoCommit(false);\n            return container.put([String(idx), lst[i]['country'],lst[i][\"daily oil consumption (barrels)\"],lst[i][\"world share\"],lst[i][\"yearly gallons per capita\"],lst[i][\"price per gallon (USD)\"],lst[i][\"price per liter(USD)\"],lst[i][\"price per liter (PKR)\"]]);\n        })\n        .then(() => {\n            return container.commit();\n        })\n\n        .catch(err => {\n            if (err.constructor.name == \"GSException\") {\n                for (var i = 0; i &lt; err.getErrorStackSize(); i++) {\n                    console.log(\"[\", i, \"]\");\n                    console.log(err.getErrorCode(i));\n                    console.log(err.getMessage(i));\n                }\n            } else {\n                console.log(err);\n            }\n        });\n\n    }\n\n\n    store.getContainer(\"globalfluctuationsfuelprices\")\n    .then(ts => {\n        container = ts;\n      query = container.query(\"select *\")\n      return query.fetch();\n  })\n  .then(rs => {\n      while (rs.hasNext()) {\n\n          console.log(rs.next())\n          lst2.push(\n\n                {\n                    'country': rs.next()[1],\n                    \"daily oil consumption (barrels)\": rs.next()[2],\n                    \"world share\": rs.next()[3],\n                    \"yearly gallons per capita\": rs.next()[4],\n                    \"price per gallon (USD)\": rs.next()[5],\n                    \"price per liter (USD)\": rs.next()[6],\n                    \"price per liter (PKR)\": rs.next()[7]\n                }\n          );\n\n      }\n      console.log(lst2)\n\n        csvWriter\n        .writeRecords(lst2)\n        .then(()=> console.log('The CSV file was written successfully'));\n\n      return\n  }).catch(err => {\n      if (err.constructor.name == \"GSException\") {\n          for (var i = 0; i &lt; err.getErrorStackSize(); i++) {\n              console.log(\"[\", i, \"]\");\n              console.log(err.getErrorCode(i));\n              console.log(err.getMessage(i));\n          }\n      } else {\n          console.log(err);\n      }\n  });\n\n  console.log(lst2);\n\n  });<\/code><\/pre>\n<\/div>\n<h2>Data Analysis<\/h2>\n<p>In order to obtain a basic understanding of fuel prices and consumption globally in relation to each of the mentioned countries, we now check our dataset and conduct data analysis.<\/p>\n<p>We have added two columns to create a better understanding of the dataset:<\/p>\n<ol>\n<li>Gallons GDP Per Capita Can Buy &#8211; The number of gallons per person can afford to buy (calculated using GDP Per Capita of their respective countries)<\/li>\n<li>xTimes Yearly Gallons Per Capita Can Buy &#8211; The number of yearly gallons per person can afford to buy.<\/li>\n<\/ol>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/07\/Two_columns.png\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/07\/Two_columns.png\" alt=\"\" width=\"446\" height=\"446\" class=\"aligncenter size-full wp-image-28531\" srcset=\"\/wp-content\/uploads\/2022\/07\/Two_columns.png 446w, \/wp-content\/uploads\/2022\/07\/Two_columns-300x300.png 300w, \/wp-content\/uploads\/2022\/07\/Two_columns-150x150.png 150w, \/wp-content\/uploads\/2022\/07\/Two_columns-230x230.png 230w, \/wp-content\/uploads\/2022\/07\/Two_columns-400x400.png 400w\" sizes=\"(max-width: 446px) 100vw, 446px\" \/><\/a><\/p>\n<p>The aforementioned columns give us insight into people&#8217;s fuel purchasing power, which illustrates how each country&#8217;s economy is impacted by its citizens&#8217; financial situation.<\/p>\n<p>We arranged two columns\u2014Daily Oil Consumption (Barrels) and World Share\u2014in descending order to determine which nation uses the most fuel globally. As the world&#8217;s economic hub and true superpower, the United States consumes the most fuel, as does China which is second on the list, another superpower on the rise.<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption.png\" alt=\"\" width=\"746\" height=\"746\" class=\"aligncenter size-full wp-image-28533\" srcset=\"\/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption.png 746w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-300x300.png 300w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-150x150.png 150w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-230x230.png 230w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-400x400.png 400w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-600x600.png 600w, \/wp-content\/uploads\/2022\/07\/Highest_fuel_consumption-640x640.png 640w\" sizes=\"(max-width: 746px) 100vw, 746px\" \/><\/a><\/p>\n<p>We need to know which country currently has the highest fuel prices after looking at the dataset and the dramatically rising cost of fuel. According to the updated prices as of June 20, 2022, we discovered that North Korea has the shockingly high fuel price per gallon at 14.5 dollars. Because of the US imposing sanctions on North Korea for purchasing items for its nuclear missile programmes, there are political tensions between North Korea and the US.<\/p>\n<h2>Conclusion<\/h2>\n<p>We can infer that as long as Russia&#8217;s invasion of Ukraine persists, fuel prices will probably rise, even in the near term. On the other hand, Russia will be able to start exporting its oil and meet the world&#8217;s fuel demand if this invasion is intervened in and stopped in the near future or the situation is most likely to worsen.<\/p>\n<p>All of this data analysis was done using GridDB because it facilitated quick access to and effective reading, writing, and storing of data.<\/p>\n<p><a href=\"https:\/\/github.com\/griddbnet\/Blogs\/tree\/trend_global_guel_prices\"> Full Source Code Here <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy. Energy costs significantly contribute to the decades-high inflation rates being observed as prices for a variety of goods and services rise. Gas prices fluctuate with the [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":28808,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46714","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>Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.\" \/>\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\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-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=\"2022-09-09T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-13T20:56:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.griddb.net\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"griddb-admin\" \/>\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=\"griddb-admin\" \/>\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\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\"},\"author\":{\"name\":\"griddb-admin\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233\"},\"headline\":\"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB\",\"datePublished\":\"2022-09-09T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:56:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\"},\"wordCount\":821,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\",\"name\":\"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg\",\"datePublished\":\"2022-09-09T07:00:00+00:00\",\"dateModified\":\"2025-11-13T20:56:07+00:00\",\"description\":\"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg\",\"contentUrl\":\"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg\",\"width\":1920,\"height\":1080},{\"@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\/4fe914ca9576878e82f5e8dd3ba52233\",\"name\":\"griddb-admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g\",\"caption\":\"griddb-admin\"},\"url\":\"https:\/\/www.griddb.net\/en\/author\/griddb-admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT","description":"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.","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\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/","og_locale":"en_US","og_type":"article","og_title":"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT","og_description":"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.","og_url":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2022-09-09T07:00:00+00:00","article_modified_time":"2025-11-13T20:56:07+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.griddb.net\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg","type":"image\/jpeg"}],"author":"griddb-admin","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"griddb-admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/"},"author":{"name":"griddb-admin","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/4fe914ca9576878e82f5e8dd3ba52233"},"headline":"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB","datePublished":"2022-09-09T07:00:00+00:00","dateModified":"2025-11-13T20:56:07+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/"},"wordCount":821,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/","url":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/","name":"Analyzing the trend of Global Fluctuations in Fuel Prices Using GridDB | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg","datePublished":"2022-09-09T07:00:00+00:00","dateModified":"2025-11-13T20:56:07+00:00","description":"Energy is one of the most crucial factors for a wide range of businesses, and the abrupt increase in fuel prices has had an effect on the global economy.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/analyzing-the-trend-of-global-fluctuations-in-fuel-prices-using-griddb\/#primaryimage","url":"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg","contentUrl":"\/wp-content\/uploads\/2022\/08\/architecture_1920x1080.jpeg","width":1920,"height":1080},{"@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\/4fe914ca9576878e82f5e8dd3ba52233","name":"griddb-admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5bceca1cafc06886a7ba873e2f0a28011a1176c4dea59709f735b63ae30d0342?s=96&d=mm&r=g","caption":"griddb-admin"},"url":"https:\/\/www.griddb.net\/en\/author\/griddb-admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46714","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\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/comments?post=46714"}],"version-history":[{"count":1,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46714\/revisions"}],"predecessor-version":[{"id":51386,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/posts\/46714\/revisions\/51386"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media\/28808"}],"wp:attachment":[{"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/media?parent=46714"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/categories?post=46714"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.griddb.net\/en\/wp-json\/wp\/v2\/tags?post=46714"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}