Join
Filter plugin : Joinâ
- Author: InterestingLab
- Homepage: https://interestinglab.github.io/seatunnel-docs
- Version: 1.3.0
Descriptionâ
Joining a streaming Dataset/DataFrame with a static Dataset/DataFrame.
Optionsâ
name | type | required | default value |
---|---|---|---|
source_field | string | no | raw_message |
table_name | string | yes | - |
source_field [string]â
Source field, default is raw_message
.
table_name [string]â
Static Dataset/DataFrame name.
Examplesâ
input {
fakestream {
content = ["Hello World,seatunnel"]
rate = 1
}
mysql {
url = "jdbc:mysql://localhost:3306/info"
table = "project_info"
table_name = "access_log"
user = "username"
password = "password"
}
}
filter {
split {
fields = ["msg", "project"]
delimiter = ","
}
join {
table_name = "user_info"
source_field = "project"
}
}