Skip to content

Commit

Permalink
Add minor fixes to README
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbonas committed Mar 26, 2024
1 parent 08361e8 commit 5caed03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/python/influx-migration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ After meeting the prerequisites:
b. Listing buckets with `influx bucket list -t <destination token> --host <destination host address> --skip-verify`.
c. Using `influx v1 shell -t <destination token> --host <destination host address> --skip-verify` and running `SELECT * FROM <migrated bucket>.<retention period>.<measurement name> LIMIT 100` to view contents of a bucket or `SELECT COUNT(*) FROM <migrated bucket>.<retention period>.<measurment name>` to verify the correct number of records have been migrated.
c. Using `influx v1 shell -t <destination token> --host <destination host address> --skip-verify` and running `SELECT * FROM <migrated bucket>.<retention period>.<measurement name> LIMIT 100` to view contents of a bucket or `SELECT COUNT(*) FROM <migrated bucket>.<retention period>.<measurement name>` to verify the correct number of records have been migrated.
d. By running a query using `influx query -t <destination token> --host <destination host address> --skip-verify 'from(bucket: "<migrated bucket>") |> range(start: <desired start>, stop: <desired stop>)'`. Adding `|> count()` to the query is also a way to verify the correct number of records have been migrated.
Expand All @@ -178,7 +178,7 @@ After meeting the prerequisites:
- (optional) S3 bucket name and credentials, AWS CLI credentials should be set in the OS environment variables.
```
# AWS credentials (for timestream testing)
# AWS credentials
export AWS_ACCESS_KEY_ID="xxx"
export AWS_SECRET_ACCESS_KEY="xxx"
```
Expand Down

0 comments on commit 5caed03

Please sign in to comment.