integration_tests/vector/README.md
This demo showcases how to ingest Vector logs into RisingWave. Data is generated via Vector's demo_logs source,
which generates fake JSON logs. Note that the log format (format: "json") doesn't affect the final encoding that Vector pipes to RisingWave.
Eventually, the data in RisingWave will be like below:
| source_id | data_type | value |
|---|---|---|
| demo | Log | \x7b226d6... |
During CI, the integration test will:
docker compose up -d and start the cluster.create_source.sql.create_mv.sql.query.sql and data_check. The latter contains the RisingWave tables that are supposed to have data.To connect to the RisingWave outside the container via psql:
psql -h localhost -p 4566 -d dev -U root