-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMBARI-26131:Fix ambari-metrics-collector service check failed and resolve jar conflict problem #131
AMBARI-26131:Fix ambari-metrics-collector service check failed and resolve jar conflict problem #131
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,7 +141,6 @@ limitations under the License. | |
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>18.0</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you add a version here as well ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the previous comment |
||
</dependency> | ||
</dependencies> | ||
</project> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,21 +38,21 @@ | |
<python.ver>python3 >= 3.0</python.ver> | ||
<deb.python.ver>python3 (>= 3.0)</deb.python.ver> | ||
<slf4j.version>2.0.0</slf4j.version> | ||
<zookeeper.version>3.5.9</zookeeper.version> | ||
<kafka.version>2.8.1</kafka.version> | ||
<phoenix.version>5.1.2</phoenix.version> | ||
<hbase.version>2.4.13</hbase.version> | ||
<zookeeper.version>3.7.2</zookeeper.version> | ||
<kafka.version>2.8.2</kafka.version> | ||
<phoenix.version>5.1.3</phoenix.version> | ||
<hbase.version>2.4.17</hbase.version> | ||
<curator.version>4.2.0</curator.version> | ||
<commons-lang3.version>3.12.0</commons-lang3.version> | ||
<hbase.tar>http://repo.bigtop.apache.org.s3.amazonaws.com/bigtop-stack-binary/3.2.0/centos-7/x86_64/hbase-2.4.13-bin.tar.gz</hbase.tar> | ||
<hbase.folder>hbase-2.4.13</hbase.folder> | ||
<hadoop.tar>http://repo.bigtop.apache.org.s3.amazonaws.com/bigtop-stack-binary/3.2.0/centos-7/x86_64/hadoop-3.3.4.tar.gz</hadoop.tar> | ||
<hadoop.folder>hadoop-3.3.4</hadoop.folder> | ||
<hadoop.version>3.3.4</hadoop.version> | ||
<hbase.tar>https://archive.apache.org/dist/hbase/2.4.17/hbase-2.4.17-bin.tar.gz</hbase.tar> | ||
<hbase.folder>hbase-2.4.17</hbase.folder> | ||
<hadoop.tar>https://archive.apache.org/dist/hadoop/common/hadoop-3.3.6/hadoop-3.3.6.tar.gz</hadoop.tar> | ||
<hadoop.folder>hadoop-3.3.6</hadoop.folder> | ||
<hadoop.version>3.3.6</hadoop.version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we have the hadoop version in sync with ambari where it is 3.3.4 currently ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice one, I think we should bump in ambari also. |
||
<grafana.folder>grafana-9.5.6</grafana.folder> | ||
<grafana.tar>https://dl.grafana.com/oss/release/grafana-9.5.6.linux-amd64.tar.gz</grafana.tar> | ||
<phoenix.tar>http://repo.bigtop.apache.org.s3.amazonaws.com/bigtop-stack-binary/3.2.0/centos-7/x86_64/phoenix-hbase-2.4-5.1.2-bin.tar.gz</phoenix.tar> | ||
<phoenix.folder>phoenix-hbase-2.4-5.1.2-bin</phoenix.folder> | ||
<phoenix.tar>https://archive.apache.org/dist/phoenix/phoenix-5.1.3/phoenix-hbase-2.4-5.1.3-bin.tar.gz</phoenix.tar> | ||
<phoenix.folder>phoenix-hbase-2.4-5.1.3-bin</phoenix.folder> | ||
<resmonitor.install.dir>/usr/lib/python3.9/site-packages/resource_monitoring</resmonitor.install.dir> | ||
<powermock.version>1.6.2</powermock.version> | ||
<distMgmtSnapshotsId>apache.snapshots.https</distMgmtSnapshotsId> | ||
|
@@ -133,7 +133,7 @@ | |
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>28.0-jre</version> | ||
<version>32.1.1-jre</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it would be good to provide a version here ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the parent pom's guava version should be used, so I deleted the separate version in here