-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Improve][Doc] Improve the connector-v2 develop doc #8190
Conversation
…che#7959 Supplementary explanations have been provided for the methods and classes that must be implemented during the source development process
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @YOMO-Lee . This PR looks great.
seatunnel-connectors-v2/README.md
Outdated
6.There are several classes that must be implemented on the source side, namely {connector name} Source, {connector name} SourceFactory, {connector name} SourceReader. Please refer to other connectors for details | ||
|
||
7.{Connector Name} SourceFactory needs to be annotated with the **@AutoService (Factory.class)** annotation on the class name, and in addition to the required methods, an additional 'creatSource' method needs to be rewritten | ||
|
||
8.{Connector Name} Source needs to override the getProducedCatalogTables method |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add sink too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But I have only done source development and not sink development, so I am not sure if what I am writing is correct
…che#7959 Additional notes on sink
@hailin0 @liunaijie please review again ,thx |
Supplementary explanations have been provided for the methods and classes that must be implemented during the source development process