Skip to content

Commit ac74004

Browse files
committed
Integrate/InfluxDB: Implement suggestions by CodeRabbit
1 parent 92dd621 commit ac74004

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/integrate/influxdb/cloud.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ For InfluxDB, they can be found in the [cloud platform] itself.
3232
Now, same as before, import data from InfluxDB bucket/measurement into
3333
CrateDB schema/table.
3434
```shell
35-
export CRATEPW='dZ..qB'
3635
ctk load table \
3736
"influxdb2://${INFLUX_ORG}:${INFLUX_TOKEN}@${INFLUX_HOST}/testdrive/demo?ssl=true" \
3837
--cluster-url="crate://${CRATEDB_USER}:${CRATEDB_PASSWORD}@${CRATEDB_HOST}:4200/testdrive/demo?ssl=true"
@@ -45,7 +44,6 @@ when working on Cloud-to-Cloud transfers.
4544

4645
Verify that relevant data has been transferred to CrateDB.
4746
```shell
48-
export CRATEPW='dZ..qB'
4947
crash --hosts "https://${CRATEDB_USER}:${CRATEDB_PASSWORD}@${CRATEDB_HOST}:4200" --command 'SELECT * FROM testdrive.demo;'
5048
```
5149

docs/integrate/influxdb/model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data Model
22

3-
InfluxDB stores time series data in buckets and measurements. CrateDB stores
3+
InfluxDB stores time-series data in buckets and measurements. CrateDB stores
44
data in schemas and tables.
55

66
- A **bucket** is a named location with a retention policy where time series data is stored.
@@ -10,7 +10,7 @@ data in schemas and tables.
1010
- A **field** is similar to a non-indexed column in an SQL database.
1111
- A **point** is similar to an SQL row.
1212

13-
> via: [What are series and bucket in InfluxDB]
13+
> Source: [What are series and bucket in InfluxDB]
1414
1515

1616
[What are series and bucket in InfluxDB]: https://stackoverflow.com/questions/58190272/what-are-series-and-bucket-in-influxdb/69951376#69951376

0 commit comments

Comments
 (0)