33 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
91
views
Is it expected that the InfluxDB Java v2 SDK works with an InfluxDB v3 instance?
I’m seeking some clarifications regarding my use of the InfluxDB Java Client v2 SDK (com.influxdb:influxdb-client-java) with an InfluxDB v3 instance.
Current Setup:
In my Kafka connectors, I am using ...
0
votes
2
answers
1k
views
Simple example of influxdb-client-python
I am running the script example.py from the influxdb-client-python code base. It runs and writes a data point to a local influxDB instance, for tests and learning purposes only.
From what I understand,...
0
votes
0
answers
50
views
bad timestamp after insert command in influxdb
I am trying to write historical data with timestamp directly to influxdb.
Environment:
influxdb 1.6.3
How to reproduce:
insert command into influx console
INSERT test1,host=server1.hostname,read_ops=...
2
votes
2
answers
467
views
InfluxDB line protocol export without data
I try to export my data from an InfluxDB bucket with the following command:
influxd inspect export-lp --bucket-id 92099289ecc05da7 --engine-path /var/lib/influxdb/engine --output-path ~/backup/...
0
votes
1
answer
206
views
InfluxDB query not returning desired sum across data when using group by time
I am trying to get the total shard sizes from the _internal InfluxDB database. The field is called diskBytes, and it is stored every 10 seconds by default. It is queried by something like
SELECT ...
0
votes
1
answer
166
views
Having issue while inserting data in influxdb using python client
measurement = "measurement"
for column in df.columns:
for index, value in enumerate(df[column]):
point = Point(measurement).field(column, value).time(df['unix_time_column'].iloc[...
1
vote
0
answers
53
views
QuestDB cloud ILP connection error: Failed to read authentication challenge (timed out?): Resource temporarily unavailable (os error 11)
I am following the code example from QuestDB and migrating my data from InfluxDB. I have files exported in ILP format, so I read and send them one by one using:
try:
with Sender(host, port,...
1
vote
1
answer
319
views
How can I load data into QuestDB using the InfluxDB Client Library?
I have a lot of code written using the InfluxDB Java Client, but want to migrate my database to QuestDB without having to change my code. The InfluxDB client libraries use HTTP as a transport method ...
0
votes
1
answer
245
views
QuestDB: LineTcpConnectionContext [151] buffer overflow
I'm experiencing a problem with QuestDB ingestion via the Influx Line Protocol.
The setting is the following: from time to time I create a JSON value (for one column in a table) that has two lists of ...
1
vote
0
answers
103
views
Data persistence in InfluxDB, using influxdb3
While persisting data in influx-db, there is a column name Time which is managed by influx itself. By default the format in which time stored is 2023年08月29日T07:43:46.872Z
I am trying to store the ...
1
vote
0
answers
167
views
Pushing Data To Influx DB From The Command Line Invalid Number Error
I have some iot data in csv format that I would like to push into InfluxDb.
I am using influx write from the command line, but I am getting a parsing error back.
The command I'm running is
influx ...
1
vote
1
answer
1k
views
unable to write in influxdb2 using pandas dataframe
I am trying to write data from a panda's dataframe to influxdb v2.2 using python. However, I am not seeing any data in query.
import pandas as pd
from influxdb_client import InfluxDBClient
from ...
2
votes
1
answer
3k
views
influx write command is throwing error: "unsupported protocol scheme"
I have exported my data from an InfluxDB bucket with the following command:
> influxd inspect export-lp --bucket-id d5f80730ede82d67 --engine-path ~\.influxdbv2\engine --output-path ~\Desktop\my-...
1
vote
0
answers
246
views
InfluxDB different results with different time ranges
Due to a wrong retention setting I’ve lost a whole month of data (November 2022).
As I have the data in another system, I’ve used the "Load Data" → "Line Protocol" → "Write Data" functionality in ...
0
votes
1
answer
401
views
Why is this inner join returning noting, while it should return many lines items
This code executes an innerjoin operation on an influx.db
My expectation is that a new table should be returned with entries that are common for booth input tables. But is does not return is nothing.
...