From 795910af3104e605ceec31a837f711c96eff59bc Mon Sep 17 00:00:00 2001 From: Amanda Villarreal Date: Tue, 2 Jun 2026 14:40:49 -0500 Subject: [PATCH 1/3] Updated 2 commands in Bloom Filter Example that were outdated --- docs/bloom.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bloom.md b/docs/bloom.md index da3a974..b5961d7 100644 --- a/docs/bloom.md +++ b/docs/bloom.md @@ -49,7 +49,7 @@ likely contain entries for the query, all files will be interrogated. You can verify the table has three or more r-files by looking in HDFS. To look in HDFS you will need the table ID, which can be found with the following shell command. - $ accumulo shell -u username -p password -e 'tables -l' + $ accumulo shell --user root --password secret -e 'tables -l' accumulo.metadata => !0 accumulo.root => +r examples.bloom_test1 => 2 @@ -68,7 +68,7 @@ table has in HDFS. This assumes Accumulo is at the default location in HDFS. Running the rfile-info command shows that one of the files has a bloom filter and its 1.5MB. - $ accumulo rfile-info /accumulo/tables/3/default_tablet/F00000dj.rf + $ accumulo file rfile-info /accumulo/tables/3/default_tablet/F00000dj.rf Locality group : Start block : 0 Num blocks : 752 From f72ff84d4f67cf60752c3808c9951272a153c518 Mon Sep 17 00:00:00 2001 From: Amanda Villarreal Date: Wed, 3 Jun 2026 09:00:15 -0500 Subject: [PATCH 2/3] merging changes from main --- conf/env.sh.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/env.sh.example b/conf/env.sh.example index ec42633..b4dabc9 100644 --- a/conf/env.sh.example +++ b/conf/env.sh.example @@ -17,9 +17,9 @@ # ======= ## Hadoop installation -export HADOOP_HOME="${HADOOP_HOME:-/path/to/hadoop}" +export HADOOP_HOME="$/home/avillarreal/Desktop/github/accumulo-fluo-uno/install/hadoop-3.5.0/" ## Accumulo installation -export ACCUMULO_HOME="${ACCUMULO_HOME:-/path/to/accumulo}" +export ACCUMULO_HOME="$/home/avillarreal/Desktop/github/accumulo-fluo-uno/install/accumulo-4.0.0-SNAPSHOT/" ## Path to Accumulo client properties export ACCUMULO_CLIENT_PROPS="$ACCUMULO_HOME/conf/accumulo-client.properties" From 066cd67562547b2f58d4b07914d4051770d0ab90 Mon Sep 17 00:00:00 2001 From: Amanda Villarreal Date: Wed, 3 Jun 2026 09:18:51 -0500 Subject: [PATCH 3/3] removing accidental change --- conf/env.sh.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/env.sh.example b/conf/env.sh.example index b4dabc9..ec42633 100644 --- a/conf/env.sh.example +++ b/conf/env.sh.example @@ -17,9 +17,9 @@ # ======= ## Hadoop installation -export HADOOP_HOME="$/home/avillarreal/Desktop/github/accumulo-fluo-uno/install/hadoop-3.5.0/" +export HADOOP_HOME="${HADOOP_HOME:-/path/to/hadoop}" ## Accumulo installation -export ACCUMULO_HOME="$/home/avillarreal/Desktop/github/accumulo-fluo-uno/install/accumulo-4.0.0-SNAPSHOT/" +export ACCUMULO_HOME="${ACCUMULO_HOME:-/path/to/accumulo}" ## Path to Accumulo client properties export ACCUMULO_CLIENT_PROPS="$ACCUMULO_HOME/conf/accumulo-client.properties"