Michael Wall [Fri, 10 Feb 2017 17:36:49 +0000 (17:36 +0000)]
[maven-release-plugin] prepare release rel/1.8.1
Christopher Tubbs [Thu, 9 Feb 2017 21:45:46 +0000 (16:45 -0500)]
Merge branch '1.7' into 1.8
Christopher Tubbs [Thu, 9 Feb 2017 21:28:55 +0000 (16:28 -0500)]
ACCUMULO-4519 regenerate thrift
Michael Wall [Thu, 9 Feb 2017 21:13:47 +0000 (16:13 -0500)]
ACCUMULO-4519 patch from Yudong Wu
Adds missing system permission and namespace functionality to the proxy.
Michael Wall [Thu, 2 Feb 2017 17:57:00 +0000 (12:57 -0500)]
ACCUMULO-4480 - update testing section of user manual for 1.8
Michael Wall [Thu, 9 Feb 2017 15:48:03 +0000 (10:48 -0500)]
Merge branch '1.7' into 1.8
Michael Wall [Thu, 9 Feb 2017 15:46:31 +0000 (10:46 -0500)]
Merge branch 'mjwall-ACCUMULO-4481' into 1.7
Michael Wall [Thu, 9 Feb 2017 15:34:15 +0000 (10:34 -0500)]
ACCUMULO-4479 Removing UPGRADING.md in favor
of adding upgrade instructions to release notes
Mike Miller [Wed, 8 Feb 2017 19:36:26 +0000 (14:36 -0500)]
ACCUMULO-4577: Fix merge error
Mike Miller [Wed, 8 Feb 2017 19:09:11 +0000 (14:09 -0500)]
Merge branch 'ACCUMULO-4577_1.7' into 1.8
Conflicts:
core/src/main/java/org/apache/accumulo/core/client/impl/Tables.java
server/master/src/main/java/org/apache/accumulo/master/tableOps/CloneTable.java
server/tserver/src/main/java/org/apache/accumulo/tserver/TabletServer.java
Mike Miller [Thu, 2 Feb 2017 14:02:57 +0000 (09:02 -0500)]
ACCUMULO-4577: modified exception thrown by Tables.getNamespaceId
Keith Turner [Mon, 6 Feb 2017 19:38:24 +0000 (14:38 -0500)]
Merge branch '1.7' into 1.8
Ed Coleman [Mon, 6 Feb 2017 18:47:15 +0000 (13:47 -0500)]
ACCUMULO-4574 Modified TableOperations online to check if table is already online before executing fate transaction.
When the online command is issued, the fate operation will block if a fate
transaction has locked the table. If the table is already online, there is no
reason to block and then issue the online operation. This modification turns
the online command into a noop if the table is already online. This change
includes an IT test that uses a compaction with slow iterator to cause the fate
transaction to lock a table and then runs the online command - checking that
the operation did not block.
Squashed commit of the following:
Note from kturner :In addition to squasing the following commits, I also
organized the imports on TableOperationsImpl. This is a changes that not
present in the commits mentioned below.
commit
6d8a0502f3d028f6489512764a3ebc9e8a862d99
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sat Feb 4 12:15:23 2017 -0500
ACCUMULO-4574 Refactored Tables.getTableState() to optionally clear cache and TableOperations.online() to use added method.
This updates the pull request with review comments to create a getTableState method that can optionally clear the
zookeeper cache.
commit
03a8dbc82404c2ff34c166b522ddab3e922bc6ce
Merge:
0d0e103 33712bb
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sat Feb 4 08:35:08 2017 -0500
Merge remote-tracking branch 'upstream/1.7' into ACCUMULO-4574
commit
0d0e103d23b0f37921fc2ed5d03bea0e8de79f0b
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sun Jan 29 03:09:41 2017 -0500
ACCUMULO-4574 Modify table online operation to check for online state before executing fate operation
This commit updates the pull request to incorporate review comments. It also contains the changes
from Keith Turner in pull request 209 - ACCUMULO-4578 that provides refactored AdminUtil.FateStatus class.
- modified test to use AdminUtil.FateStatus class.
- added method to clear zoocache by path to Tables.
- added cache clear for table state to online check.
commit
7588c90dc5ec755ce167f1e2877081ad3e98ecd8
Merge:
1a20212 db84650
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sat Jan 28 15:25:01 2017 -0500
Merge remote-tracking branch 'keith-turner/ACCUMULO-4578' into ACCUMULO-4574
commit
1a20212065a767b3edf428911fd9f184393deb5d
Merge:
32c13d5 0385bd7
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sat Jan 28 14:37:04 2017 -0500
Merge branch 'ACCUMULO-4574' of github.com:EdColeman/accumulo into ACCUMULO-4574
commit
32c13d59e6585fe3e8735f5d586593e801c23f27
Author: Ed Coleman <dev1@etcoleman.com>
Date: Tue Jan 24 00:14:32 2017 -0500
ACCUMULO-4574 Partial update of online noop test incorporating some pull request comments for additional review.
- Increased blocked online timeout to up to compaction time.
- extended AccumuloClusterIT instead of ConfigurableMacIT
- refactored online op thread to use callable with a future, simplyfing timing and eliminating exception handling.
Other pull request comments dealing with FATE internals, possible FATE utility and zoo cache require addition
evaluation and will be included in future commit.
commit
259eedaa18a3f3fff4df8eafb78c1a706b8d558b
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sun Jan 22 20:25:58 2017 -0500
ACCUMULO-4574 Modified TableOperations online to check if table is already online before executing fate transaction.
When the online command is issued, the fate operation will block if a fate transaction has locked the table. If
the table is already online, there is no reason to block and then issue the online operation. This modification
turns the online command into a noop if the table is already online. This change includes an IT
test that uses a compaction with slow iterator to cause the fate transaction to lock a table and
then runs the online command - checking that the operation did not block.
commit
0385bd73ab2fa3d8c949c779623577810f877c35
Author: Ed Coleman <dev1@etcoleman.com>
Date: Tue Jan 24 00:14:32 2017 -0500
ACCUMULO-4574 Partial update of online noop test incorporating some pull request comments for additional review.
- Increased blocked online timeout to up to compaction time.
- extended AccumuloClusterIT instead of ConfigurableMacIT
- refactored online op thread to use callable with a future, simplyfing timing and eliminating exception handling.
Other pull request comments dealing with FATE internals, possible FATE utility and zoo cache require addition
evaluation and will be included in future commit.
commit
058173b59b8e97503a00ec095a9a4235370a9aaa
Author: Ed Coleman <dev1@etcoleman.com>
Date: Sun Jan 22 20:25:58 2017 -0500
ACCUMULO-4574 Modified TableOperations online to check if table is already online before executing fate transaction.
When the online command is issued, the fate operation will block if a fate transaction has locked the table. If
the table is already online, there is no reason to block and then issue the online operation. This modification
turns the online command into a noop if the table is already online. This change includes an IT
test that uses a compaction with slow iterator to cause the fate transaction to lock a table and
then runs the online command - checking that the operation did not block.
Michael Wall [Thu, 2 Feb 2017 15:39:52 +0000 (10:39 -0500)]
Merge branch '1.7' into 1.8
Michael Wall [Thu, 2 Feb 2017 15:38:17 +0000 (10:38 -0500)]
Squashed commit of the following:
commit
b6d788398464b7661f0daf9d43bb2e5202f966d8
Author: Luis Tavarez <zeravat@outlook.com>
Date: Mon Jan 30 11:04:54 2017 -0500
ACCUMULO-4446 Commiting to run Jenkins
commit
42b0a133e49f3583e7a2e0324f2792f745acf910
Merge:
e76b11f 42abc6b
Author: Luis Tavarez <zeravat@outlook.com>
Date: Mon Jan 30 08:25:44 2017 -0500
Merge branch 'ACCCUMULO-4446-1.7' of github.com:lstav/accumulo into ACCCUMULO-4446-1.7
commit
e76b11f00d34e2c52afb19f75821296b37379ae2
Author: Luis Tavarez <zeravat@outlook.com>
Date: Mon Jan 30 08:25:18 2017 -0500
ACCUMULO-4446 Changed format of log messages
commit
42abc6b4ec8f720eefb1b7c2d43e5aee643f6ff3
Merge:
43b196f 23b7969
Author: Luis Tavarez <zeravat@outlook.com>
Date: Thu Jan 26 18:07:21 2017 -0500
Merge branch 'ACCCUMULO-4448-1.7' of github.com:lstav/accumulo into ACCCUMULO-4446-1.7
commit
43b196fbd93f7b1d0fae4a0ccca57d9a98be7491
Author: Luis Tavarez <zeravat@outlook.com>
Date: Thu Jan 26 09:35:40 2017 -0500
ACCUMULO-4446 Added log messages when acquiring Master, Monitor, ZK, and GC locks
commit
23b7969a8ecf557ab5653fdc8f5075ddf251b157
Author: Luis Tavarez <zeravat@outlook.com>
Date: Thu Jan 26 09:35:40 2017 -0500
ACCUMULO-4446 Making changes to 1.7
Signed-off-by: Michael Wall <mjwall@apache.org>
Keith Turner [Mon, 30 Jan 2017 22:03:24 +0000 (17:03 -0500)]
Merge branch '1.7' into 1.8
Keith Turner [Mon, 30 Jan 2017 22:02:53 +0000 (17:02 -0500)]
ACCUMULO-4578 fixed checkstyle issue
Keith Turner [Mon, 30 Jan 2017 20:09:36 +0000 (15:09 -0500)]
Merge branch '1.7' into 1.8
Conflicts:
test/src/main/java/org/apache/accumulo/test/functional/ConcurrentDeleteTableIT.java
test/src/main/java/org/apache/accumulo/test/functional/FunctionalTestUtils.java
Keith Turner [Mon, 30 Jan 2017 18:02:34 +0000 (13:02 -0500)]
ACCUMULO-4578 added some javadoc
Keith Turner [Fri, 27 Jan 2017 02:42:03 +0000 (21:42 -0500)]
ACCUMULO-4578 release namespace lock when compaction canceled
Keith Turner [Fri, 27 Jan 2017 00:24:14 +0000 (19:24 -0500)]
Merge branch '1.7' into 1.8
Keith Turner [Thu, 26 Jan 2017 22:47:22 +0000 (17:47 -0500)]
ACCUMULO-4575 Fixed concurrent delete issue in FATE ops
Dave Marion [Wed, 25 Jan 2017 21:11:20 +0000 (16:11 -0500)]
Merge branch '1.7' into 1.8
Dave Marion [Wed, 25 Jan 2017 20:41:01 +0000 (15:41 -0500)]
ACCUMULO-4576: Always use the most current tablet server information to make assignment / balancing decisions
Keith Turner [Wed, 25 Jan 2017 17:42:41 +0000 (12:42 -0500)]
Merge branch '1.7' into 1.8
Conflicts:
server/master/src/main/java/org/apache/accumulo/master/tableOps/DeleteTable.java
Keith Turner [Wed, 25 Jan 2017 17:19:01 +0000 (12:19 -0500)]
ACCUMULO-4575 Fixed concurrent delete table bug
Keith Turner [Fri, 20 Jan 2017 20:01:17 +0000 (15:01 -0500)]
ACCUMULO-4572 Avoid blocking when looking for files w/o sample
Josh Elser [Tue, 17 Jan 2017 21:38:14 +0000 (16:38 -0500)]
Merge branch '1.7' into 1.8
Josh Elser [Tue, 17 Jan 2017 21:25:36 +0000 (16:25 -0500)]
ACCUMULO-4571 Move the migration log message from debug to trace
Christopher Tubbs [Wed, 11 Jan 2017 22:23:30 +0000 (17:23 -0500)]
Merge branch '1.7' into 1.8
Christopher Tubbs [Wed, 11 Jan 2017 22:22:41 +0000 (17:22 -0500)]
ACCUMULO-4549 Deprecate extra init in TabletBalancer
Christopher Tubbs [Mon, 9 Jan 2017 23:14:23 +0000 (18:14 -0500)]
Merge branch '1.7' into 1.8
Conflicts:
shell/src/main/java/org/apache/accumulo/shell/commands/GrepCommand.java
shell/src/main/java/org/apache/accumulo/shell/commands/ScanCommand.java
Christopher Tubbs [Mon, 9 Jan 2017 22:52:16 +0000 (17:52 -0500)]
ACCUMULO-4541 Ensure grep output gets flushed
Ensure output of grep command in shell (and egrep) gets flushed to the
output file when the '-o' option is used. Also ensure the '-o' option is
not shown as an option in ScanCommand subclasses which do not support
its use.
Christopher Tubbs [Mon, 9 Jan 2017 22:28:06 +0000 (17:28 -0500)]
Merge branch '1.7' into 1.8
Christopher Tubbs [Mon, 9 Jan 2017 22:27:27 +0000 (17:27 -0500)]
ACCUMULO-4565 Update copyright dates to 2017
Josh Elser [Wed, 4 Jan 2017 17:16:29 +0000 (12:16 -0500)]
Merge branch '1.7' into 1.8
Adam J. Shook [Thu, 15 Dec 2016 20:13:28 +0000 (15:13 -0500)]
[ACCUMULO-4535] Fix NPE in HostRegexTableLoadBalancer
Signed-off-by: Josh Elser <elserj@apache.org>
Josh Elser [Sun, 11 Dec 2016 21:16:06 +0000 (16:16 -0500)]
Merge branch '1.7' into 1.8
Josh Elser [Fri, 9 Dec 2016 03:44:09 +0000 (22:44 -0500)]
ACCUMULO-4534 Disable external entities in SAX parser
Closes apache/accumulo#192
Sean Busbey [Fri, 9 Dec 2016 21:33:37 +0000 (15:33 -0600)]
Merge branch '1.7' into 1.8
Conflicts:
server/tracer/src/main/java/org/apache/accumulo/tracer/TraceServer.java
Sean Busbey [Wed, 7 Dec 2016 16:45:51 +0000 (10:45 -0600)]
ACCUMULO-4533 TraceServer shouldn't abort given problems with trace table checks.
Signed-off-by: Mike Drob <mdrob@cloudera.com>
Signed-off-by: Josh Elser <elserj@apache.org>
Mike Miller [Tue, 6 Dec 2016 16:46:47 +0000 (11:46 -0500)]
Merge branch '1.7' into 1.8
Mike Miller [Tue, 6 Dec 2016 16:31:55 +0000 (11:31 -0500)]
ACCUMULO-4505: Another fix for shell errroneously reading conf
Mike Miller [Wed, 23 Nov 2016 13:13:53 +0000 (08:13 -0500)]
ACCUMULO-4525: replace more meaningless method names
Mike Miller [Tue, 22 Nov 2016 19:58:58 +0000 (14:58 -0500)]
Merge branch '1.7' into 1.8
Conflicts:
core/src/test/java/org/apache/accumulo/core/data/RangeTest.java
core/src/test/java/org/apache/accumulo/core/file/rfile/RFileTest.java
core/src/test/java/org/apache/accumulo/core/iterators/system/MultiIteratorTest.java
Mike Miller [Tue, 22 Nov 2016 15:59:44 +0000 (10:59 -0500)]
ACCUMULO-4525: replace meaningless method names
Mike Miller [Thu, 17 Nov 2016 18:58:29 +0000 (13:58 -0500)]
Merge branch '1.7' into 1.8
Mike Miller [Thu, 17 Nov 2016 18:55:03 +0000 (13:55 -0500)]
ACCUMULO-4522: cleanup of unsed param in FileUtil
Mike Miller [Tue, 8 Nov 2016 19:44:21 +0000 (14:44 -0500)]
Merge branch '1.7' into 1.8
milleruntime [Tue, 1 Nov 2016 19:17:27 +0000 (15:17 -0400)]
ACCUMULO-4505: Fix for Shell erroneously reading accumulo-site.xml
Mike Miller [Mon, 7 Nov 2016 17:15:38 +0000 (12:15 -0500)]
Merge branch '1.7' into 1.8
Mike Miller [Mon, 7 Nov 2016 16:25:26 +0000 (11:25 -0500)]
ACCUMULO-4504: Improved the help for Shell zookeeper options
Christopher Tubbs [Fri, 4 Nov 2016 22:20:56 +0000 (18:20 -0400)]
Merge branch '1.7' into 1.8
(No change in 1.8 branch)
Christopher Tubbs [Fri, 4 Nov 2016 22:20:04 +0000 (18:20 -0400)]
ACCUMULO-4514 Remove unnecessary code
* Remove unused imports
* Use diamond operators
Sean Busbey [Mon, 17 Oct 2016 21:41:50 +0000 (14:41 -0700)]
Merge branch '1.7' into 1.8
Sean Busbey [Thu, 6 Oct 2016 14:21:59 +0000 (09:21 -0500)]
ACCUMULO-4489 Monitor login for access to trace table should fall back to general kerberos keytab when trace keytab is not set.
Signed-off-by: Josh Elser <elserj@apache.org>
Christopher Tubbs [Fri, 14 Oct 2016 21:44:18 +0000 (17:44 -0400)]
Merge branch '1.7' into 1.8
mm376k [Tue, 11 Oct 2016 23:29:03 +0000 (19:29 -0400)]
ACCUMULO-2278 Return value from in.read() should be checked
Return value from in.read() should be checked in
NonCachingSecretKeyEn.cryptionStrategy#doKeyEncryptionOperation()
Commits squashed and rebase'd onto 1.7 branch, formatted, and log
message reworded by ctubbsii. This closes #163
Signed-off-by: Christopher Tubbs <ctubbsii@apache.org>
Josh Elser [Wed, 12 Oct 2016 03:08:10 +0000 (23:08 -0400)]
Merge branch '1.7' into 1.8
Joe Harten [Wed, 12 Oct 2016 00:38:39 +0000 (20:38 -0400)]
ACCUMULO-4431 adding INFO log for random port assignment
Closes apache/accumulo#165
Signed-off-by: Josh Elser <elserj@apache.org>
Ed Coleman [Wed, 12 Oct 2016 00:48:34 +0000 (20:48 -0400)]
Merge branch '1.8' of https://git-wip-us.apache.org/repos/asf/accumulo into 1.8
Ivan Bella [Wed, 12 Oct 2016 00:20:10 +0000 (20:20 -0400)]
ACCUMULO-4483 Added another test case
This forces the exception by reseeking the in memory map
iterator to the same location after forcing a switch.
Ed Coleman [Wed, 12 Oct 2016 00:34:55 +0000 (20:34 -0400)]
Merge branch '1.7' into 1.8
Ed Coleman [Wed, 12 Oct 2016 00:24:53 +0000 (20:24 -0400)]
ACCUMULO-2724 Changed option for threads to --numThreads.
- Changed the -t option for threads to --numThreads to elimiate conflict with table name option
Dave Marion [Tue, 11 Oct 2016 23:18:51 +0000 (19:18 -0400)]
ACCUMULO-4483: Added test case to ensure that MemValue.decode does not modify the input value.
Christopher Tubbs [Tue, 11 Oct 2016 22:54:24 +0000 (18:54 -0400)]
ACCUMULO-4497 Remove another unnecessary exclude-filter.xml
Christopher Tubbs [Tue, 11 Oct 2016 22:50:47 +0000 (18:50 -0400)]
Merge branch '1.7' into 1.8
Christopher Tubbs [Tue, 11 Oct 2016 22:47:55 +0000 (18:47 -0400)]
ACCUMULO-4497 Remove unnecessary excludes files
* Remove "empty" findbugs exclude filter files
* Activate exclude filters for findbugs only when exclude filter file
exists
Josh Elser [Sat, 8 Oct 2016 20:50:13 +0000 (16:50 -0400)]
Merge branch '1.7' into 1.8
Josh Elser [Sat, 8 Oct 2016 20:49:48 +0000 (16:49 -0400)]
ACCUMULO-4488 Fix numbered list (addendum)
Dylan Hutchison [Sat, 8 Oct 2016 15:39:22 +0000 (08:39 -0700)]
ACCUMULO-4494 Add families and inclusive to IteratorTestInput
Changed the relevant tests to use the new information.
Added equals() and hashCode() for good measure.
By default the families is empty and inclusive is false,
so no existing code should break.
Inserted a couple side changes to clear compiler warnings.
Closes apache/accumulo#162
Signed-off-by: Josh Elser <elserj@apache.org>
Christopher Tubbs [Fri, 7 Oct 2016 22:57:32 +0000 (18:57 -0400)]
Merge branch 'pr-158' into 1.8
Sean Busbey [Fri, 7 Oct 2016 05:26:10 +0000 (00:26 -0500)]
Merge branch '1.7' into 1.8
Sean Busbey [Thu, 6 Oct 2016 16:43:50 +0000 (11:43 -0500)]
ACCUMULO-4488 update kerberos section in the user manual to fill some gaps.
Dave Marion [Tue, 4 Oct 2016 18:41:57 +0000 (14:41 -0400)]
ACCUMULO-4483: Don't modify the source Value in MemValue.decode.
Christopher Tubbs [Thu, 29 Sep 2016 21:51:59 +0000 (17:51 -0400)]
ACCUMULO-4481 Remove unused logger.* properties
Christopher Tubbs [Thu, 29 Sep 2016 19:38:53 +0000 (15:38 -0400)]
Merge branch '1.7' into 1.8
Christopher Tubbs [Thu, 29 Sep 2016 19:27:49 +0000 (15:27 -0400)]
ACCUMULO-4454 Auto-determine version for manual
Use resource filtering to generate the Accumulo version placed in the
user manual. Also fix some minor broken links and old LaTeX syntax found
while testing.
Josh Elser [Thu, 29 Sep 2016 03:36:20 +0000 (23:36 -0400)]
Merge branch '1.7' into 1.8
Josh Elser [Thu, 29 Sep 2016 03:09:28 +0000 (23:09 -0400)]
ACCUMULO-4474 Unused import
Josh Elser [Wed, 28 Sep 2016 16:46:52 +0000 (12:46 -0400)]
Merge branch '1.7' into 1.8
Mike Walch [Wed, 28 Sep 2016 14:34:38 +0000 (10:34 -0400)]
ACCUMULO-4476 User manual references old version
* Changed version reference in installation instructions from 1.6.0
to X.Y.Z so that it doesn't need to be updated for each release.
Closes apache/accumulo#156
Signed-off-by: Josh Elser <elserj@apache.org>
Mike Walch [Wed, 28 Sep 2016 13:37:36 +0000 (09:37 -0400)]
ACCUMULO-4475 User manual references 'admin start'
* Removed references as 'bin/accumulo admin start' command does not exist.
Closes apache/accumulo#155
Signed-off-by: Josh Elser <elserj@apache.org>
Josh Elser [Wed, 28 Sep 2016 01:11:31 +0000 (21:11 -0400)]
Merge branch '1.7' into 1.8
Dima Spivak [Tue, 27 Sep 2016 18:28:22 +0000 (14:28 -0400)]
ACCUMULO-4473 Add mention of scanners to continuous ingest README.md
Signed-off-by: Josh Elser <elserj@apache.org>
Josh Elser [Wed, 28 Sep 2016 01:02:39 +0000 (21:02 -0400)]
ACCUMULO-4474 Remove unnecessary import (addendum)
Josh Elser [Tue, 27 Sep 2016 19:27:52 +0000 (15:27 -0400)]
Merge branch '1.7' into 1.8
Josh Elser [Tue, 27 Sep 2016 18:52:13 +0000 (14:52 -0400)]
ACCUMULO-4474 Make ExistingMacIT more deterministic in verification
Remove the use of sleep for some action to happen, actively check
for the state we expect to see.
Sean Busbey [Mon, 26 Sep 2016 15:55:12 +0000 (10:55 -0500)]
Merge branch '1.7' into 1.8
Dima Spivak [Sat, 24 Sep 2016 03:29:15 +0000 (20:29 -0700)]
ACCUMULO-4471 Typo in user manual replication instructions
Signed-off-by: Sean Busbey <busbey@cloudera.com>
Josh Elser [Mon, 26 Sep 2016 13:11:58 +0000 (09:11 -0400)]
Merge branch '1.7' into 1.8
milleruntime [Fri, 23 Sep 2016 14:24:04 +0000 (10:24 -0400)]
ACCUMULO-4461: modified commands to not prompt for a password
Closes apache/accumulo#154
Signed-off-by: Josh Elser <elserj@apache.org>
Josh Elser [Mon, 26 Sep 2016 13:10:34 +0000 (09:10 -0400)]
Revert "ACCUMULO-4461: modified commands to not prompt for a password"
This reverts commit
d23676dc3698d2ca6084b17cd4326b43dbcec41c.
Josh Elser [Mon, 26 Sep 2016 01:51:01 +0000 (21:51 -0400)]
Merge branch '1.7' into 1.8
Dima Spivak [Fri, 23 Sep 2016 19:57:32 +0000 (12:57 -0700)]
ACCUMULO-4469 ConcurrentModificationException while running MultiTable.xml node in Random Walk
Signed-off-by: Josh Elser <elserj@apache.org>
Josh Elser [Fri, 23 Sep 2016 14:24:54 +0000 (10:24 -0400)]
Merge branch '1.7' into 1.8
Josh Elser [Fri, 23 Sep 2016 14:24:04 +0000 (10:24 -0400)]
ACCUMULO-4461: modified commands to not prompt for a password
Closes apache/accumulo#154
Signed-off-by: Josh Elser <elserj@apache.org>
Sean Busbey [Thu, 22 Sep 2016 18:01:52 +0000 (13:01 -0500)]
ACCUMULO-4467 Ensure commons-math3 is on the classpath for RandomWalk MR jobs.
Sean Busbey [Thu, 22 Sep 2016 17:59:14 +0000 (12:59 -0500)]
Merge branch '1.7' into 1.8
-sours merge, since 1.7 and 1.8 have different classpath needs for ACCUMULO-4467
Sean Busbey [Wed, 21 Sep 2016 19:44:56 +0000 (14:44 -0500)]
ACCUMULO-4467 Ensure commons-math is on the classpath for RandomWalk MR jobs.