yuxiqian commented on code in PR #3093: URL: https://github.com/apache/flink-cdc/pull/3093#discussion_r1706462826
########## Dockerfile: ########## @@ -0,0 +1,33 @@ +#/* +# * Licensed to the Apache Software Foundation (ASF) under one or more +# * contributor license agreements. See the NOTICE file distributed with +# * this work for additional information regarding copyright ownership. +# * The ASF licenses this file to You under the Apache License, Version 2.0 +# * (the "License"); you may not use this file except in compliance with +# * the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, software +# * distributed under the License is distributed on an "AS IS" BASIS, +# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# * See the License for the specific language governing permissions and +# * limitations under the License. +# */ + +FROM flink + +ARG FLINK_CDC_VERSION=3.0-SNAPSHOT + +RUN mkdir -p /opt/flink-cdc +RUN mkdir -p /opt/flink/usrlib +ENV FLINK_CDC_HOME /opt/flink-cdc +COPY flink-cdc-dist/target/flink-cdc-${FLINK_CDC_VERSION}-bin.tar.gz /tmp/ +RUN tar -xzvf /tmp/flink-cdc-${FLINK_CDC_VERSION}-bin.tar.gz -C /tmp/ && \ + mv /tmp/flink-cdc-${FLINK_CDC_VERSION}/* /opt/flink-cdc/ && \ + rm -rf /tmp/flink-cdc-${FLINK_CDC_VERSION} /tmp/flink-cdc-${FLINK_CDC_VERSION}-bin.tar.gz +# copy jars to cdc libs +COPY flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-values/target/flink-cdc-pipeline-connector-values-${FLINK_CDC_VERSION}.jar /opt/flink/usrlib/flink-cdc-pipeline-connector-values-${FLINK_CDC_VERSION}.jar +COPY flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-mysql/target/flink-cdc-pipeline-connector-mysql-${FLINK_CDC_VERSION}.jar /opt/flink/usrlib/flink-cdc-pipeline-connector-mysql-${FLINK_CDC_VERSION}.jar Review Comment: Will this docker image work if user wrote a pipeline job uses connectors apart from MySQL and values? ########## flink-cdc-cli/src/test/java/org/apache/flink/cdc/cli/CliFrontendTest.java: ########## @@ -176,6 +189,10 @@ private String globalPipelineConfig() throws Exception { + " was triggered.\n" + " -s,--from-savepoint <arg> Path to a savepoint to restore the job from\n" + " (for example hdfs:///flink/savepoint-1537\n" + + " -t,--target <arg> The deployment target for the execution. This\n" + + " can take one of the following values\n" + + " local/remote/yarn-session/yarn-application/ku\n" + + " bernetes-session/kubernetes-application\n" Review Comment: Remembered that Qingsheng fixed this before. Is this reverted accidentally? -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org