Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
115 views

I’m using the GridDB Python client to query a container that definitely has rows, but my query returns an empty result set. Inserts succeed, and container.get(row_key) works, so I’m confident data ...
Badhon Ashfaq's user avatar
2 votes
1 answer
87 views

I'm using GridDB Cloud with the Python client (griddb_python) and noticed unexpected overwrite behavior when inserting rows into a TIME_SERIES container that has TIMESTAMP as the row key. Schema ...
VIK's user avatar
  • 94
Tooling
2 votes
0 replies
37 views

I’m using GridDB Cloud with the Python client (griddb_python) and encountering an error when inserting timezone-aware datetime objects into a TIMESTAMP column. Schema import griddb_python as griddb ...
Klc's user avatar
  • 57
0 votes
0 answers
54 views

I'm on the GridDB Cloud Free Tier and unable to access my instance via Web API. Account/Instance Details: Cluster Name: gs_clustermfcloud5197 Database Username: M01KxBop82-admin Web API URL: https:/...
Vijay Siva's user avatar
0 votes
0 answers
57 views

I'm seeing unexpected behavior when using NOT BETWEEN in a GridDB SQL query. Two logically equivalent filters produce different results, specifically regarding rows where the column value is NULL. ...
Nooruddin Lakhani's user avatar
1 vote
1 answer
49 views

I'm trying to create a TimeSeries container in GridDB with microsecond precision for my timestamp column, but I'm getting schema validation errors. Problem When I define a TIMESTAMP with fractional ...
Jessica Williams's user avatar
1 vote
0 answers
49 views

I’m using GridDB Cloud with the Python client (griddb_python) and found a reproducible issue where executing multiple sequential queries on a TimeSeries container causes the second query to return ...
VIK's user avatar
  • 94
0 votes
0 answers
109 views

I am getting error using GROUP BY RANGE in GridDB sql. I am referring to the example mention in the doc https://griddb.org/docs-en/manuals/GridDB_SQL_Reference.html#group-by-range name: trend_data1 ts ...
sayana_dutta's user avatar
1 vote
0 answers
28 views

I’m using GridDB Cloud with the Python client (griddb_python) and have found an issue where executing a TimeSeries aggregation query inside an explicit transaction gives inconsistent or incorrect ...
Klc's user avatar
  • 57
2 votes
1 answer
84 views

I’m using GridDB Cloud with the official Python client to insert real-time IoT data into a time-series container. The script runs continuously, but after a few hours I get a connection timeout and ...
Imtiaz's user avatar
  • 67
2 votes
1 answer
118 views

I’m using GridDB Cloud (Free Tier) with Python to store time-series IoT data. My container currently has around 10 million rows, and it continues to grow daily. Schema: device_id STRING, created_at ...
Imtiaz's user avatar
  • 67
0 votes
0 answers
39 views

I'm using GridDB and trying to insert data into a TimeSeries container. This throws a GSException when I try to put the row. Why does this exception occur, and what is the correct way to insert rows ...
Nooruddin Lakhani's user avatar
1 vote
0 answers
126 views

I’m using GridDB Cloud (Free) with the Python client, and I need to write a batch of rows to a TimeSeries container atomically (all-or-nothing). I'm having trouble figuring out how to turn autocommit ...
Badhon Ashfaq's user avatar
0 votes
0 answers
20 views

The GridDB WebAPI fails to interact with partitioned containers, returning a "Container not existed" error even though the container exists and is accessible via gs_sh. Environment: OS: ...
Nooruddin Lakhani's user avatar
0 votes
0 answers
35 views

I run a 3-node GridDB cluster (replication factor = 2). I insert time-series rows from multiple threads using the Python client, using a TIMESTAMP column as the row-key (client generates timestamps). ...
Zaigham Ali Anjum's user avatar
-1 votes
0 answers
30 views

I’m on GridDB Cloud (Free). For a TimeSeries container I need, for a given :target_ts, the latest row at or before that timestamp per deviceid in one SQL statement. Schema & Seed Data: CREATE ...
Badhon Ashfaq's user avatar
0 votes
1 answer
78 views

Expected result is somewhat hierarchical structure from a single table in griddb cloud as shown in below table, where every row contains hourly data in a way that there is only one device entry per ...
iot_builder's user avatar
2 votes
0 answers
116 views

I’m trying to connect to GridDB Cloud from Python using the Web API to create a container (table), insert a row, and query it. However every request returns a 403 Forbidden error. In my Python script ...
Siraj's user avatar
  • 7
0 votes
0 answers
74 views

I’m on GridDB Cloud (Free). For a TimeSeries container, I want each device to have at most one row per timestamp, i.e., enforce uniqueness on (ts, deviceid). Schema: CREATE TABLE TSDB ( ts TIMESTAMP ...
Badhon Ashfaq's user avatar
0 votes
2 answers
92 views

Considering that GridDB does not provide an INTERVAL keyword and will result in a syntax error, what is the correct syntax for selecting data between NOW() and the previous hour in GridDB/GridDB Cloud?...
iot_builder's user avatar
1 vote
0 answers
171 views

In the scenario where sensor data is attached to a specific string identifier in GridDb/GridDb Cloud, the SQL query should return hourly sensor data only matching with a certain combination of letters....
iot_builder's user avatar
2 votes
0 answers
77 views

I’m working on a demo project to simulate an IoT device using Python and GridDB. I’m trying to connect to GridDB Cloud from a Windows environment. I keep running into the following error: Failed to ...
Siraj's user avatar
  • 7
1 vote
1 answer
87 views

The GridDB server has been configured to use FIXED_LIST instead of MULTICAST and is functioning correctly. While the c_client and Java samples within GridDB operate as intended, the samples for JDBC ...
iot_builder's user avatar
1 vote
1 answer
103 views

I’m working with GridDB Cloud (Free Tier) using the Python client (latest version on Ubuntu 22.04). I have a container called sensor_data with this schema: device_id STRING, created_at TIMESTAMP, ...
Imtiaz's user avatar
  • 67
2 votes
1 answer
89 views

How to create a composite row key in GridDB using NewSQL? I am creating a collection container for storing thermostat data for multiple devices. I want to have the composite key on device_id and ...
sayana_dutta's user avatar
0 votes
1 answer
47 views

I’m using GridDB Cloud (Free Tier) with the official Python client (latest pip release) on Ubuntu 22.04. My container schema looks like this: device_id STRING, created_at TIMESTAMP, temperature DOUBLE ...
Imtiaz's user avatar
  • 67
4 votes
1 answer
155 views

I'm using GridDB TimeSeries and need, for a given time range, the latest row per deviceid (i.e., top-1 by timestamp within each device), returned in one query. Expected output (example for two devices ...
Badhon Ashfaq's user avatar
3 votes
0 answers
99 views

I’m paging through a large time range in a GridDB TimeSeries container and need a pattern that won’t duplicate or skip rows if new data arrives while I’m paging. Schema (TimeSeries): ts (TIMESTAMP, ...
Badhon Ashfaq's user avatar
4 votes
0 answers
138 views

I’m storing IoT readings in a GridDB container and need one row per hour with the true average of the points that actually fall inside each hour (not interpolated values): ts_bucket ...
Badhon Ashfaq's user avatar
0 votes
0 answers
40 views

I’m testing high-throughput ingestion of smart-grid power-meter readings into a GridDB time-series container with a TTL (time-to-live) setting. Multiple workers insert rows for the same meter in near-...
Jeremiah Wafula's user avatar
3 votes
1 answer
99 views

Table schema: CREATE TABLE WeatherReadings ( ts TIMESTAMP, temp DOUBLE ); Sample data: INSERT INTO WeatherReadings (ts, temp) VALUES (TIMESTAMP('2025-08-22T01:05:00Z'), 20.5), (TIMESTAMP('...
Mr Jahangir's user avatar
1 vote
0 answers
55 views

I’m experimenting with GridDB CE for a project where sensor data is stored as JSON objects inside a BLOB column. For example, I have a container defined as: ContainerInfo containerInfo = new ...
Ahmed Ben Khelifa's user avatar
2 votes
0 answers
127 views

I’m testing GridDB Cloud with the C client. I insert a couple of rows into a container, but when I query them back, the row values sometimes come out as NULL (empty), even though I just inserted data. ...
Hassan Saeed's user avatar
1 vote
1 answer
150 views

I am looking for pattern matching in GridDB using NewSQL to return values true when matched and false when not matched. The string can start with 91 followed 33 followed by 8 digit number followed by ...
sayana_dutta's user avatar
1 vote
0 answers
38 views

Can I Define a Custom Partition Key for GridDB Containers Using Node.js? I want to distribute data across GridDB nodes based on a custom column (e.g., region_id) instead of relying on automatic ...
Habib ur Rehman's user avatar
0 votes
0 answers
68 views

I need to add columns to an existing GridDB container in my Python application, but getting a "Container not found" error when trying to modify the ColumnInfo after container creation. ...
Habib ur Rehman's user avatar
-2 votes
1 answer
66 views

I created a collection named ‘orders’ with the below DDL using NewSQL Interface: CREATE TABLE orders ( orderId STRING PRIMARY KEY, customerId STRING, orderDate TIMESTAMP, totalAmount ...
sayana_dutta's user avatar
0 votes
0 answers
31 views

Question GridDB Container Partition Recovery After Node Failure I'm working with a 3-node GridDB cluster and need to implement automatic recovery logic when one node fails. My application creates ...
Muhammad Saleem's user avatar
2 votes
2 answers
139 views

I am using GridDB Cloud for time-series analysis and need to calculate hourly average temperature readings from a table containing sensor data. I want to group my readings into 1-hour intervals and ...
Jahangir Mustafa's user avatar
3 votes
2 answers
113 views

I created a collection container name ‘orders’ with the below DDL using NewSQL Interface: CREATE TABLE orders ( orderId STRING PRIMARY KEY, customerId STRING, orderDate TIMESTAMP, ...
sayana_dutta's user avatar
0 votes
1 answer
70 views

I'm using the SQL statement below to convert the first character of a string column stored in a GridDB collection container to lowercase. I'm using the lower function. However, when the first letter ...
Danilo Silva's user avatar
1 vote
1 answer
100 views

I’m using GridDB 5.3 with the Java client to store IoT sensor readings. Each reading is stored in a collection, and one of the columns contains a JSON payload as a string. Here’s a minimal Java ...
Ahmed Ben Khelifa's user avatar
0 votes
1 answer
52 views

I have two GridDB Cloud containers participating in a one-to-many relationship. The tables layout is shown below: Table Customer (collection container) Name Type Nullity Key Customer_ID INTEGER NOT ...
Danilo Silva's user avatar
2 votes
1 answer
48 views

I'm using GridDB CE v5.0 with the Python client (griddb_python) to manage time-series sensor data. My container schema is: [ ("timestamp", griddb.Type.TIMESTAMP), ("device_id&...
VIK's user avatar
  • 94
2 votes
0 answers
27 views

I'm using GridDB CE v5.0 and the Python client (griddb_python) to store sensor data in a TimeSeries container with this schema: [ ('timestamp', griddb.Type.TIMESTAMP), ('temperature', griddb....
VIK's user avatar
  • 94
1 vote
0 answers
32 views

I'm using GridDB CE v5.0 with the Java client for a time-series IoT data application. Each TimeSeries container logs data like this: class Telemetry { Timestamp timestamp; String deviceId; ...
Klc's user avatar
  • 57
2 votes
1 answer
50 views

I’m using GridDB CE 5.0 with the Java client to store high-frequency time-series data from multiple IoT devices. All sensor readings are stored in a single TimeSeries container, with each row ...
Klc's user avatar
  • 57
2 votes
1 answer
63 views

I'm trying to install the Griddb python client. I cloned the github repo: https://github.com/griddb/python_client.git, and installed maven dependencies successfully with mvn install. Then when I went ...
Omar's user avatar
  • 23
0 votes
0 answers
41 views

I am developing a smart energy monitoring application using node.js and gridDB Cloud WebAPI.I am trying to insert data into container called energy_data,but I consistently receive the following error: ...
Sadaf Farooqi's user avatar
0 votes
0 answers
41 views

I am building a Python application to migrate data from Chado PostgresSQL database into GridDB Cloud,using GridDB's REST API(WebAPI).When i run my application ,the API responds with 403 Forbidden ...
Sadaf Farooqi's user avatar

1
2 3 4 5
12