You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/10/05 19:58:05 UTC

[GitHub] [incubator-seatunnel] liugddx opened a new issue, #2975: [Bug] [seatunnel-api-flink] Use the constructor instead of setting the `pipeline.jars`

liugddx opened a new issue, #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975

   ### Search before asking
   
   - [X] I had searched in the [issues](https://github.com/apache/incubator-seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues.
   
   
   ### What happened
   
   this is a subtask of #2927 
   Now,Later versions of FLink do not allow direct set up `Configuration`,the `Configuration` is unmodifiable,and i think constructors are more stable,so i want to set the configuration via the constructor.
   
   
   ### SeaTunnel Version
   
   dev
   
   ### SeaTunnel Config
   
   ```conf
   -
   ```
   
   
   ### Running Command
   
   ```shell
   -
   ```
   
   
   ### Error Exception
   
   ```log
   java.lang.UnsupportedOperationException: The configuration is unmodifiable; its contents cannot be changed.
   ```
   
   
   ### Flink or Spark Version
   
   _No response_
   
   ### Java or Scala Version
   
   _No response_
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] ashulin commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
ashulin commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1272546453

   > +1 . Looking forward your PR!
   
   +1


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
Hisoka-X commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1272473520

   > Now flink (flink 1.14.X and later) can not modify `Configuration` when task is Running,so we can not chanage `pipeline.jars` or `pipeline.classpath` etc when task state is running .Here is bug code `configuration.set(PipelineOptions.JARS, jars.stream().distinct().collect(Collectors.toList()));` in `FlinkEnvironment.registerPlugin`. So i recommend using constructors instead. Is there a better way?Please communicate here.
   
   +1 . Looking forward your PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] liugddx commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
liugddx commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276915056

   > 
   
   `Caused by: java.lang.ClassNotFoundException: org.apache.seatunnel.connectors.seatunnel.fake.source.FakeSource`
   Maybe you didn't load the connector.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] YMBSKLK commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
YMBSKLK commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276930381

   > > > > connectors
   > > > 
   > > > 
   > > > In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar
   > > 
   > > 
   > > It is estimated that it can’t be modified to modify the configuration by `SetConfiguration`
   > 
   > Please wait for my pr.
   
   I modified SetConfiguration according to your method


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] Hisoka-X closed issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
Hisoka-X closed issue #2975: [Discuss][Core] How to up-compatible flink at api level
URL: https://github.com/apache/incubator-seatunnel/issues/2975


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] YMBSKLK commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
YMBSKLK commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276927987

   > > > > connectors
   > > > 
   > > > 
   > > > In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar
   > > 
   > > 
   > > It is estimated that it can’t be modified to modify the configuration by `SetConfiguration`
   > 
   > Please wait for my pr.
   I modified SetConfiguration according to your method
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] YMBSKLK commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
YMBSKLK commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276897944

   After I upgraded Flink to 1.14. x, it ran normally in the development tool, but an error was reported after packaging. Have you ever had the same problem?
   org.apache.flink.client.program.ProgramInvocationException: The main method caused an error: Flink job executed failed
   	at org.apache.flink.client.program.PackagedProgram.callMainMethod(PackagedProgram.java:372)
   	at org.apache.flink.client.program.PackagedProgram.invokeInteractiveModeForExecution(PackagedProgram.java:222)
   	at org.apache.flink.client.ClientUtils.executeProgram(ClientUtils.java:114)
   	at org.apache.flink.client.cli.CliFrontend.executeProgram(CliFrontend.java:812)
   	at org.apache.flink.client.cli.CliFrontend.run(CliFrontend.java:246)
   	at org.apache.flink.client.cli.CliFrontend.parseAndRun(CliFrontend.java:1054)
   	at org.apache.flink.client.cli.CliFrontend.lambda$main$10(CliFrontend.java:1132)
   	at org.apache.flink.runtime.security.contexts.NoOpSecurityContext.runSecured(NoOpSecurityContext.java:28)
   	at org.apache.flink.client.cli.CliFrontend.main(CliFrontend.java:1132)
   Caused by: org.apache.seatunnel.core.starter.exception.CommandExecuteException: Flink job executed failed
   	at org.apache.seatunnel.core.starter.flink.command.FlinkApiTaskExecuteCommand.execute(FlinkApiTaskExecuteCommand.java:57)
   	at org.apache.seatunnel.core.starter.Seatunnel.run(Seatunnel.java:40)
   	at org.apache.seatunnel.core.starter.flink.SeatunnelFlink.main(SeatunnelFlink.java:34)
   	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
   	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   	at java.lang.reflect.Method.invoke(Method.java:498)
   	at org.apache.flink.client.program.PackagedProgram.callMainMethod(PackagedProgram.java:355)
   	... 8 more
   Caused by: org.apache.seatunnel.core.starter.exception.TaskExecuteException: Execute Flink job error
   	at org.apache.seatunnel.core.starter.flink.execution.FlinkExecution.execute(FlinkExecution.java:93)
   	at org.apache.seatunnel.core.starter.flink.command.FlinkApiTaskExecuteCommand.execute(FlinkApiTaskExecuteCommand.java:55)
   	... 15 more
   Caused by: java.util.concurrent.ExecutionException: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: 84eeb69eb8db0eb0e714a43f522f13ff)
   	at java.util.concurrent.CompletableFuture.reportGet(CompletableFuture.java:357)
   	at java.util.concurrent.CompletableFuture.get(CompletableFuture.java:1895)
   	at org.apache.flink.client.program.StreamContextEnvironment.getJobExecutionResult(StreamContextEnvironment.java:123)
   	at org.apache.flink.client.program.StreamContextEnvironment.execute(StreamContextEnvironment.java:80)
   	at org.apache.flink.streaming.api.environment.StreamExecutionEnvironment.execute(StreamExecutionEnvironment.java:1916)
   	at org.apache.seatunnel.core.starter.flink.execution.FlinkExecution.execute(FlinkExecution.java:91)
   	... 16 more
   Caused by: org.apache.flink.client.program.ProgramInvocationException: Job failed (JobID: 84eeb69eb8db0eb0e714a43f522f13ff)
   	at org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$null$6(ClusterClientJobClientAdapter.java:125)
   	at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:602)
   	at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:577)
   	at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:474)
   	at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:1962)
   	at org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)
   	at java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:760)
   	at java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:736)
   	at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:474)
   	at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:1962)
   	at org.apache.flink.client.program.rest.RestClusterClient.lambda$pollResourceAsync$26(RestClusterClient.java:698)
   	at java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:760)
   	at java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:736)
   	at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:474)
   	at java.util.concurrent.CompletableFuture.complete(CompletableFuture.java:1962)
   	at org.apache.flink.util.concurrent.FutureUtils.lambda$retryOperationWithDelay$9(FutureUtils.java:403)
   	at java.util.concurrent.CompletableFuture.uniWhenComplete(CompletableFuture.java:760)
   	at java.util.concurrent.CompletableFuture$UniWhenComplete.tryFire(CompletableFuture.java:736)
   	at java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:474)
   	at java.util.concurrent.CompletableFuture.postFire(CompletableFuture.java:561)
   	at java.util.concurrent.CompletableFuture$UniCompose.tryFire(CompletableFuture.java:929)
   	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:442)
   	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
   	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
   	at java.lang.Thread.run(Thread.java:748)
   Caused by: org.apache.flink.runtime.client.JobExecutionException: Job execution failed.
   	at org.apache.flink.runtime.jobmaster.JobResult.toJobExecutionResult(JobResult.java:144)
   	at org.apache.flink.client.deployment.ClusterClientJobClientAdapter.lambda$null$6(ClusterClientJobClientAdapter.java:123)
   	... 24 more
   Caused by: org.apache.flink.runtime.JobException: Recovery is suppressed by NoRestartBackoffTimeStrategy
   	at org.apache.flink.runtime.executiongraph.failover.flip1.ExecutionFailureHandler.handleFailure(ExecutionFailureHandler.java:138)
   	at org.apache.flink.runtime.executiongraph.failover.flip1.ExecutionFailureHandler.getFailureHandlingResult(ExecutionFailureHandler.java:82)
   	at org.apache.flink.runtime.scheduler.DefaultScheduler.handleTaskFailure(DefaultScheduler.java:252)
   	at org.apache.flink.runtime.scheduler.DefaultScheduler.maybeHandleTaskFailure(DefaultScheduler.java:242)
   	at org.apache.flink.runtime.scheduler.DefaultScheduler.updateTaskExecutionStateInternal(DefaultScheduler.java:233)
   	at org.apache.flink.runtime.scheduler.SchedulerBase.updateTaskExecutionState(SchedulerBase.java:684)
   	at org.apache.flink.runtime.scheduler.SchedulerNG.updateTaskExecutionState(SchedulerNG.java:79)
   	at org.apache.flink.runtime.jobmaster.JobMaster.updateTaskExecutionState(JobMaster.java:444)
   	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
   	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   	at java.lang.reflect.Method.invoke(Method.java:498)
   	at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.lambda$handleRpcInvocation$1(AkkaRpcActor.java:316)
   	at org.apache.flink.runtime.concurrent.akka.ClassLoadingUtils.runWithContextClassLoader(ClassLoadingUtils.java:83)
   	at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleRpcInvocation(AkkaRpcActor.java:314)
   	at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleRpcMessage(AkkaRpcActor.java:217)
   	at org.apache.flink.runtime.rpc.akka.FencedAkkaRpcActor.handleRpcMessage(FencedAkkaRpcActor.java:78)
   	at org.apache.flink.runtime.rpc.akka.AkkaRpcActor.handleMessage(AkkaRpcActor.java:163)
   	at akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:24)
   	at akka.japi.pf.UnitCaseStatement.apply(CaseStatements.scala:20)
   	at scala.PartialFunction.applyOrElse(PartialFunction.scala:123)
   	at scala.PartialFunction.applyOrElse$(PartialFunction.scala:122)
   	at akka.japi.pf.UnitCaseStatement.applyOrElse(CaseStatements.scala:20)
   	at scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:171)
   	at scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:172)
   	at scala.PartialFunction$OrElse.applyOrElse(PartialFunction.scala:172)
   	at akka.actor.Actor.aroundReceive(Actor.scala:537)
   	at akka.actor.Actor.aroundReceive$(Actor.scala:535)
   	at akka.actor.AbstractActor.aroundReceive(AbstractActor.scala:220)
   	at akka.actor.ActorCell.receiveMessage(ActorCell.scala:580)
   	at akka.actor.ActorCell.invoke(ActorCell.scala:548)
   	at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:270)
   	at akka.dispatch.Mailbox.run(Mailbox.scala:231)
   	at akka.dispatch.Mailbox.exec(Mailbox.scala:243)
   	at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
   	at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
   	at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
   	at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:157)
   Caused by: org.apache.flink.streaming.runtime.tasks.StreamTaskException: Cannot load user class: org.apache.seatunnel.connectors.seatunnel.fake.source.FakeSource
   ClassLoader info: URL ClassLoader:
       file: '/tmp/blobStore-85fca91a-d1ee-4506-8492-22973e0a0b2f/job_84eeb69eb8db0eb0e714a43f522f13ff/blob_p-a2b78d662d77cfacbc3e9b6def6bbc11c7581a02-1401c2fae014ec13a4796ca4a7605eeb' (valid JAR)
   Class not resolvable through given classloader.
   	at org.apache.flink.streaming.api.graph.StreamConfig.getStreamOperatorFactory(StreamConfig.java:338)
   	at org.apache.flink.streaming.runtime.tasks.OperatorChain.<init>(OperatorChain.java:155)
   	at org.apache.flink.streaming.runtime.tasks.RegularOperatorChain.<init>(RegularOperatorChain.java:63)
   	at org.apache.flink.streaming.runtime.tasks.StreamTask.restoreInternal(StreamTask.java:666)
   	at org.apache.flink.streaming.runtime.tasks.StreamTask.restore(StreamTask.java:654)
   	at org.apache.flink.runtime.taskmanager.Task.runWithSystemExitMonitoring(Task.java:958)
   	at org.apache.flink.runtime.taskmanager.Task.restoreAndInvoke(Task.java:927)
   	at org.apache.flink.runtime.taskmanager.Task.doRun(Task.java:766)
   	at org.apache.flink.runtime.taskmanager.Task.run(Task.java:575)
   	at java.lang.Thread.run(Thread.java:748)
   Caused by: java.lang.ClassNotFoundException: org.apache.seatunnel.connectors.seatunnel.fake.source.FakeSource
   	at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
   	at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
   	at org.apache.flink.util.FlinkUserCodeClassLoader.loadClassWithoutExceptionHandling(FlinkUserCodeClassLoader.java:64)
   	at org.apache.flink.util.FlinkUserCodeClassLoader.loadClass(FlinkUserCodeClassLoader.java:48)
   	at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
   	at org.apache.flink.runtime.execution.librarycache.FlinkUserCodeClassLoaders$SafetyNetWrapperClassLoader.loadClass(FlinkUserCodeClassLoaders.java:172)
   	at java.lang.Class.forName0(Native Method)
   	at java.lang.Class.forName(Class.java:348)
   	at org.apache.flink.util.InstantiationUtil$ClassLoaderObjectInputStream.resolveClass(InstantiationUtil.java:78)
   	at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1868)
   	at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1751)
   	at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2042)
   	at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1573)
   	at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:2287)
   	at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:2211)
   	at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2069)
   	at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1573)
   	at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:2287)
   	at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:2211)
   	at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2069)
   	at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1573)
   	at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:2287)
   	at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:2211)
   	at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:2069)
   	at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1573)
   	at java.io.ObjectInputStream.readObject(ObjectInputStream.java:431)
   	at org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:617)
   	at org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:602)
   	at org.apache.flink.util.InstantiationUtil.deserializeObject(InstantiationUtil.java:589)
   	at org.apache.flink.util.InstantiationUtil.readObjectFromConfig(InstantiationUtil.java:543)
   	at org.apache.flink.streaming.api.graph.StreamConfig.getStreamOperatorFactory(StreamConfig.java:324)
   	... 9 more


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] liugddx commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
liugddx commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276925849

   > > connectors
   > 
   > In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar
   
   It is estimated that it can’t be modified to modify the configuration by `SetConfiguration`
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] liugddx commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
liugddx commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1288044014

   > > > > > connectors
   > > > > 
   > > > > 
   > > > > In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar
   > > > 
   > > > 
   > > > It is estimated that it can’t be modified to modify the configuration by `SetConfiguration`
   > > 
   > > 
   > > Please wait for my pr.
   > 
   > I modified SetConfiguration according to your method
   
   please try again.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] liugddx commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
liugddx commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276926319

   > > > connectors
   > > 
   > > 
   > > In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar
   > 
   > It is estimated that it can’t be modified to modify the configuration by `SetConfiguration`
   
   Please wait for my pr.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-seatunnel] YMBSKLK commented on issue #2975: [Discuss][Core] How to up-compatible flink at api level

Posted by GitBox <gi...@apache.org>.
YMBSKLK commented on issue #2975:
URL: https://github.com/apache/incubator-seatunnel/issues/2975#issuecomment-1276924016

   > connectors
   
   In the ${SEATUNNEL_HOME}/connectors/seatunnel folder, there is connector-fake-2.1.3-SNAPSHOT.jar


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org