-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
[hotfix] [DOC] Fix missing areas in the development documentation #7959 #7967
base: dev
Are you sure you want to change the base?
Conversation
…che#7959 Supplementary explanations have been provided for the methods and classes that must be implemented during the source development process
…#7959 Supplementary explanations have been provided for the methods and classes that must be implemented during the source development process
seatunnel-connectors-v2/README.zh.md
Outdated
|
||
4.将连接器信息添加到在项目根目录的plugin-mapping.properties文件中. | ||
|
||
5.将连接器添加到seatunnel-dist/pom.xml,这样连接器jar就可以在二进制包中找到. | ||
|
||
6.source端有几个必须实现的类,分别是{连接器名}Source、{连接器名}SourceFactor、{连接器名}SourceReader,具体可以参考其他连接器 |
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.
missing character 'y', {连接器名}SourceFactor -> {连接器名}SourceFactory
seatunnel-connectors-v2/README.md
Outdated
@@ -134,7 +139,7 @@ completed by implementing this interface. | |||
these 100 pieces of data for batch processing. Stream processing does not have this requirement, so most SourceReaders | |||
with integrated stream batches will have the following code: | |||
|
|||
```java |
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.
Why delete code type?
seatunnel-connectors-v2/README.zh.md
Outdated
@@ -103,7 +108,7 @@ SeaTunnel为与计算引擎进行解耦,设计了新的连接器API,通过 | |||
中调用`SourceReader.Context.signalNoMoreElement` | |||
通知SeaTunnel没有数据读取了,那么就可以利用这100条数据进行批处理。流处理没有这个要求,那么大多数流批一体的SourceReader都会出现如下代码: | |||
|
|||
```java |
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.
Why delete code type?
Supplementary explanations have been provided for the methods and classes that must be implemented during the source development process