File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 11# Cloud to Cloud
22
33The 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
55adjustments.
66
77First, helpful aliases:
@@ -32,7 +32,6 @@ For InfluxDB, they can be found in the [cloud platform] itself.
3232Now, same as before, import data from InfluxDB bucket/measurement into
3333CrateDB schema/table.
3434``` shell
35- export CRATEPW=' dZ..qB'
3635ctk 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
4645Verify that relevant data has been transferred to CrateDB.
4746``` shell
48- export CRATEPW=' dZ..qB'
4947crash --hosts " https://${CRATEDB_USER} :${CRATEDB_PASSWORD} @${CRATEDB_HOST} :4200" --command ' SELECT * FROM testdrive.demo;'
5048```
5149
Original file line number Diff line number Diff line change 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
45data 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
You can’t perform that action at this time.
0 commit comments