slinkydeveloper commented on a change in pull request #17897:
URL: https://github.com/apache/flink/pull/17897#discussion_r760175589
##########
File path: flink-table/flink-table-uber/pom.xml
##########
@@ -88,6 +88,11 @@ under the License.
<artifactId>flink-cep</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.flink</groupId>
Review comment:
I've pushed a commit to remove the flink-connector-files shading from
the table-uber and to add the flink-connector-files to the lib folder in the
distribution. I've also manually tested the new distribution output with a
sample source - sink sql batch job using the sql client.
This is the distribution tree now:
```
!2174 ➜ tree
.
├── bin
│ ├── bash-java-utils.jar
│ ├── config.sh
│ ├── find-flink-home.sh
│ ├── flink
│ ├── flink-console.sh
│ ├── flink-daemon.sh
│ ├── historyserver.sh
│ ├── jobmanager.sh
│ ├── kubernetes-jobmanager.sh
│ ├── kubernetes-session.sh
│ ├── kubernetes-taskmanager.sh
│ ├── pyflink-shell.sh
│ ├── sql-client.sh
│ ├── standalone-job.sh
│ ├── start-cluster.sh
│ ├── start-zookeeper-quorum.sh
│ ├── stop-cluster.sh
│ ├── stop-zookeeper-quorum.sh
│ ├── taskmanager.sh
│ ├── yarn-session.sh
│ └── zookeeper.sh
├── conf
│ ├── flink-conf.yaml
│ ├── log4j-cli.properties
│ ├── log4j-console.properties
│ ├── log4j.properties
│ ├── log4j-session.properties
│ ├── logback-console.xml
│ ├── logback-session.xml
│ ├── logback.xml
│ ├── masters
│ ├── workers
│ └── zoo.cfg
├── examples
│ ├── batch
│ │ ├── ConnectedComponents.jar
│ │ ├── DistCp.jar
│ │ ├── EnumTriangles.jar
│ │ ├── KMeans.jar
│ │ ├── PageRank.jar
│ │ ├── TransitiveClosure.jar
│ │ ├── WebLogAnalysis.jar
│ │ └── WordCount.jar
│ ├── gelly
│ │ └── flink-gelly-examples_2.12-1.15-SNAPSHOT.jar
│ ├── python
│ │ ├── datastream
│ │ │ ├── event_time_timer.py
│ │ │ ├── __init__.py
│ │ │ ├── process_json_data.py
│ │ │ ├── state_access.py
│ │ │ └── word_count.py
│ │ └── table
│ │ ├── __init__.py
│ │ ├── mixing_use_of_datastream_and_table.py
│ │ ├── multi_sink.py
│ │ ├── pandas
│ │ │ ├── conversion_from_dataframe.py
│ │ │ ├── __init__.py
│ │ │ └── pandas_udaf.py
│ │ ├── process_json_data.py
│ │ ├── process_json_data_with_udf.py
│ │ ├── windowing
│ │ │ ├── __init__.py
│ │ │ ├── over_window.py
│ │ │ ├── session_window.py
│ │ │ ├── sliding_window.py
│ │ │ └── tumble_window.py
│ │ └── word_count.py
│ ├── streaming
│ │ ├── Iteration.jar
│ │ ├── SessionWindowing.jar
│ │ ├── SocketWindowWordCount.jar
│ │ ├── StateMachineExample.jar
│ │ ├── TopSpeedWindowing.jar
│ │ ├── Twitter.jar
│ │ ├── WindowJoin.jar
│ │ └── WordCount.jar
│ └── table
│ ├── AdvancedFunctionsExample.jar
│ ├── ChangelogSocketExample.jar
│ ├── GettingStartedExample.jar
│ ├── StreamSQLExample.jar
│ ├── StreamWindowSQLExample.jar
│ ├── UpdatingTopCityExample.jar
│ └── WordCountSQLExample.jar
├── lib
│ ├── flink-connector-files-1.15-SNAPSHOT.jar
│ ├── flink-csv-1.15-SNAPSHOT.jar
│ ├── flink-dist-1.15-SNAPSHOT.jar
│ ├── flink-json-1.15-SNAPSHOT.jar
│ ├── flink-scala_2.12-1.15-SNAPSHOT.jar
│ ├── flink-shaded-zookeeper-3.4.14.jar
│ ├── flink-table_2.12-1.15-SNAPSHOT.jar
│ ├── log4j-1.2-api-2.14.1.jar
│ ├── log4j-api-2.14.1.jar
│ ├── log4j-core-2.14.1.jar
│ └── log4j-slf4j-impl-2.14.1.jar
├── LICENSE
├── log
│ ├── flink-slinkydeveloper-sql-client-fedora.log
│ ├── flink-slinkydeveloper-standalonesession-0-fedora.log
│ ├── flink-slinkydeveloper-standalonesession-0-fedora.out
│ ├── flink-slinkydeveloper-taskexecutor-0-fedora.log
│ └── flink-slinkydeveloper-taskexecutor-0-fedora.out
├── opt
│ ├── flink-azure-fs-hadoop-1.15-SNAPSHOT.jar
│ ├── flink-cep-1.15-SNAPSHOT.jar
│ ├── flink-cep-scala_2.12-1.15-SNAPSHOT.jar
│ ├── flink-gelly-1.15-SNAPSHOT.jar
│ ├── flink-gelly-scala_2.12-1.15-SNAPSHOT.jar
│ ├── flink-oss-fs-hadoop-1.15-SNAPSHOT.jar
│ ├── flink-python_2.12-1.15-SNAPSHOT.jar
│ ├── flink-queryable-state-runtime-1.15-SNAPSHOT.jar
│ ├── flink-s3-fs-hadoop-1.15-SNAPSHOT.jar
│ ├── flink-s3-fs-presto-1.15-SNAPSHOT.jar
│ ├── flink-shaded-netty-tcnative-dynamic-2.0.39.Final-14.0.jar
│ ├── flink-shaded-zookeeper-3.5.9.jar
│ ├── flink-sql-client_2.12-1.15-SNAPSHOT.jar
│ ├── flink-state-processor-api-1.15-SNAPSHOT.jar
│ └── python
│ ├── cloudpickle-1.2.2-src.zip
│ ├── py4j-0.10.8.1-src.zip
│ └── pyflink.zip
├── plugins
│ ├── external-resource-gpu
│ │ ├── flink-external-resource-gpu-1.15-SNAPSHOT.jar
│ │ ├── gpu-discovery-common.sh
│ │ └── nvidia-gpu-discovery.sh
│ ├── metrics-datadog
│ │ └── flink-metrics-datadog-1.15-SNAPSHOT.jar
│ ├── metrics-graphite
│ │ └── flink-metrics-graphite-1.15-SNAPSHOT.jar
│ ├── metrics-influx
│ │ └── flink-metrics-influxdb-1.15-SNAPSHOT.jar
│ ├── metrics-jmx
│ │ └── flink-metrics-jmx-1.15-SNAPSHOT.jar
│ ├── metrics-prometheus
│ │ └── flink-metrics-prometheus-1.15-SNAPSHOT.jar
│ ├── metrics-slf4j
│ │ └── flink-metrics-slf4j-1.15-SNAPSHOT.jar
│ ├── metrics-statsd
│ │ └── flink-metrics-statsd-1.15-SNAPSHOT.jar
│ └── README.txt
└── README.txt
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]