Skip to content

Commit e62a596

Browse files
committed
branch-3.1:[feat](thirdparty) Refactor HDFS dependency management: move HDFS client jars to FE and slim down BE thirdparty (#57202)
#57202 (cherry picked from commit 4ea473c)
1 parent 92203ea commit e62a596

File tree

6 files changed

+237
-120
lines changed

6 files changed

+237
-120
lines changed

.idea/vcs.xml

Lines changed: 14 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/start_be.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -225,16 +225,10 @@ done
225225

226226
if [[ -d "${DORIS_HOME}/lib/hadoop_hdfs/" ]]; then
227227
# add hadoop libs
228-
for f in "${DORIS_HOME}/lib/hadoop_hdfs/common"/*.jar; do
228+
for f in "${DORIS_HOME}/lib/hadoop_hdfs"/*.jar; do
229229
DORIS_CLASSPATH="${DORIS_CLASSPATH}:${f}"
230230
done
231-
for f in "${DORIS_HOME}/lib/hadoop_hdfs/common/lib"/*.jar; do
232-
DORIS_CLASSPATH="${DORIS_CLASSPATH}:${f}"
233-
done
234-
for f in "${DORIS_HOME}/lib/hadoop_hdfs/hdfs"/*.jar; do
235-
DORIS_CLASSPATH="${DORIS_CLASSPATH}:${f}"
236-
done
237-
for f in "${DORIS_HOME}/lib/hadoop_hdfs/hdfs/lib"/*.jar; do
231+
for f in "${DORIS_HOME}/lib/hadoop_hdfs/lib"/*.jar; do
238232
DORIS_CLASSPATH="${DORIS_CLASSPATH}:${f}"
239233
done
240234
fi

0 commit comments

Comments
 (0)