Questions tagged [griddb]

GridDB is an open source time series database optimized for IoT and Big Data

GridDB is a highly scalable time series database best suited for Big Data and IoT. It is designed to handle time-sensitive IoT data across numerous sensors while maintaining consistency and durability.

GridDB Community Edition database server and client libraries are open-sourced under the AGPL v3.0 and Apache license respectively.

Useful Links

265 questions
1
vote
0 answers

Griddb time series graphical data representation

I have been working with the griddb and looking to make a dashboard for the data being consumed with it. How to approach this using the griddb console or any other setup which can be used to integrate it into a dashboard to monitor real-time data…
1
vote
0 answers

Is there a way to bulk insert rows into a GridDB container while using the JayDeBeApi in Python?

I am using JayDeBeApi to connect to GridDB and use the standard SQL functionality offered by GridDB to load rows into my container. This is how I currently prepare the statement and execute it. sql_query = "INSERT INTO container_name…
Shuba
  • 21
  • 3
1
vote
0 answers

Error installing and running GridDB on Linux

I am trying to install and run GridDB on a Linux system, but I am encountering an error during the installation process. $ wget https://download.toshiba.com/developer/files/griddb/griddb_ce-4.6.0-1.linux.x86_64.rpm $ sudo rpm -ivh…
1
vote
1 answer

The import com.toshiba cannot be resolved-Java

I'm using VSCode on Ubuntu version 22.04.2, to implement and run some tests according to the GridDB docs available on https://docs.griddb.net/gettingstarted/java/#schema-creation, but I'm unable to run the code because of the following error: "The…
diegao15
  • 61
  • 3
1
vote
0 answers

GridDB: How to handle 'Time-out occurred' error when executing operations in GridDB database?

During my interactions with a GridDB database using Node.js and the griddb-node package, I'm occasionally encountering a 'Time-out occurred' error. It seems to happen when executing long-running operations or queries. How can I handle this error and…
Jeff Smith
  • 41
  • 2
1
vote
0 answers

Handling error handling and exception handling in GridDB effectively in a mission-critical application that uses GridDB as primary data storage

I'm building a mission-critical application that relies on GridDB as the primary data store. As part of ensuring system reliability, I want to establish robust error handling and exception handling practices in my GridDB code. I would like to…
1
vote
0 answers

Having Error inserting JSON data into GridDB using Python

I am working on integrating GridDB with JSON data in Python. I have a JSON file that I want to insert into a GridDB table using the GridDB Python client. However, I am encountering an error while trying to perform the insertion. from griddb_python…
1
vote
0 answers

GridDB: How to resolve 'Container not found' error when accessing a container in GridDB database?

I'm trying to access a container in my GridDB database using Node.js and the griddb-node package. However, I'm encountering a Container not found error even though I have confirmed that the container exists. What could be causing this error, and how…
Jeff Smith
  • 41
  • 2
1
vote
0 answers

Concurrency control mechanisms to be used in GridDB to prevent data conflicts and ensure data integrity during concurrent read and write operations

I'm developing a multi-threaded web application that allows users to simultaneously read and update shared data stored in GridDB. The application experiences heavy concurrency, and I want to ensure that data conflicts are handled correctly to…
1
vote
0 answers

GridDB username, password and OS is not set

I have a GridDB cluster with only one node in it and I want to add node to the existing cluster. The following command adds a new node to the existing cluster setnode node2 192.168.0.5 10044 While executing the above command I am getting an error…
Muhammad Waheed
  • 1,048
  • 1
  • 13
  • 30
1
vote
0 answers

Error integrating GridDB with Docker: Failed to start GridDB container

I'm trying to integrate GridDB with Docker using a Docker Compose configuration. However, I'm encountering an error while starting the GridDB container. The container fails to start, and I receive an error message indicating the issue with the…
1
vote
0 answers

GridDB: How to handle 'Connection refused' error when connecting to GridDB database?

I'm trying to establish a connection to a GridDB database using Node.js and the griddb-node package. However, I keep encountering a 'Connection refused' error. const griddb = require('griddb-node'); try { const factory =…
Jeff Smith
  • 41
  • 2
1
vote
0 answers

Directory of GS_LOG environment variable does not exist

I am having trouble while starting cluster nodes on GridDB gsadm. Using the command in Ubuntu I was starting a node, but now I am getting an error as follows Directory of GS_LOG environment variable does not exist. The command I was using to start…
Muhammad Waheed
  • 1,048
  • 1
  • 13
  • 30
1
vote
0 answers

How to Perform Spatial Operations in GridDB

Since the news spread out about Cyclone Biparjoy, I have been working on a project for Emergency Disaster Awareness System. I used GridDB to store the data and wanted to perform spatial operations to analyze risk zones, plan evacuation routes,…
1
vote
1 answer

GridDB client on WSL

I’m using Windows Subsystem Linux to run GridDB, but after follow all the steps to install it and get running according to official documentation available at https://docs.griddb.net/gettingstarted/wsl/#running-griddb-on-wsl, Besides that, I'm not…
diegao15
  • 61
  • 3
1 2
3
17 18