-
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
[Feature][Connector V2] add gitlab source connector #3408
Conversation
|
@TaoZex @EricJoy2048 @TyrantLucifer @Hisoka-X PTAL thanks. |
Please Add e2e test. |
|
reference mock http server to add e2e test |
this mock test has covered the http use case.This connector is only for gitlab |
The test of restful api focuses on request rules, not result parsing.Can we store keys in |
@ashulin @Hisoka-X @CalvinKirs @TyrantLucifer Please give us some advice. |
# Conflicts: # plugin-mapping.properties # seatunnel-connectors-v2/connector-http/pom.xml # seatunnel-dist/pom.xml
@hailin0 @EricJoy2048 PTAL |
|
||
@Slf4j | ||
@AutoService(SeaTunnelSource.class) | ||
public class GitlabSource extends HttpSource { |
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.
add this method
@Override
public Boundedness getBoundedness() {
if (JobMode.BATCH.equals(jobContext.getJobMode())) {
return Boundedness.BOUNDED;
}
throw new UnsupportedOperationException(xxx);
}
# Conflicts: # plugin-mapping.properties # seatunnel-connectors-v2/connector-http/pom.xml # seatunnel-dist/pom.xml # seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/pom.xml
Purpose of this pull request
Check list
New License Guide