influxdb/ingester
Dom 8f6308fca3
Merge branch 'main' into dom/frame-docs
2023-05-29 09:59:27 +01:00
..
benches fix: Make Table create_or_get be only create 2023-05-24 10:34:30 -04:00
src docs: reflink RecordBatch 2023-05-26 12:07:05 +02:00
tests fix(ingester): re-transmit schema over flight if it changes (#7812) 2023-05-23 14:27:11 +00:00
Cargo.toml chore: use workspace dependencies for `object_store` 2023-05-26 07:03:42 -04:00
README.md fix: Rename router2 to router 2023-05-09 22:01:39 -04:00

README.md

ingester

Quick run

Set up empty catalog db:

mkdir -p /tmp/iox/{wal,obj}

createdb iox_shared
./target/debug/influxdb_iox catalog setup --catalog-dsn postgres:///iox_shared

Run ingester:

./target/debug/influxdb_iox run ingester --api-bind=127.0.0.1:8081 --grpc-bind=127.0.0.1:8042 --wal-directory /tmp/iox/wal  --catalog-dsn postgres:///iox_shared --object-store=file --data-dir=/tmp/iox/obj -v

Run router:

./target/debug/influxdb_iox run router --api-bind=127.0.0.1:8080 --grpc-bind=127.0.0.1:8085 --ingester-addresses=127.0.0.1:8042 --catalog-dsn postgres:///iox_shared -v

Run querier:

./target/debug/influxdb_iox run querier --ingester-addresses=http://127.0.0.1:8042 --api-bind 127.0.0.1:8083 --grpc-bind 127.0.0.1:8082 --catalog-dsn postgres:///iox_shared --object-store=file --data-dir=/tmp/iox/obj -v