summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Mike Miller [Fri, 2 Apr 2021 12:07:21 +0000 (08:07 -0400)]
Add missing job information for MR. Fixes #43 (#73)
* CharacterHistogram was missing information in the map reduce job so
set the data in the job using legacy methods. This fixes the filedata
example
Mike Miller [Wed, 31 Mar 2021 21:20:00 +0000 (17:20 -0400)]
Make runmr script use HADOOP_HOME (#72)
Mike Miller [Tue, 30 Mar 2021 19:00:26 +0000 (15:00 -0400)]
Drop TraceDumpExample. Closes #35 (#71)
Mark Owens [Fri, 26 Mar 2021 14:05:47 +0000 (10:05 -0400)]
Update SequentialBatchWriter.java
Fix org.apache.accumulo.core.client import statement in SequentialBatchWriter. Replace the '*' catch-all with specified imports.
dependabot[bot] [Thu, 25 Mar 2021 23:14:54 +0000 (19:14 -0400)]
Bump guava from 28.2-jre to 29.0-jre (#70)
Bumps [guava](https://github.com/google/guava) from 28.2-jre to 29.0-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Mark Owens [Thu, 25 Mar 2021 18:46:36 +0000 (14:46 -0400)]
Update pom.xml
Excluding jute when the ZK version if prior to 3.6 can result in a NoClassDefFoundError for org/apache/jute/Record.
Mike Miller [Thu, 25 Mar 2021 15:14:40 +0000 (11:14 -0400)]
Add missing htrace dep
Mike Miller [Thu, 25 Mar 2021 14:16:45 +0000 (10:16 -0400)]
Add more precise excludes to pom to fix hadoop client
Mike Miller [Thu, 25 Mar 2021 13:58:13 +0000 (09:58 -0400)]
Fix shade plugin warnings
Mark Owens [Thu, 25 Mar 2021 12:31:11 +0000 (08:31 -0400)]
Update env.sh.example
Update env.sh.example file so that the version of ZooKeeper used by Accumulo-Examples repo matches version of current accumulo-snapshot. Reverted from ZK 3.6.2 to 3.5.9.
Mark Owens [Thu, 25 Mar 2021 12:29:57 +0000 (08:29 -0400)]
Update pom.xml
Update pom in order to have Accumulo-Examples zookeeper version match version of current accumulo-snapshot. Reverted from ZK 3.6.2 to 3.5.9.
Mark Owens [Wed, 24 Mar 2021 18:08:28 +0000 (14:08 -0400)]
Update BulkIngestExample
Correct invalid return type from main method in BulkIngestExample.
Mark Owens [Tue, 23 Mar 2021 19:21:32 +0000 (15:21 -0400)]
Update pom.xml
Update ZooKeeper version in Accumulo-Examples pom file to 3.6.2
Mark Owens [Tue, 23 Mar 2021 19:20:18 +0000 (15:20 -0400)]
Update env.sh.example
Update env.sh.example configuration file to use ZooKeeper 3.6.2
Mark Owens [Wed, 17 Mar 2021 11:45:40 +0000 (07:45 -0400)]
Update Accumulo-Examples pom to use jdk 11 and latest Accumulo snapshot
Update Accumulo-Examples pom to use jdk 11 and latest Accumulo snapshot.
Update pom.xml to make use of jdk 11 as well as refer to latest Accumulo snapshot.
Made two minor changes to the Viewer and BulkIngestExample classes also.
- update pom.xml to refer to Accumulo-2.1.0-SNAPSHOT
- update pom.xml to use jdk 11
- update Viewer.java to run with jdk 11
- add info message to BulkIngestExample class
Closes #68
Mark Owens [Tue, 16 Mar 2021 19:30:02 +0000 (15:30 -0400)]
Update Accumulo-Examples pom
* update pom.xml to refer to Accumulo-2.1.0-SNAPSHOT
* update pom.xml to use jdk 11
* update Viewer.java to run with jdk 11
* add info message to BulkIngestExample class
Mark Owens [Tue, 16 Mar 2021 15:35:23 +0000 (11:35 -0400)]
Update wordcount.md
Corrected type in final scan command. Scan table wordCount2 rather than table wordCount.
Mark Owens [Mon, 8 Mar 2021 16:43:16 +0000 (11:43 -0500)]
Update rgbalancer.md
Updated the regex pattern. With version 2.1 the double backslashes for the regex through a BadArgumentexception. Assume it is related to change from using Jline ConsoleReader to using LineReader.
Mark Owens [Mon, 22 Feb 2021 21:35:36 +0000 (16:35 -0500)]
Update main branch to work against Accumulo 2.1.x.
Update pom.xml, log4j.properties.example, and bin/runex files to allow accumulo-examples to run against the 2.1.x version of Accumulo.
Closes #64
Mark Owens [Mon, 22 Feb 2021 21:10:59 +0000 (16:10 -0500)]
Update main branch to work against Accumulo 2.1.x.
Update the pom.xml, log4j.properties.example, and bin/runex files to
allow accumulo-examples to run against the 2.1.x version of Accumulo.
Mark Owens [Fri, 12 Feb 2021 19:59:26 +0000 (14:59 -0500)]
Merge pull request #63 from jmark99/bingest
Update the bulkIngest example to work correctly with Accumulo 2.0.x. Minor updates made to the documentation. The classes were refactored so the example will work correctly with 2.0 changes. Generation of test data was moved from SetupTable to BulkIngestExample (as in 1.10.x version). Prior to change, necessary data was not correctly being written to HDFS thereby preventing the BulkIngestExample class from finding information needed to generate the data. Closes #63.
Mark Owens [Fri, 12 Feb 2021 19:29:51 +0000 (14:29 -0500)]
Update BulkIngest example to work with 2.0
Update the bulkIngest example to work correctly with Accumulo 2.0.x.
Minor updates made to the documentation. The classes were refactored so
the example will work correctly with 2.0 changes. Generation of test
data was moved from SetupTable to BulkIngestExample (as in 1.10.x
version). Prior to change, necessary data was not correctly being written
to HDFS thereby preventing the BulkIngestExample class from finding
information needed to generate the data.
Mark Owens [Fri, 12 Feb 2021 15:57:09 +0000 (10:57 -0500)]
Update wordCount.md
Corrected misspelling within the documentation.
Mark Owens [Thu, 11 Feb 2021 20:49:20 +0000 (15:49 -0500)]
Update compactionStrategy.md
Two minor grammatical changes made to the text.
Mark Owens [Thu, 11 Feb 2021 20:42:12 +0000 (15:42 -0500)]
Update combiner.md documentation
Update documentation for combiner accumulo example to display correct output for "setiter" command.
Mark Owens [Thu, 11 Feb 2021 20:20:39 +0000 (15:20 -0500)]
Update classpath.md documentation
Update classpath example documentation.
* Added details on required HDFS directory.
* Added note on location of FooFilter.jar.
* Minor spelling correction.
* Updated output of failed setiter command example to match actual output from version 2.x.
Mark Owens [Thu, 11 Feb 2021 19:17:53 +0000 (14:17 -0500)]
Minor update to sample.md
Minor update to sample.md example documentation.
Mark Owens [Wed, 9 Dec 2020 20:37:35 +0000 (15:37 -0500)]
Update Visibility example to use correct package path.
Between version 1.10.0 and 2.0.0, the constraint classes were moved from the <code>org.apache.accumulo.core.security</code> package to <code>org.apache.accumulo.core.constraints</code> package. This change updates the <code>visiblity.md</code> readme file to reflect that change.
Mark Owens [Wed, 9 Dec 2020 18:14:25 +0000 (13:14 -0500)]
Update Visibility example to use correct package path.
Between version 1.10.0 and 2.0.0, the constraint classes were moved from
the org.apache.accumulo.core.security package to
org.apache.accumulo.core.constraints package. This PR updates the
Visiblity.md readme file to reflect that change.
Christopher Tubbs [Tue, 13 Oct 2020 02:01:51 +0000 (22:01 -0400)]
Upload test logs on build failure
dependabot[bot] [Tue, 13 Oct 2020 01:33:18 +0000 (21:33 -0400)]
Bump junit from 4.13 to 4.13.1 (#61)
Bumps [junit](https://github.com/junit-team/junit4) from 4.13 to 4.13.1.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.13.1.md)
- [Commits](https://github.com/junit-team/junit4/compare/r4.13...r4.13.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Christopher Tubbs [Mon, 5 Oct 2020 21:16:11 +0000 (17:16 -0400)]
Add .asf.yaml (#60)
Christopher Tubbs [Mon, 21 Sep 2020 20:07:02 +0000 (16:07 -0400)]
Ensure the correct version of ZooKeeper is shaded
Christopher Tubbs [Mon, 10 Aug 2020 22:05:45 +0000 (18:05 -0400)]
Update badge on README for CI build status
Jeffrey Zeiberg [Mon, 10 Aug 2020 21:56:49 +0000 (17:56 -0400)]
Make sure to copy accumulo-examples.jar as well as accumulo-examples-shaded.jar (#54)
Christopher Tubbs [Mon, 10 Aug 2020 21:52:29 +0000 (17:52 -0400)]
Update references to main branch and update CI
* Update references to main branch
* Update CI configuration to use GitHub Actions instead of Travis CI
Christopher Tubbs [Mon, 24 Feb 2020 23:11:58 +0000 (18:11 -0500)]
Remove unnecessary build configuration in pom
Christopher Tubbs [Mon, 24 Feb 2020 23:07:20 +0000 (18:07 -0500)]
Update plugins/deps in pom for spark example
Christopher Tubbs [Mon, 24 Feb 2020 22:55:22 +0000 (17:55 -0500)]
Update checkstyle and other plugins/deps
Christopher Tubbs [Sun, 4 Aug 2019 21:04:11 +0000 (17:04 -0400)]
Update examples to use 2.0.0
lbschanno [Tue, 9 Jul 2019 16:55:38 +0000 (12:55 -0400)]
Refactor out DefaultFormatter (#35) (#56)
* Refactor out usage of DefaultFormatter. It is an internal-only unstable
API that is not recommended for users, and as such is unsuitable to
include in examples.
Mike Miller [Tue, 9 Jul 2019 16:37:00 +0000 (12:37 -0400)]
Update Travis config
* Log keeps filling up so switching maven to use "-q" seems to be the
only thing that works
Mike Miller [Tue, 9 Jul 2019 16:28:32 +0000 (12:28 -0400)]
Update Travis config
Mike Miller [Tue, 9 Jul 2019 16:18:47 +0000 (12:18 -0400)]
Update Travis config
Christopher Tubbs [Wed, 5 Jun 2019 17:33:51 +0000 (13:33 -0400)]
Update dependency versions for CVEs
* zookeeper CVE-2019-0201
* checkstyle CVE-2019-9658
* spark CVE-2018-17190 (updated, but not fully resolved, since no
version of spark fixes this yet)
Build formatted an unrelated class.
Jeffrey Zeiberg [Mon, 3 Jun 2019 22:18:53 +0000 (18:18 -0400)]
Bring the hadoop version in line with Accumulo 2.0 (#52)
Jeffrey Manno [Wed, 8 May 2019 19:59:44 +0000 (15:59 -0400)]
Removes try-block around client. Fixes #45 (#50)
elinaawise [Fri, 26 Apr 2019 20:22:53 +0000 (16:22 -0400)]
Fix #42 Update compactionStrategy example (#49)
Mike Walch [Wed, 24 Apr 2019 20:45:29 +0000 (16:45 -0400)]
Remove examples.conf.template (#48)
* This file is no longer used by any example
elinaawise [Tue, 23 Apr 2019 16:30:09 +0000 (12:30 -0400)]
Add missing licenses that caused the build to fail (#44) (#47)
updated .md files
Elina Wise [Tue, 23 Apr 2019 16:20:18 +0000 (12:20 -0400)]
delete key/value pair example (#46)
Mike Miller [Thu, 18 Apr 2019 16:29:19 +0000 (12:29 -0400)]
Fix broken link
Jeffrey Manno [Thu, 18 Apr 2019 15:54:19 +0000 (11:54 -0400)]
Add missing licenses that caused the build to fail (#44)
Mike Walch [Thu, 28 Mar 2019 16:22:23 +0000 (12:22 -0400)]
Created Accumulo/Spark example (#39)
Mike Walch [Wed, 27 Mar 2019 20:01:50 +0000 (16:01 -0400)]
Fix integration tests (#40)
Mike Walch [Tue, 12 Mar 2019 22:53:34 +0000 (18:53 -0400)]
Fix integration tests (#37)
* Due to changes in Accumulo
* Commented out use of DistributedTrace
* Updated ITs due to changes in TestIngest
and ConfigurableMacBase
Jeffrey Manno [Mon, 11 Mar 2019 21:38:49 +0000 (17:38 -0400)]
#35 - Factor out TestUtil API (#36)
Mike Miller [Fri, 1 Feb 2019 17:39:55 +0000 (12:39 -0500)]
Make build script call mvn verify and update .gitignore
Mike Walch [Thu, 31 Jan 2019 21:32:34 +0000 (16:32 -0500)]
Fix QA issue
Mike Miller [Tue, 29 Jan 2019 21:21:33 +0000 (16:21 -0500)]
Add import-control checkstyle for checking API (#34)
* Also moved maven files to contrib directory, dropping build directory
* Updated checkstyle to latest version
* Add exceptions to hold the line for API
* Use guava PeekingIterator
Mike Miller [Tue, 29 Jan 2019 19:55:53 +0000 (14:55 -0500)]
Fix and remove brittle broken tests
Mike Walch [Tue, 15 Jan 2019 15:08:51 +0000 (10:08 -0500)]
More updates to MapReduce (#32)
* WordCount now supports using HDFS path for client props
* Updated docs and fixed arguments to MapReduce job
Mike Walch [Thu, 10 Jan 2019 19:40:51 +0000 (14:40 -0500)]
Refactored examples for Accumulo 2.0 (#31)
* Updated to use new MapReduce API
* Build shaded jar for M/R examples
* All examples now use ClientOpts which
was refactored
Mike Walch [Wed, 2 Jan 2019 23:43:03 +0000 (18:43 -0500)]
Update copyright date
Keith Turner [Tue, 6 Nov 2018 18:00:20 +0000 (13:00 -0500)]
Got most ITs working (#30)
Keith Turner [Fri, 2 Nov 2018 22:16:47 +0000 (18:16 -0400)]
Add formatting to pom (#29)
Mike Walch [Fri, 26 Oct 2018 20:10:57 +0000 (16:10 -0400)]
Merge pull request #28 from mikewalch/2.0-alpha
Updated examples to work with Accumulo 2.0.0-alpha-1
Mike Walch [Fri, 26 Oct 2018 18:21:39 +0000 (14:21 -0400)]
Added build status badge and updated .travis.yml
Mike Walch [Fri, 26 Oct 2018 17:44:25 +0000 (13:44 -0400)]
Updated examples to work with Accumulo 2.0.0-alpha-1
Mike Walch [Fri, 15 Jun 2018 19:02:51 +0000 (15:02 -0400)]
Refactored shard example (#26)
* Refactored shard example
* Shard example uses new Connector builder
* Renamed ConnectionInfo to ClientInfo due to changes in Accumulo
* Updated accumulo-client.properties due to changes in Accumulo
Mike Miller [Thu, 26 Apr 2018 17:54:11 +0000 (13:54 -0400)]
Update bloom filters example (#25)
Mike Miller [Fri, 20 Apr 2018 15:22:47 +0000 (11:22 -0400)]
Update constraints example. Fixes #23 (#24)
Mike Miller [Thu, 19 Apr 2018 16:07:09 +0000 (12:07 -0400)]
Update mapreduce dependency
Mike Miller [Thu, 12 Apr 2018 19:55:35 +0000 (15:55 -0400)]
Update bulkIngest example. Fixes #17 (#20)
Mike Walch [Thu, 12 Apr 2018 17:01:12 +0000 (13:01 -0400)]
Fixes #16 - Refactored examples in client.md (#19)
Mike Miller [Wed, 11 Apr 2018 22:10:01 +0000 (18:10 -0400)]
Add debug flag to runex. Fixes #18
Mike Walch [Mon, 9 Apr 2018 17:03:35 +0000 (13:03 -0400)]
Update batch example to use new Connector builder (#14)
* Also update README.md instructions telling users to set up
accumulo-client.properties
Mike Walch [Tue, 3 Apr 2018 15:43:49 +0000 (11:43 -0400)]
Fixes #10 - Update helloworld example to new Connector builder (#11)
* Example also now uses conf/accumulo-client.properties
* Added a log4j.properties file for examples
Mike Miller [Thu, 22 Feb 2018 18:51:03 +0000 (13:51 -0500)]
ACCUMULO-4804 Fix ChunkInput ITs
Mike Miller [Wed, 14 Feb 2018 20:43:27 +0000 (15:43 -0500)]
ACCUMULO-4804 Fixes to work with 2.0
Mike Walch [Wed, 14 Feb 2018 18:05:11 +0000 (13:05 -0500)]
ACCUMULO-4814 Added links to Java classes (#9)
* Cleaned up batch docs
Mike Miller [Thu, 8 Feb 2018 23:27:50 +0000 (18:27 -0500)]
ACCUMULO-4804 Fixes to work with 2.0
Mike Walch [Fri, 3 Nov 2017 19:11:00 +0000 (15:11 -0400)]
ACCUMULO-4736 Created CONTRIBUTING.md (#7)
Mike Miller [Wed, 1 Nov 2017 21:52:40 +0000 (21:52 +0000)]
ACCUMULO-1641 Add checkstyle plugin for API check
Mark Owens [Mon, 2 Oct 2017 19:52:15 +0000 (15:52 -0400)]
ACCUMULO-4516: TeraSortIngest splits argumnet is ignored if less that 10 (#6)
arguments are provided.
Modified TeraSortIngest.java to remove arg length check as a condition
for setting the number or splits. Now check to see if the splits option
is non-zero and if so, set the number of splits.
Mike Miller [Tue, 4 Apr 2017 17:04:26 +0000 (13:04 -0400)]
ACCUMULO-3521: added test for method in StatsCombiner
Michael Wall [Mon, 27 Feb 2017 16:47:48 +0000 (11:47 -0500)]
Update for Accumulo 1.8.1 release
Mike Miller [Wed, 22 Feb 2017 17:33:22 +0000 (12:33 -0500)]
Added log4j.properties to src/main/resources
Mike Walch [Fri, 17 Feb 2017 16:36:28 +0000 (11:36 -0500)]
ACCUMULO-4528 tool.sh is now 'accumulo-util hadoop-jar'
* Added note in README about copying jar to accumulo/lib/ext
Mike Walch [Tue, 10 Jan 2017 18:42:05 +0000 (13:42 -0500)]
ACCUMULO-4566 Removed code not used by any example
* Code was accidentally moved
* Cleaned up dependencies after running 'mvn dependency:analyze'
Keith Turner [Thu, 8 Dec 2016 23:53:51 +0000 (18:53 -0500)]
ACCUMULO-1641 Removed use of non public Accumulo command line parsing code.
In the processing of doing this I copied and simplified code from Accumulo.
Also started using a properties file in all examples for Accumulo connection
info. This should make it easier to run all examples. No longer need to
change instance, zookeepers, user and password when running examples.
Mike Walch [Wed, 7 Dec 2016 18:25:10 +0000 (13:25 -0500)]
ACCUMULO-4511 Adding examples from Accumulo repo
* Created run.sh script for running examples
* Fixed package names
Mike Walch [Tue, 6 Dec 2016 21:00:54 +0000 (16:00 -0500)]
Adding LICENSE, NOTICE & README.md