Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dedlockdave authored Sep 2, 2024
1 parent 337f273 commit f87b359
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions flight-data-ingester/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GreptimeDB Flight

This project demonstrates GreptimeDB's ingesting geo-spatial data using the the
This project demonstrates GreptimeDB's ability to ingest geo-spatial data using the
`greptimedb-ingester-go` client. It selects the last 10 flights that departed in
the last 30 minutes from the configured icao airport code. The ingester script
utilizes the [OpenSky Network API](https://opensky-network.org/apidoc/) to fetch
Expand Down Expand Up @@ -39,7 +39,10 @@ flowchart LR
greptimedb --> grafana
```

after GreptimeDB starts, we use the `ingester` script which uses the go client's [high level api](https://docs.greptime.com/user-guide/ingest-data/for-iot/grpc-sdks/go/#installation) to create the table and insert data. It's dead-simple to perform transformations and data munging on your struct and insert into target GreptimeDB columns by tagging your metric struct accordingly as seen in the `./ingester/dto.go` file .
after GreptimeDB starts, we use the `ingester` script which uses the go client's
[high level api](https://docs.greptime.com/user-guide/ingest-data/for-iot/grpc-sdks/go/#installation)
to create the table and insert data. It's dead-simple to perform transformations and data munging for insertion into target GretimeDB tables.
Create and tag your metric struct accordingly as seen in the `./ingester/dto.go` file.

## Note

Expand Down

0 comments on commit f87b359

Please sign in to comment.