@@ -48,6 +48,8 @@ data in schemas and tables.
4848- A ** field** is similar to an un-indexed column in an SQL database.
4949- A ** point** is similar to an SQL row.
5050
51+ -- [ via] [ What are series and bucket in InfluxDB ]
52+
5153## Tutorial
5254
5355The tutorial heavily uses Docker to provide services and to run jobs.
@@ -131,25 +133,28 @@ alias crash="docker run --rm -it ghcr.io/crate/cratedb-toolkit:latest crash"
131133You will need your credentials for both CrateDB and InfluxDB.
132134These are, with examples:
133135
134- ** CrateDB Cloud**
135- * Host: ``` purple-shaak-ti.eks1.eu-west-1.aws.cratedb.net ```
136- * Username: ``` admin ```
137- * Password: ``` dZ..qB ```
136+ :::{rubric} CrateDB Cloud
137+ :::
138+ - Host: ``` purple-shaak-ti.eks1.eu-west-1.aws.cratedb.net ```
139+ - Username: ``` admin ```
140+ - Password: ``` dZ..qB ```
138141
139- ** InfluxDB Cloud**
140- * Host: ``` eu-central-1-1.aws.cloud2.influxdata.com ```
141- * Organization ID: ``` 9fafc869a91a3406 ```
142- * All-Access API token: ``` T2..== ```
142+ :::{rubric} InfluxDB Cloud
143+ :::
144+ - Host: ``` eu-central-1-1.aws.cloud2.influxdata.com ```
145+ - Organization ID: ``` 9fafc869a91a3406 ```
146+ - All-Access API token: ``` T2..== ```
143147
144148For CrateDB, the credentials are displayed at time of cluster creation.
145149For InfluxDB, they can be found in the [ cloud platform] itself.
146150
147151Now, same as before, import data from InfluxDB bucket/measurement into
148152CrateDB schema/table.
149153:::{code} shell
154+ export CRATEPW='dZ..qB'
150155ctk load table \
151156 "influxdb2://9f..06: T2 ..==@eu-central-1-1 .aws.cloud2.influxdata.com/testdrive/demo?ssl=true" \
152- --cratedb-sqlalchemy-url="crate://admin: dZ . .qB @purple-shaak-ti.eks1.eu-west-1.aws.cratedb.net :4200/testdrive/demo?ssl=true"
157+ --cratedb-sqlalchemy-url="crate://admin:${CRATEPW} @purple-shaak-ti .eks1.eu-west-1.aws.cratedb.net:4200/testdrive/demo?ssl=true"
153158:::
154159
155160::: {note}
@@ -159,7 +164,8 @@ when working on Cloud-to-Cloud transfers.
159164
160165Verify that relevant data has been transferred to CrateDB.
161166:::{code} shell
162- crash --hosts 'https://admin:dZ..qB@purple-shaak-ti.eks1.eu-west-1.aws.cratedb.net:4200 ' --command 'SELECT * FROM testdrive.demo;'
167+ export CRATEPW='dZ..qB'
168+ crash --hosts 'https://admin:${CRATEPW}@purple-shaak-ti.eks1.eu-west-1.aws.cratedb.net:4200 ' --command 'SELECT * FROM testdrive.demo;'
163169:::
164170
165171## More information
@@ -168,9 +174,8 @@ There are more ways to apply the I/O subsystem of CrateDB Toolkit as
168174pipeline elements in your daily data operations routines. Please visit the
169175[ CrateDB Toolkit InfluxDB I/O subsystem] documentation, to learn more about what's possible.
170176
171- The InfluxDB I/O subsystem is based on the [ influxio] package. Please also
172- check its documentation to learn about more of its capabilities, supporting
173- you when working with InfluxDB.
177+ The InfluxDB I/O subsystem is based on the [ influxio] package. See its
178+ documentation for additional capabilities when working with InfluxDB.
174179
175180:::{note}
176181** Important:** If you discover any issues with this adapter, please
0 commit comments