apache / seatunnel

SeaTunnel is a next-generation super high-performance, distributed, massive data integration tool.
https://seatunnel.apache.org/
Apache License 2.0
8.05k stars 1.82k forks source link

[Discuss] How to support dimension lookup query for transform #7937

Open hailin0 opened 3 weeks ago

hailin0 commented 3 weeks ago

Search before asking

Description

How to support dimension lookup query for transform

And as EtLT data synchronization, I think we need to support lookup query for transform, and I want to hear from you all how you think it can be implemented in SeaTunnel.

Usage Scenario

No response

Related issues

No response

Are you willing to submit a PR?

Code of Conduct

zhdech commented 3 weeks ago

Implementation method: Option 1 for batch strategy: When starting the strategy, connect to the database, query the database, and save the data results to the cache; When each line of data arrives, search for cached data. Option 2 for streaming media strategy: On the basis of 1, regularly refresh cached data to ensure that cached data is updated regularly