File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ For InfluxDB, they can be found in the [cloud platform] itself.
32
32
Now, same as before, import data from InfluxDB bucket/measurement into
33
33
CrateDB schema/table.
34
34
``` shell
35
- export CRATEPW=' dZ..qB'
36
35
ctk load table \
37
36
" influxdb2://${INFLUX_ORG} :${INFLUX_TOKEN} @${INFLUX_HOST} /testdrive/demo?ssl=true" \
38
37
--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.
45
44
46
45
Verify that relevant data has been transferred to CrateDB.
47
46
``` shell
48
- export CRATEPW=' dZ..qB'
49
47
crash --hosts " https://${CRATEDB_USER} :${CRATEDB_PASSWORD} @${CRATEDB_HOST} :4200" --command ' SELECT * FROM testdrive.demo;'
50
48
```
51
49
Original file line number Diff line number Diff line change 1
1
# Data Model
2
2
3
- InfluxDB stores time series data in buckets and measurements. CrateDB stores
3
+ InfluxDB stores time- series data in buckets and measurements. CrateDB stores
4
4
data in schemas and tables.
5
5
6
6
- 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.
10
10
- A ** field** is similar to a non-indexed column in an SQL database.
11
11
- A ** point** is similar to an SQL row.
12
12
13
- > via : [ What are series and bucket in InfluxDB]
13
+ > Source : [ What are series and bucket in InfluxDB]
14
14
15
15
16
16
[ What are series and bucket in InfluxDB ] : https://stackoverflow.com/questions/58190272/what-are-series-and-bucket-in-influxdb/69951376#69951376
You can’t perform that action at this time.
0 commit comments