Skip to content

Commit

Permalink
[FLINK-15332][jepsen] Copy flink-s3-fs-hadoop* into /plugins director…
Browse files Browse the repository at this point in the history
…y instead of lib

We can no longer copy the flink-s3-fs-hadoop* jars into lib as they contain un-relocated
Hadoop 3.1.0 dependencies.

This closes apache#10634.
  • Loading branch information
tillrohrmann committed Dec 20, 2019
1 parent 92da39d commit 47f2efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flink-jepsen/src/jepsen/flink/db.clj
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
(info "Installing Flink from" url)
(cu/install-archive! url install-dir)
(info "Enable S3 FS")
(c/exec (c/lit (str "ls " install-dir "/opt/flink-s3-fs-hadoop* | xargs -I {} mv {} " install-dir "/lib")))
(c/exec (c/lit (str "mkdir " install-dir "/plugins/s3-fs-hadoop && ls " install-dir "/opt/flink-s3-fs-hadoop* | xargs -I {} mv {} " install-dir "/plugins/s3-fs-hadoop")))
(upload-job-jars! (->> test :test-spec :jobs (map :job-jar)))
(write-configuration! test node)))

Expand Down

0 comments on commit 47f2efe

Please sign in to comment.