-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into zp/deprecate-etcd
- Loading branch information
Showing
55 changed files
with
233 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# regression test data | ||
src/tests/regress/data/** linguist-vendored | ||
# source test data | ||
scripts/source/test_data/** linguist-vendored | ||
e2e_test/source_legacy/basic/scripts/test_data/** linguist-vendored | ||
# generated grafana dashboard | ||
grafana/risingwave-dashboard.json linguist-generated |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
This folder contains scripts to prepare data for testing sources. | ||
|
||
## Kafka | ||
|
||
`e2e_test/source_legacy/basic/scripts/test_data` contains the data. Filename's convention is `<topic_name>.<n_partitions>`. | ||
|
||
- If `<topic_name>` ends with `bin`, the whole file is a message with binary data. | ||
- If `<topic_name>` ends with `avro_json` or `json_schema`: | ||
- The first line is the schema. Key and value are separated by `^`. | ||
- The rest of the lines are messages in JSON format. Key and value are separated by `^`. | ||
- Produced to Kafka with `schema_registry_producer.py` (serialized to Avro or JSON) | ||
- Otherwise, each line is a message, and key/value is separated by `^`. |
Oops, something went wrong.