Skip to content

Commit 96ad601

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

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

docs/integrate/influxdb/cloud.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cloud to Cloud
22

33
The procedure for importing data from [InfluxDB Cloud] into [CrateDB Cloud] is
4-
similar like the {ref}`standalone variant <influxdb-tutorial>`, with a few small
4+
similar to the {ref}`standalone variant <influxdb-tutorial>`, with a few small
55
adjustments.
66

77
First, helpful aliases:
@@ -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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
(influxdb-data-model)=
12
# Data Model
23

3-
InfluxDB stores time series data in buckets and measurements. CrateDB stores
4+
InfluxDB stores time-series data in buckets and measurements; CrateDB stores
45
data in schemas and tables.
56

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

13-
> via: [What are series and bucket in InfluxDB]
14+
> Source: [What are series and bucket in InfluxDB]
1415
1516

1617
[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)