This is an automated email from the ASF dual-hosted git repository.
iwasakims pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/master by this push:
new f686ada BIGTOP-3571. Ensure Hadoop and Flink are deployed in the
correct order. (#799)
f686ada is described below
commit f686adad92eb6636de1e63c4f265702d7535cce2
Author: Kengo Seki <[email protected]>
AuthorDate: Tue Jul 13 13:05:41 2021 +0900
BIGTOP-3571. Ensure Hadoop and Flink are deployed in the correct order.
(#799)
---
bigtop-deploy/puppet/modules/flink/manifests/init.pp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/bigtop-deploy/puppet/modules/flink/manifests/init.pp
b/bigtop-deploy/puppet/modules/flink/manifests/init.pp
index 3538bca..4abd868 100644
--- a/bigtop-deploy/puppet/modules/flink/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/flink/manifests/init.pp
@@ -48,6 +48,8 @@ class flink {
hasrestart => true,
hasstatus => true
}
+
+ Package<| title == 'hadoop-hdfs' |> -> Package['flink-jobmanager']
}
class taskmanager {
@@ -64,5 +66,7 @@ class flink {
hasrestart => true,
hasstatus => true,
}
+
+ Package<| title == 'hadoop-hdfs' |> -> Package['flink-taskmanager']
}
}