This is an automated email from the ASF dual-hosted git repository.
kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-muchos.git
The following commit(s) were added to refs/heads/master by this push:
new 6c24872 Added the use of Accumulo 2.0.0 (#269)
6c24872 is described below
commit 6c24872b6443dd772b305518ac184b1d5cc1b3d9
Author: Jeffrey Manno <[email protected]>
AuthorDate: Fri Aug 16 10:28:14 2019 -0400
Added the use of Accumulo 2.0.0 (#269)
---
conf/checksums | 3 +--
conf/muchos.props.example | 4 ++--
lib/tests/test_config.py | 2 +-
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/conf/checksums b/conf/checksums
index 6154988..9b130e3 100644
--- a/conf/checksums
+++ b/conf/checksums
@@ -1,5 +1,4 @@
-accumulo:2.0.0-alpha-2:92a5a15cd727c6218c36cbd2e8c8c74f102147b4e032f97e0eebef97fe28d099
-accumulo:2.0.0-alpha-1:baa5e0929248ff0d96355bc7fb42a5b75d183a83364519296e07b0adbb089180
+accumulo:2.0.0:df172111698c7a73aa031de09bd5589263a6b824482fbb9b4f0440a16602ed47
accumulo:1.9.3:427423A95DB3863A49B271B0BC9D7D9D15E44A2EB6675DD8ADB83EE72198D757
accumulo:1.9.2:c23c147e6abde5e6b851cf27f91b813705dc41d07c2bfea798a86abb144255d5
accumulo:1.9.0:f68a6145029a9ea843b0305c90a7f5f0334d8a8ceeea94734267ec36421fe7fe
diff --git a/conf/muchos.props.example b/conf/muchos.props.example
index 9296ec6..9932c40 100644
--- a/conf/muchos.props.example
+++ b/conf/muchos.props.example
@@ -36,12 +36,12 @@ accumulo_instance = muchos
# Accumluo Password
accumulo_password = secret
# Software versions (set sha-256 in conf/checksums)
-hadoop_version = 3.1.1
+hadoop_version = 3.2.0
zookeeper_version = 3.4.14
spark_version = 2.3.2
fluo_version = 1.2.0
fluo_yarn_version = 1.0.0
-accumulo_version = 2.0.0-alpha-1
+accumulo_version = 2.0.0
# Specifies if software should be downloaded. If 'False', tarballs of the
software above should be in conf/upload/
download_software = True
# Install Hub (for GitHub)
diff --git a/lib/tests/test_config.py b/lib/tests/test_config.py
index d2a9fe4..99ac626 100644
--- a/lib/tests/test_config.py
+++ b/lib/tests/test_config.py
@@ -22,7 +22,7 @@ def test_ec2_cluster():
c = DeployConfig("muchos", '../conf/muchos.props.example',
'../conf/hosts/example/example_cluster',
'../conf/checksums', 'mycluster')
assert c.checksum_ver('accumulo', '1.9.0') ==
'f68a6145029a9ea843b0305c90a7f5f0334d8a8ceeea94734267ec36421fe7fe'
- assert c.checksum('accumulo') ==
'baa5e0929248ff0d96355bc7fb42a5b75d183a83364519296e07b0adbb089180'
+ assert c.checksum('accumulo') ==
'df172111698c7a73aa031de09bd5589263a6b824482fbb9b4f0440a16602ed47'
assert c.get('ec2', 'default_instance_type') == 'm5d.large'
assert c.get('ec2', 'worker_instance_type') == 'm5d.large'
assert c.get('ec2', 'aws_ami') == 'ami-9887c6e7'