Commit Graph

499 Commits

Author SHA1 Message Date
Jonathan M Hsieh 2124d3df70 HBASE-13154 add support for mob in TestAcidGuarantees and IntegrationTestAcidGuarantees 2015-03-05 00:09:05 -08:00
Misty Stanley-Jones 39425a8558 HBASE-11670 Generate PDF of Reference Guide 2015-03-05 09:31:11 +10:00
Enis Soztutar 9899aab12b HBASE-11580 Failover handling for secondary region replicas 2015-03-03 11:48:12 -08:00
Jonathan M Hsieh d66f88134c HBASE-13132 Improve RemoveColumn action debug message 2015-03-03 04:41:36 -08:00
Jonathan M Hsieh cf4f4fcbb3 HBASE-13141 IntegrationTestAcidGuarantees returns incorrect values for getColumnFamilies 2015-03-03 04:41:27 -08:00
Jonathan M Hsieh daed00fc98 HBASE-13141 IntegrationTestAcidGuarantees returns incorrect values for getColumnFamilies 2015-03-02 21:26:01 -08:00
Jonathan M Hsieh d2e64032c6 HBASE-13132 Improve RemoveColumn action debug message 2015-03-02 10:31:24 -08:00
Enis Soztutar 21b366afe1 HBASE-11842 Integration test for async wal replication to secondary regions 2015-02-22 21:29:12 -08:00
Jonathan M Hsieh fe335b683c Merge branch 'master' (2/11/15) into hbase-11339
Conflicts:
	hbase-client/src/main/java/org/apache/hadoop/hbase/HColumnDescriptor.java
	hbase-client/src/test/java/org/apache/hadoop/hbase/TestHColumnDescriptor.java
	hbase-common/src/main/java/org/apache/hadoop/hbase/TagType.java
	hbase-common/src/main/resources/hbase-default.xml
	hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/regionserver/MetricsRegionServerWrapper.java
	hbase-hadoop2-compat/src/main/java/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.java
	hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/io/HFileLink.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/master/handler/DeleteTableHandler.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/master/snapshot/DisabledTableSnapshotHandler.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/DefaultStoreEngine.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/MetricsRegionServerWrapperImpl.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/Compactor.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/DefaultCompactor.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/compactions/StripeCompactor.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/ExportSnapshot.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotReferenceUtil.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/MetricsRegionServerWrapperStub.java
	pom.xml
	src/main/docbkx/book.xml
	src/main/docbkx/ops_mgt.xml
	src/main/docbkx/schema_design.xml
2015-02-22 12:54:45 -08:00
Dima Spivak ca25a6a870 HBASE-12869 Add a REST API implementation of the ClusterManager interface
Signed-off-by: stack <stack@apache.org>
2015-02-17 12:03:09 -08:00
Andrew Purtell 200ec5b191 HBASE-12747 IntegrationTestMTTR will OOME if launched with mvn verify (Abhishek Singh Chouhan) 2015-02-09 18:54:43 -08:00
stack 825871431e HBASE-12782 ITBLL fails for me if generator does anything but 5M per maptask 2015-01-30 19:12:17 -08:00
Devaraj Das 6b20a0f831 HBASE-11574. hbase:meta's regions can be replicated 2015-01-27 16:40:29 -08:00
Ramkrishna cfb0cf72d4 HBASE-12893 - IntegrationTestBigLinkedListWithVisibility should use
buffered writes (Jingcheng Du)
2015-01-27 10:25:23 +05:30
Nick Dimiduk ab18158e60 HBASE-12728 buffered writes substantially less useful after removal of HTablePool (Solomon Duskis and Nick Dimiduk)
In our pre-1.0 API, HTable is considered a light-weight object that consumed by
a single thread at a time. The HTablePool class provided a means of sharing
multiple HTable instances across a number of threads. As an optimization,
HTable managed a "write buffer", accumulating edits and sending a "batch" all
at once. By default the batch was sent as the last step in invocations of
put(Put) and put(List<Put>). The user could disable the automatic flushing of
the write buffer, retaining edits locally and only sending the whole "batch"
once the write buffer has filled or when the flushCommits() method in invoked
explicitly. Explicit or implicit batch writing was controlled by the
setAutoFlushTo(boolean) method. A value of true (the default) had the write
buffer flushed at the completion of a call to put(Put) or put(List<Put>). A
value of false allowed for explicit buffer management. HTable also exposed the
buffer to consumers via getWriteBuffer().

The combination of HTable with setAutoFlushTo(false) and the HTablePool
provided a convenient mechanism by which multiple "Put-producing" threads could
share a common write buffer. Both HTablePool and HTable are deprecated, and
they are officially replaced in The new 1.0 API by Table and BufferedMutator.
Table, which replaces HTable, no longer exposes explicit write-buffer
management. Instead, explicit buffer management is exposed via BufferedMutator.
BufferedMutator is made safe for concurrent use. Where code would previously
retrieve and return HTables from an HTablePool, now that code creates and
shares a single BufferedMutator instance across all threads.
2015-01-23 08:48:31 -08:00
Nick Dimiduk 9824eb7840 HBASE-12810 Update to htrace-incubating 2015-01-22 14:28:20 -08:00
Sean Busbey 418ea93774 HBASE-12898 ensure direct dependencies are declared. 2015-01-22 14:33:25 -06:00
Misty Stanley-Jones 1a21c1684c HBASE-11533 Asciidoc Proof of Concept 2015-01-13 22:32:29 -08:00
tedyu 9246af8dac HBASE-12796 Clean up HTable and HBaseAdmin deprecated constructor usage (Jurriaan Mous) 2015-01-08 07:49:28 -08:00
tedyu 2452d3861f HBASE-12802 Remove unnecessary Table.flushCommits() (Solomon Duskis) 2015-01-05 15:45:52 -08:00
Enis Soztutar 24bcebdeeb HBASE-12799 ITAG fails with java.lang.RuntimeException if table does not exist 2015-01-05 11:14:40 -08:00
tedyu ac95cc1fbb HBASE-12783 Create efficient RegionLocator implementation (Solomon Duskis) 2015-01-02 19:48:06 -08:00
Esteban Gutierrez b2eea8cac6 HBASE-12695 JDK 1.8 compilation broken
Signed-off-by: stack <stack@apache.org>
2014-12-29 11:02:04 -08:00
Elliott Clark e5ca773f78 HBASE-12429 Add port to ClusterManager's actions. 2014-12-29 10:22:52 -08:00
Jonathan M Hsieh 9a829dc458 HBASE-12735 Refactor TestAcidGuarantees so it can live as unit test and as an integration test 2014-12-23 17:18:58 -08:00
Jonathan M Hsieh 4a6f1d9d6b HBASE-12718 Convert TestAcidGuarantees from a unit test to an integration test 2014-12-18 17:45:08 -08:00
Jonathan M Hsieh 33c27f4e03 HBASE-12718 Convert TestAcidGuarantees from a unit test to an integration test 2014-12-18 17:21:23 -08:00
Yi Deng 555d14ed45 HBASE-12680 Move signal related code from ClusterManager to HBaseClusterManager and change ClusterManager to an interface
Summary: The reason of this change is to make us write implementation of ClusterManager not using ssh/unix signals.

Test Plan: The compilation is OK.

Reviewers: eclark, manukranthk

Differential Revision: https://reviews.facebook.net/D30201

Signed-off-by: Elliott Clark <eclark@apache.org>
2014-12-15 09:09:43 -08:00
Yi Deng fe12ad5066 Fix the ASCII art
Signed-off-by: stack <stack@apache.org>
2014-12-11 17:22:29 -08:00
Andrew Purtell bb15fd5fe0 HBASE-12606 Sanity check encryption configuration before opening WAL or onlining regions
Also disables IntegrationTestIngestWithEncryption if distributed
cluster configuration is missing prerequisites.
2014-12-06 21:46:43 -08:00
Devaraj Das ca0c1774c9 HBASE-12548. Improve debuggability of IntegrationTestTimeBoundedRequestsWithRegionReplicas 2014-12-06 18:18:03 -08:00
stack 54f438cee4 HBASE-12616 We lost the linked list commands in recent usage refactoring 2014-12-02 14:15:04 -08:00
stack 7a3396f0e1 HBASE-12490 Replace uses of setAutoFlush(boolean, boolean) (Solomon Duskis) 2014-12-02 10:06:21 -08:00
stack 1a9b556474 Revert "HBASE-12558 TestHCM.testClusterStatus Unexpected exception, expected<org.apache.hadoop.hbase.regionserver.RegionServerStoppedException> but was<junit.framework.AssertionFailedError> -- ADDED DEBUG"
This reverts commit 8b8f2026bd.

Overcommit. Added "HBASE-12490 Replace uses of setAutoFlush(boolean,
boolean)" by mistake

Conflicts:
	hbase-client/src/main/java/org/apache/hadoop/hbase/client/ClusterStatusListener.java
	hbase-client/src/main/java/org/apache/hadoop/hbase/client/HTable.java
2014-12-02 09:51:19 -08:00
stack 69a437ac0d HBASE-12514 Cleanup HFileOutputFormat legacy code (Solomon Duskis)
Signed-off-by: stack <stack@apache.org>
2014-12-01 10:15:51 -08:00
stack 58b6b24c29 HBASE-12519 Remove tabs used as whitespace (Varun Saxena) 2014-11-28 20:50:02 -08:00
stack 8b8f2026bd HBASE-12558 TestHCM.testClusterStatus Unexpected exception, expected<org.apache.hadoop.hbase.regionserver.RegionServerStoppedException> but was<junit.framework.AssertionFailedError> -- ADDED DEBUG 2014-11-25 21:21:50 -08:00
stack 336c22d581 HBASE-12471 Task 4. replace internal ConnectionManager#{delete,get}Connection use with #close, #createConnection (0.98, 0.99) under src/main/java
Move from HConnection to ClusterConnection or Connection
Use unmanaged connections where we use managed previous
(used the jdk7 https://docs.oracle.com/javase/7/docs/technotes/guides/language/try-with-resources.html idiom).

In ZKConfig, synchronize on Configuration rather than make a copy.
Making a copy we were dropping hbase configs in certain test context
(could not find the zk ensemble because default port).

In tests, some move to the new style connection setup but mostly
fixes for premature connection close or adding cleanup where it
was lacking.
2014-11-24 09:46:28 -08:00
stack 5f391efda1 Revert "HBASE-12471 Task 4. replace internal ConnectionManager#{delete,get}Connection use with #close, #createConnection (0.98, 0.99)"
This reverts commit d3e7c3cfa9.
2014-11-18 16:30:52 -08:00
stack b94e6738d9 HBASE-10378 Refactor write-ahead-log implementation -- ADDEDNUM 2014-11-18 12:12:35 -08:00
stack d3e7c3cfa9 HBASE-12471 Task 4. replace internal ConnectionManager#{delete,get}Connection use with #close, #createConnection (0.98, 0.99) 2014-11-18 09:48:54 -08:00
Nick Dimiduk 42c03460e4 HBASE-12472 Improve debuggability of IntegrationTestBulkLoad 2014-11-17 09:24:06 +01:00
Andrew Purtell 3b8c0769cc HBASE-12450 Unbalance chaos monkey might kill all region servers without starting them back (Virag Kothari) 2014-11-07 17:24:46 -08:00
Nick Dimiduk 3c06b48181 HBASE-12403 IntegrationTestMTTR flaky due to aggressive RS restart timeout 2014-11-01 10:34:59 -07:00
Nick Dimiduk b784f7db99 HBASE-12401 Add some timestamp signposts in IntegrationTestMTTR 2014-10-31 17:21:20 -07:00
Nick Dimiduk f5d6314c87 HBASE-12335 IntegrationTestRegionReplicaPerf is flaky 2014-10-31 17:12:21 -07:00
Enis Soztutar 42ed215c2d HBASE-12367 Integration tests should not restore the cluster if the CM is not destructive 2014-10-28 17:10:50 -07:00
Andrew Purtell 70a312e53f HBASE-11912 Catch some bad practices at compile time with error-prone 2014-10-27 09:29:23 -07:00
Andrew Purtell ff5bc351b2 Revert "HBASE-11912 Catch some bad practices at compile time with error-prone"
This reverts commit 7ed0260eff.
2014-10-25 08:33:43 -07:00
Andrew Purtell 7ed0260eff HBASE-11912 Catch some bad practices at compile time with error-prone 2014-10-24 18:15:12 -07:00
Elliott Clark 11638a8cf2 HBASE-12322 Add Clean command to ITBLL
Signed-off-by: stack <stack@apache.org>
2014-10-23 20:53:43 -07:00
Elliott Clark 84f3549d5e HBASE-12314 Add chaos monkey policy to execute two actions concurrently 2014-10-22 15:19:30 -07:00
Nick Dimiduk ebe8db5869 HBASE-12317 Run IntegrationTestRegionReplicaPerf w.o mapred 2014-10-22 10:18:28 -07:00
Matteo Bertozzi 49056295ef HBASE-12161 Add support for grant/revoke on namespaces in AccessControlClient (Srikanth Srungarapu) 2014-10-18 21:18:42 +01:00
Dima Spivak dc86001523 HBASE-12252 IntegrationTestBulkLoad fails with illegal partition error
Signed-off-by: stack <stack@apache.org>
2014-10-14 14:04:19 -07:00
Jimmy Xiang 408de0fbb3 HBASE-11838 Enable PREFIX_TREE in integration tests 2014-10-07 09:48:21 -07:00
Andrew Purtell 3557a32352 HBASE-12106 Move test annotations to test artifact (Enis Soztutar) 2014-10-06 23:16:22 -07:00
Enis Soztutar 6189b52fb0 HBASE-12042 Replace internal uses of HTable(Configuration, String) with HTable(Configuration, TableName) (Solomon Duskis) 2014-09-29 18:39:44 -07:00
Nick Dimiduk a36ffdaff7 HBASE-12008 Remove IntegrationTestImportTsv#testRunFromOutputCommitter 2014-09-29 13:29:28 -07:00
anoopsjohn 629042f4ce HBASE-12085 mob status should print human readable numbers.(Jingcheng Du) 2014-09-26 13:29:36 +05:30
Jonathan M Hsieh a7f8035ec5 HBASE-12080 Shorten the run time of integration test by default when using mvn failsafe:integration-test (Jingcheng Du) 2014-09-24 06:40:04 -07:00
Elliott Clark 0a28af366b HBASE-12076 Move InterfaceAudience imports to hbase-annotations 2014-09-24 03:57:55 -07:00
Elliott Clark a5bd931682 HBASE-12059 Create hbase-annotations module 2014-09-23 16:44:14 -07:00
Elliott Clark 2635791027 HBASE-12062 Fix usage of Collections.toArray 2014-09-23 09:58:24 -07:00
stack 38dfd9c2aa HBASE-10134 Add Chaos Monkey that doesn't touch the master (Matteo Bertozzi ADDENDUM) 2014-09-18 16:04:38 -07:00
Elliott Clark 50501f8100 HBASE-10314 Add Chaos Monkey that doesn't touch the master 2014-09-18 11:44:03 -07:00
Enis Soztutar f249f242be HBASE-11989 IntegrationTestLoadAndVerify cannot be configured anymore on distributed mode 2014-09-16 12:23:43 -07:00
Enis Soztutar cad76a3431 HBASE-11825 Create Connection and ConnectionManager (Solomon Duskis) 2014-09-16 11:40:29 -07:00
anoopsjohn e5d3850776 HBASE-11647 addendum to fix compile issues. 2014-09-13 19:47:07 +05:30
stack 3c9bd7d296 HBASE-11911 Break up tests into more fine grained categories (Alex Newman) 2014-09-12 21:37:06 -07:00
anoopsjohn 0c86d83e1f HBASE-11647 MOB integration testing. - addendum(Jingcheng Du) 2014-09-09 16:18:38 +05:30
Enis Soztutar 4995ed8a02 HBASE-11679 Replace HTable with HTableInterface where backwards-compatible (Carter) 2014-09-08 23:39:34 -07:00
Enis Soztutar b73dd89fba HBASE-11836 IntegrationTestTimeBoundedMultiGetRequestsWithRegionReplicas tests simple get by default (Nicolas Liochon) 2014-09-08 16:26:18 -07:00
anoopsjohn 3e563c5cc7 HBASE-11647 MOB integration testing. (Jingcheng Du) 2014-09-06 10:06:37 +05:30
Enis Soztutar 1a6eea335f HBASE-11826 Split each tableOrRegionName admin methods into two targetted methods (Carter and Enis) 2014-09-03 14:39:35 -07:00
stack 3bfbd06291 HBASE-11822 Convert EnvironmentEdge#getCurrentTimeMillis to getCurrentTime 2014-08-29 17:14:25 -07:00
stack e91e2659a7 HBASE-11068 Update code to use Admin factory method instead of constructor 2014-08-04 11:42:38 -07:00
Nicolas Liochon d8401c8e44 HBASE-11564 Improve cancellation management in the rpc layer 2014-07-24 15:53:32 +02:00
Ramkrishna fe50c6d366 HBASE-11489 ClassNotFoundException while running IT tests in trunk using
'mvn verify' (Ram)
2014-07-15 22:48:08 +05:30
Ramkrishna e71d69bf00 HBASE-11509 Forward port HBASE-11039 to trunk and branch-1 after
HBASE-11489 (Ram)
2014-07-14 22:52:48 +05:30
Ramkrishna 586c5931a5 HBASE-11506 IntegrationTestWithCellVisibilityLoadAndVerify allow User to
be passed as arg (Ram)
2014-07-14 16:31:43 +05:30
Ted Yu 6c102e22f0 HBASE-11422 Specification of scope is missing for certain Hadoop dependencies (Konstantin Boudnik) 2014-07-04 12:40:13 +00:00
Ramkrishna 80f0a522f9 HBASE-11449 IntegrationTestIngestWithACL fails to use different users
after HBASE-10810 (Ram)
2014-07-03 12:03:59 +05:30
Enis Soztutar 92c52a727a Updated version in master to 2.0.0-SNAPSHOT after 'branch-1' is created for 1.x line of releases 2014-06-30 20:26:47 -07:00
Devaraj Das 8e40fa0c41 HBASE-10818. Addendum to reduce the number of times sleep happens in the coprocessor. Also, puts back code to set consistency that got deleted by accident in the last commit. 2014-06-27 16:39:40 -07:00
Devaraj Das e5ec49b123 HBASE-10818. Add integration test for bulkload with replicas (Nick Dimiduk and Devaraj Das) 2014-06-27 16:39:40 -07:00
Enis Soztutar 25baace0de HBASE-10810 LoadTestTool should share the connection and connection pool
git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-10070@1595078 13f79535-47bb-0310-9956-ffa450edef68
2014-06-27 16:39:40 -07:00
ndimiduk d313103aeb HBASE-10791 Add integration test to demonstrate performance improvement
git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-10070@1585807 13f79535-47bb-0310-9956-ffa450edef68
2014-06-27 16:39:39 -07:00
Devaraj Das 41116848e5 HBASE-10616. Integration test for multi-get calls
git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-10070@1577372 13f79535-47bb-0310-9956-ffa450edef68
2014-06-27 16:39:38 -07:00
Enis Soztutar 759cfb83af HBASE-10572 Create an IntegrationTest for region replicas
git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-10070@1576465 13f79535-47bb-0310-9956-ffa450edef68
2014-06-27 16:39:38 -07:00
Enis Soztutar 235aaee4fe HBASE-11376 Presplit table in IntegrationTestBigLinkedList's Generator tool 2014-06-24 17:56:48 -07:00
Michael Stack 5764df2974 HBASE-11348 Make frequency and sleep times of chaos monkeys configurable (Vandan Ayyalasomayajula) 2014-06-19 14:50:50 -07:00
Jimmy Xiang 84ed7cf645 HBASE-11345 Add an option not to restore cluster after an IT test 2014-06-13 14:27:18 -07:00
Andrew Purtell 1279ae807c HBASE-11253 IntegrationTestWithCellVisibilityLoadAndVerify failing since HBASE-10326 (Anoop Sam John) 2014-05-26 11:28:07 -07:00
Andrew Purtell 1f14726afb Amend HBASE-11251 Attempt grants during tests only when security is enabled 2014-05-26 11:04:11 -07:00
Andrew Purtell 41691e469a HBASE-10831 IntegrationTestIngestWithACL is not setting up LoadTestTool correctly (Vandana Ayyalasomayajula) 2014-05-22 18:56:20 -07:00
Zhihong Yu 71c1d02f02 HBASE-11104 IntegrationTestImportTsv#testRunFromOutputCommitter misses credential initialization (Vandana)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1596277 13f79535-47bb-0310-9956-ffa450edef68
2014-05-20 14:51:00 +00:00
ndimiduk 4c8510f852 HBASE-11137 Add mapred.TableSnapshotInputFormat
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1594982 13f79535-47bb-0310-9956-ffa450edef68
2014-05-15 17:00:37 +00:00
mbertozzi 788b285e11 HBASE-8332 Add truncate as HMaster method
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1593439 13f79535-47bb-0310-9956-ffa450edef68
2014-05-08 22:25:01 +00:00
Jonathan Hsieh 3e3b9a2f65 HBASE-5697 Audit HBase for usage of deprecated hadoop 0.20.x, 1.x property names (Srikanth Srungarapu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1591045 13f79535-47bb-0310-9956-ffa450edef68
2014-04-29 18:19:37 +00:00
Michael Stack b2ef1ce01c HBASE-10886 add htrace-zipkin to the runtime dependencies again -- REVERT
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1584935 13f79535-47bb-0310-9956-ffa450edef68
2014-04-04 23:19:35 +00:00
Michael Stack 62908378bc HBASE-10886 add htrace-zipkin to the runtime dependencies again (Masatake Iwasaki)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1584455 13f79535-47bb-0310-9956-ffa450edef68
2014-04-03 23:04:10 +00:00
ndimiduk 62327bc08d HBASE-10830 Integration test MR jobs attempt to load htrace jars from the wrong location
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1583826 13f79535-47bb-0310-9956-ffa450edef68
2014-04-01 23:27:56 +00:00
jxiang 7716a3ca94 HBASE-10569 Co-locate meta and master
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1581479 13f79535-47bb-0310-9956-ffa450edef68
2014-03-25 19:34:52 +00:00
Michael Stack c4610ecab2 HBASE-10746 Bump the version of HTrace to 3.0
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1580076 13f79535-47bb-0310-9956-ffa450edef68
2014-03-21 22:46:03 +00:00
ramkrishna 829c3725c7 HBASE-10675 - IntegrationTestIngestWithACL should allow User to be passed as Parameter (Ram)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1576016 13f79535-47bb-0310-9956-ffa450edef68
2014-03-10 17:46:40 +00:00
Zhihong Yu 11a089dc40 HBASE-10700 IntegrationTestWithCellVisibilityLoadAndVerify should allow current user to be the admin
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1575486 13f79535-47bb-0310-9956-ffa450edef68
2014-03-08 05:01:37 +00:00
jeffreyz 9a55412869 HBASE-10580: IntegrationTestingUtility#restoreCluster leak resource when running in a mini cluster mode
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1570765 13f79535-47bb-0310-9956-ffa450edef68
2014-02-22 00:34:31 +00:00
Andrew Kyle Purtell 3f9f4e00b6 HBASE-10440 Integration tests fail due to nonce collisions (Sergey Shelukhin)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1562675 13f79535-47bb-0310-9956-ffa450edef68
2014-01-30 03:10:06 +00:00
Zhihong Yu bf5c9ad1f4 HBASE-10409 Allow config options related to zookeeper to be passed to IntegrationTestsDriver - revert
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1560902 13f79535-47bb-0310-9956-ffa450edef68
2014-01-24 05:27:21 +00:00
Zhihong Yu 581e16d633 HBASE-10406 Column family option is not effective in IntegrationTestSendTraceRequests
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1560880 13f79535-47bb-0310-9956-ffa450edef68
2014-01-24 01:57:57 +00:00
Zhihong Yu 0ba78627f2 HBASE-10409 Allow config options related to zookeeper to be passed to IntegrationTestsDriver (Ted Yu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1560804 13f79535-47bb-0310-9956-ffa450edef68
2014-01-23 20:39:23 +00:00
Andrew Kyle Purtell 5f5ce57c9a HBASE-10307. IntegrationTestIngestWithEncryption assumes localhost cluster
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1557219 13f79535-47bb-0310-9956-ffa450edef68
2014-01-10 18:44:59 +00:00
ramkrishna 3cc835b7e1 HBASE-9846-Integration test and LoadTestTool support for cell ACLs(Ram)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1556866 13f79535-47bb-0310-9956-ffa450edef68
2014-01-09 16:45:26 +00:00
anoopsamjohn 5a1f9d2e1e HBASE-10297 LoadAndVerify Integration Test for cell visibility
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1556770 13f79535-47bb-0310-9956-ffa450edef68
2014-01-09 09:53:18 +00:00
anoopsamjohn e47fa6826b HBASE-9858 Integration test and LoadTestTool support for cell Visibility
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1555145 13f79535-47bb-0310-9956-ffa450edef68
2014-01-03 16:44:59 +00:00
Zhihong Yu ea7734dc90 HBASE-10246 Wrap long lines in recently added source files
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1553786 13f79535-47bb-0310-9956-ffa450edef68
2013-12-28 04:40:02 +00:00
sershe 0914704b66 HBASE-10175 2-thread ChaosMonkey steps on its own toes
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1553634 13f79535-47bb-0310-9956-ffa450edef68
2013-12-27 06:53:54 +00:00
eclark 1e0185468c HBASE-10124 Make Sub Classes Static When Possible
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1550294 13f79535-47bb-0310-9956-ffa450edef68
2013-12-11 22:20:00 +00:00
Andrew Kyle Purtell 9871ed8a0a HBASE-9966. Create integration test for online Bloom Filter change (Aleksandr Shulman)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1549986 13f79535-47bb-0310-9956-ffa450edef68
2013-12-10 22:18:03 +00:00
Michael Stack 57b8613688 HBASE_9955 Make hadoop2 the default and deprecate hadoop1; RETRY
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1548374 13f79535-47bb-0310-9956-ffa450edef68
2013-12-06 02:42:20 +00:00
Michael Stack fe5b28625a HBASE-9955 Make hadoop2 the default and deprecate hadoop1; REVERT
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1548351 13f79535-47bb-0310-9956-ffa450edef68
2013-12-06 01:16:51 +00:00
Michael Stack 7fbe97470e HBASE-9955 Make hadoop2 the default and deprecate hadoop1
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1548349 13f79535-47bb-0310-9956-ffa450edef68
2013-12-06 01:10:59 +00:00
Andrew Kyle Purtell f8139d1bf5 Update version in POMs to 0.99.0-SNAPSHOT after branching for release 0.98.0
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1547743 13f79535-47bb-0310-9956-ffa450edef68
2013-12-04 09:31:02 +00:00
Andrew Kyle Purtell edbf698cc1 HBASE-7544. Transparent CF encryption
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1545536 13f79535-47bb-0310-9956-ffa450edef68
2013-11-26 04:22:33 +00:00
nkeywal bc7c3c7daa HBASE-10012 Hide ServerName constructor
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1543921 13f79535-47bb-0310-9956-ffa450edef68
2013-11-20 20:02:25 +00:00
Enis Soztutar a26dd714b5 HBASE-8369 MapReduce over snapshot files
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1543195 13f79535-47bb-0310-9956-ffa450edef68
2013-11-18 22:17:39 +00:00
ndimiduk 4b87240aa3 HBASE-9165 [mapreduce] Modularize building dependency jars
- Separate adding HBase and dependencies from adding other job
   dependencies, and expose it as a separate method that other
   projects can use (for PIG-3285).
 - Explicitly add hbase-server to the list of dependencies we ship
   with the job, for users who extend the classes we provide (see
   HBASE-9112).
 - Add integration test for addDependencyJars.
 - Code reuse for TestTableMapReduce.


git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1542341 13f79535-47bb-0310-9956-ffa450edef68
2013-11-15 17:43:53 +00:00
jxiang aecabe7518 HBASE-9947 Add CM action for online compression algorithm change
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1542323 13f79535-47bb-0310-9956-ffa450edef68
2013-11-15 16:56:00 +00:00
jxiang 5583310bb1 HBASE-9757 Reenable fast region move in SlowDeterministicMonkey
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1541811 13f79535-47bb-0310-9956-ffa450edef68
2013-11-14 04:37:33 +00:00
larsh 2a057457d0 HBASE-9138 getHaseIntegrationTestingUtility() is misspelled
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1541328 13f79535-47bb-0310-9956-ffa450edef68
2013-11-13 00:00:17 +00:00
jeffreyz 0077c822f7 HBASE-9822: IntegrationTestLazyCfLoading failed occasionally in a secure enviroment
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1537233 13f79535-47bb-0310-9956-ffa450edef68
2013-10-30 18:42:42 +00:00
Enis Soztutar b73e8b3b5a HBASE-9750 Add retries around Action server stop/start
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1536908 13f79535-47bb-0310-9956-ffa450edef68
2013-10-29 22:03:45 +00:00
sershe 322eec45f8 HBASE-8000 create integration/perf tests for stripe compactions
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1536571 13f79535-47bb-0310-9956-ffa450edef68
2013-10-29 00:42:22 +00:00
Enis Soztutar 5a831da632 HBASE-9759 Prevent random number collision in IntegrationTestBulkLoad
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1536551 13f79535-47bb-0310-9956-ffa450edef68
2013-10-28 23:09:52 +00:00
jxiang f5881a3116 HBASE-9748 Address outstanding comments raised for HBASE-9696
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1535771 13f79535-47bb-0310-9956-ffa450edef68
2013-10-25 16:17:29 +00:00
sershe 6be9b4effe HBASE-9659 some integration tests can no longer be run using maven
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1535202 13f79535-47bb-0310-9956-ffa450edef68
2013-10-23 22:27:00 +00:00
jeffreyz ebd009051a HBASE-9776: Test Load And Verify Fails with TableNotEnabledException
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1533209 13f79535-47bb-0310-9956-ffa450edef68
2013-10-17 19:01:47 +00:00
jxiang 6bf079b92f HBASE-9758 Log missing rows and their regions if ITBLL fails
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1532048 13f79535-47bb-0310-9956-ffa450edef68
2013-10-14 20:05:05 +00:00
jxiang 30837458ee HBASE-9696 Master recovery ignores online merge znode
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1531435 13f79535-47bb-0310-9956-ffa450edef68
2013-10-11 21:46:14 +00:00
Michael Stack 190313a6ac HBASE-9743 RollingBatchRestartRsAction aborts if timeout
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1531150 13f79535-47bb-0310-9956-ffa450edef68
2013-10-10 23:40:06 +00:00
sershe 6366c25d95 HBASE-9714 add scan logging to IntegrationTestLoadAndVerify
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1530065 13f79535-47bb-0310-9956-ffa450edef68
2013-10-07 21:11:36 +00:00
Enis Soztutar 4bde0d30f6 HBASE-9703 DistributedHBaseCluster should not throw exceptions, but do a best effort restore
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1529045 13f79535-47bb-0310-9956-ffa450edef68
2013-10-04 00:55:42 +00:00
nkeywal ad6a463e4e HBASE-9701 Make SLEEP_TIME in IntegrationTestMTTR configurable
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1528752 13f79535-47bb-0310-9956-ffa450edef68
2013-10-03 08:51:01 +00:00
eclark ce7c5b8e03 HBASE-9699 For Downstreamers using HBaseTestingUtility is hard.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1528645 13f79535-47bb-0310-9956-ffa450edef68
2013-10-02 21:59:19 +00:00
eclark 122082955e HBASE-9700 remove htrace-zipkin from the runtime dependencies
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1528622 13f79535-47bb-0310-9956-ffa450edef68
2013-10-02 21:01:37 +00:00
jxiang 3d525b08e0 HBASE-9514 Prevent region from assigning before log splitting is done
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1528227 13f79535-47bb-0310-9956-ffa450edef68
2013-10-01 22:02:01 +00:00
Michael Stack dc959eadc2 HBASE-9677 Remove MasterAdmin and MasterMonitor protos; have MasterService provide these functions
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1527719 13f79535-47bb-0310-9956-ffa450edef68
2013-09-30 19:05:58 +00:00
nkeywal ba2e21a4e7 HBASE-9685 IntegrationTestMTTR should stop on RetriesExhaustedException
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1527690 13f79535-47bb-0310-9956-ffa450edef68
2013-09-30 18:04:41 +00:00
ndimiduk 22ec681004 HBASE-9655 IntegrationTestMTTR can loop forever on improperly configured clusters
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1526729 13f79535-47bb-0310-9956-ffa450edef68
2013-09-26 22:55:19 +00:00
nkeywal bba51c29c7 HBASE-9632 Put the shell in a maven sub module (hbase-shell) instead of hbase-server
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1525641 13f79535-47bb-0310-9956-ffa450edef68
2013-09-23 16:40:51 +00:00
ramkrishna a02bd8cc0d HBASE-8496 - Implement tags and the internals of how a tag should look like (Ram)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1525269 13f79535-47bb-0310-9956-ffa450edef68
2013-09-21 18:01:32 +00:00
eclark 10aba8f306 HBASE-9419 Add more informative client column to Integration Test Linked List
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1524231 13f79535-47bb-0310-9956-ffa450edef68
2013-09-17 21:31:00 +00:00
Enis Soztutar 4e16bc530d HBASE-9550 IntegrationTestBigLinkedList used to be able to run on pseudo-distributed clusters
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1524208 13f79535-47bb-0310-9956-ffa450edef68
2013-09-17 20:20:11 +00:00
sershe ed90c565ef HBASE-9496 make sure HBase APIs are compatible between 0.94 and 0.96
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1523825 13f79535-47bb-0310-9956-ffa450edef68
2013-09-16 22:36:38 +00:00
nkeywal 027f7a708f HBASE-9521 clean clearBufferOnFail behavior and deprecate it
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1523782 13f79535-47bb-0310-9956-ffa450edef68
2013-09-16 20:07:13 +00:00
eclark 5e339d3250 HBASE-9338 Test Big Linked List fails on Hadoop 2.1.0
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1522713 13f79535-47bb-0310-9956-ffa450edef68
2013-09-12 20:20:10 +00:00
Jonathan Hsieh 3e25e1b7f5 HBASE-9493 Rename CellUtil#get*Array to CellUtil#clone*
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1521676 13f79535-47bb-0310-9956-ffa450edef68
2013-09-10 23:05:50 +00:00
Jonathan Hsieh 95b202008d HBASE-9477 Add deprecation compat shim for Result#raw and Result#list for 0.96
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1521633 13f79535-47bb-0310-9956-ffa450edef68
2013-09-10 20:39:07 +00:00
Michael Stack df49eca1eb HBASE-9413 WebUI says ".META." table but table got renames to "hbase:meta". Meed to update the UI
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1520463 13f79535-47bb-0310-9956-ffa450edef68
2013-09-06 00:29:48 +00:00
Jonathan Hsieh 5a3060ee37 HBASE-9334 Convert KeyValue to Cell in hbase-client module - Filters
HBASE-9359 Convert KeyValue to Cell in hbase-client module - Result/Put/Delete, ColumnInterpreter


git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1519077 13f79535-47bb-0310-9956-ffa450edef68
2013-08-30 20:31:47 +00:00
eclark b3cfe061e1 HBASE-9370 Add logging to Schema change Chaos actions.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1518412 13f79535-47bb-0310-9956-ffa450edef68
2013-08-28 22:59:12 +00:00
Michael Stack 7cde56cd37 HBASE-9350 In ChaosMonkey, MoveRegionsOfTableAction throws UnknownRegionException
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1517874 13f79535-47bb-0310-9956-ffa450edef68
2013-08-27 16:46:35 +00:00
eclark de60f4999e HBASE-9290 Add logging in IntegrationTestBigLinkedList Verify reduce phase
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1516609 13f79535-47bb-0310-9956-ffa450edef68
2013-08-22 21:15:30 +00:00
eclark a07a9dbbe6 HBASE-9269 IntegrationTestBulkLoad fails because a public constructor is needed.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1515947 13f79535-47bb-0310-9956-ffa450edef68
2013-08-20 19:39:26 +00:00
eclark e91ef96624 HBASE-9253 clean up IT test code.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1515207 13f79535-47bb-0310-9956-ffa450edef68
2013-08-18 20:29:54 +00:00
eclark ec67046424 HBASE-9237 Integration test cleanup after ChaosMonkey refactor
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514864 13f79535-47bb-0310-9956-ffa450edef68
2013-08-16 19:36:28 +00:00
eclark 1fe8c622c9 HBASE-9193 Make what Chaos monkey actions run configurable per test.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514163 13f79535-47bb-0310-9956-ffa450edef68
2013-08-15 05:44:56 +00:00
eclark e926483258 HBASE-9121 Update HTrace to 2.00 and add new example usage. -- Part2
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514094 13f79535-47bb-0310-9956-ffa450edef68
2013-08-14 23:29:48 +00:00
eclark 5c2a90aa28 HBASE-9121 Update HTrace to 2.00 and add new example usage.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514091 13f79535-47bb-0310-9956-ffa450edef68
2013-08-14 23:20:51 +00:00
eclark 7939a64b70 HBASE-9192 IntegrationTestBigLinkedListWithChaosMonkey never exits if there is an error
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1513289 13f79535-47bb-0310-9956-ffa450edef68
2013-08-12 22:49:39 +00:00
jxiang 1d4dfa8ddf HBASE-9155 Enhance LoadTestTool to support updates
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1512817 13f79535-47bb-0310-9956-ffa450edef68
2013-08-10 18:53:46 +00:00
jeffreyz e80484d7bf HBASE-9098: During recovery use ZK as the source of truth for region state - v2
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1512553 13f79535-47bb-0310-9956-ffa450edef68
2013-08-10 02:25:50 +00:00
eclark 31e68517c6 HBASE-8726 Create an Integration Test for online schema change
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1512429 13f79535-47bb-0310-9956-ffa450edef68
2013-08-09 18:21:07 +00:00
Michael Stack 46fb7c409d HBASE-8408 Implement namespace
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1511577 13f79535-47bb-0310-9956-ffa450edef68
2013-08-08 04:19:49 +00:00
Michael Stack 34c8e0ab16 HBASE-8224 Publish hbase build against h1 and h2 adding '-hadoop1' or '-hadoop2' to version string
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1509813 13f79535-47bb-0310-9956-ffa450edef68
2013-08-02 19:01:34 +00:00
Enis Soztutar 08235fca23 HBASE-9085 Integration Tests fails because of bug in teardown phase where the cluster state is not being restored properly. (gautam)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1509538 13f79535-47bb-0310-9956-ffa450edef68
2013-08-02 04:42:03 +00:00
Devaraj Das 3daea02e86 HBASE-8846. Refactors the old exceptions back to their original packages.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1508301 13f79535-47bb-0310-9956-ffa450edef68
2013-07-30 05:14:32 +00:00
jxiang b60e27d9d8 HBASE-9020 Make hbase-it HBASE_HOME configurable
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1506205 13f79535-47bb-0310-9956-ffa450edef68
2013-07-23 18:42:11 +00:00
jxiang 9c1a498432 HBASE-9017 Consolidate ChaosMonkey's random objects
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1505891 13f79535-47bb-0310-9956-ffa450edef68
2013-07-23 03:12:34 +00:00
jxiang b17b2e46a8 HBASE-8994 Adding log to chaos monkey actions to show what're performed
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1505144 13f79535-47bb-0310-9956-ffa450edef68
2013-07-20 14:38:27 +00:00
jyates 0632023c14 HBASE-8928: Make ChaosMonkey & LoadTest tools extensible (Gautam Soni)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1504609 13f79535-47bb-0310-9956-ffa450edef68
2013-07-18 19:16:47 +00:00
jxiang c4f38c18f4 HBASE-8845 Add integration test for split, online merge, and compaction
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1504515 13f79535-47bb-0310-9956-ffa450edef68
2013-07-18 16:38:47 +00:00
sershe a96d77ffd5 HBASE-8935 IntegrationTestBigLinkedList fails under load on 0.94 due to some scan issues - add logging
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1503524 13f79535-47bb-0310-9956-ffa450edef68
2013-07-15 23:53:03 +00:00
sershe b5459be95d HBASE-7770 minor integration test framework fixes (Francis Liu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1502415 13f79535-47bb-0310-9956-ffa450edef68
2013-07-12 03:23:02 +00:00
eclark 71ebf190c8 HBASE-8902 IntegrationTestBulkLoad takes way too long
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1502338 13f79535-47bb-0310-9956-ffa450edef68
2013-07-11 19:33:47 +00:00
eclark b33d113a64 HBASE-8924 Master Can fail to come up after chaos monkey if the sleep time is too short.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1502144 13f79535-47bb-0310-9956-ffa450edef68
2013-07-11 08:10:02 +00:00
eclark c56f121117 HBASE-8904 Clean up IntegrationTestMTTR and add small features.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501614 13f79535-47bb-0310-9956-ffa450edef68
2013-07-09 23:45:54 +00:00
Enis Soztutar 0e22f9ec78 HBASE-8200 Integration Test classes are not part of the default HBase classpath.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501602 13f79535-47bb-0310-9956-ffa450edef68
2013-07-09 23:09:42 +00:00
eclark 022593a9ff HBASE-8882 Addendum to add category to IntegrationTestMTTR.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501086 13f79535-47bb-0310-9956-ffa450edef68
2013-07-09 04:37:35 +00:00
eclark 631b20dfe3 HBASE-8882 Create an Integration Test to Test MTTR
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501042 13f79535-47bb-0310-9956-ffa450edef68
2013-07-09 01:44:39 +00:00
eclark 26d5bcf418 HBASE-8880 Integration Tests shouldn't set the number or reties.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1501040 13f79535-47bb-0310-9956-ffa450edef68
2013-07-09 01:37:40 +00:00
jeffreyz 8e78536a3b HBASE-8729: distributedLogReplay may hang during chained region server failure
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1499925 13f79535-47bb-0310-9956-ffa450edef68
2013-07-05 07:44:00 +00:00
Michael Stack b98fad4a87 HBASE-8791 Precommit hadoopqa is broke since -r1491656
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1495795 13f79535-47bb-0310-9956-ffa450edef68
2013-06-23 06:26:54 +00:00
Michael Stack a71464bf84 HBASE-8696 Fixup for logs that show when running hbase-it tests.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1494453 13f79535-47bb-0310-9956-ffa450edef68
2013-06-19 04:48:04 +00:00
sershe 3b18accd8e HBASE-8700 IntegrationTestBigLinkedList can fail due to random number collision
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1492034 13f79535-47bb-0310-9956-ffa450edef68
2013-06-12 01:57:59 +00:00
eclark 30c8032cb2 HBASE-8672 Create an Integration test for Bulk Loads
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1491656 13f79535-47bb-0310-9956-ffa450edef68
2013-06-11 00:14:54 +00:00
Michael Stack 3b317f6f18 HBASE-8637 IntegrationTestBigLinkedListWithChaosMonkey uses the wrong table name
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1491573 13f79535-47bb-0310-9956-ffa450edef68
2013-06-10 19:32:13 +00:00
Michael Stack c920eb3c4c HBASE-8657 Miscellaneous log fixups for hbase-it; tidier logging, fix a few NPEs
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1487945 13f79535-47bb-0310-9956-ffa450edef68
2013-05-30 17:31:15 +00:00
Michael Stack 957f580d83 HBASE-8631 Meta Region First Recovery
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1487939 13f79535-47bb-0310-9956-ffa450edef68
2013-05-30 17:20:44 +00:00
Michael Stack bd7012e3a1 HBASE-8583 Create a new IntegrationTestBigLinkedListWithChaosMonkey -- FORGOT TO SVN ADD A FILE
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1486376 13f79535-47bb-0310-9956-ffa450edef68
2013-05-25 22:10:56 +00:00
Michael Stack c19b7ba9d9 HBASE-8583 Create a new IntegrationTestBigLinkedListWithChaosMonkey
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1486255 13f79535-47bb-0310-9956-ffa450edef68
2013-05-25 00:09:52 +00:00
Michael Stack 2883068462 HBASE-8583 Create a new IntegrationTestBigLinkedListWithChaosMonkey; REVERTED
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1486120 13f79535-47bb-0310-9956-ffa450edef68
2013-05-24 17:06:00 +00:00
Michael Stack 2f68a2c06b HBASE-8583 Create a new IntegrationTestBigLinkedListWithChaosMonkey
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1486118 13f79535-47bb-0310-9956-ffa450edef68
2013-05-24 17:02:53 +00:00
eclark 5583d1fb12 HBASE-8564 ADDENDUM TestMetricsRegionServer depends on test order
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1485525 13f79535-47bb-0310-9956-ffa450edef68
2013-05-23 01:09:49 +00:00
Zhihong Yu bac9ae973c HBASE-8306 Enhance TestJoinedScanners with ability to specify various parameters (Ted Yu)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1480277 13f79535-47bb-0310-9956-ffa450edef68
2013-05-08 13:54:26 +00:00
sershe e5becce33e HBASE-8405 Add more custom options to how ClusterManager runs commands REDO DIFFERENTLY
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1479713 13f79535-47bb-0310-9956-ffa450edef68
2013-05-06 23:07:55 +00:00
Michael Stack d668363c23 HBASE-8214 Remove proxy and engine, rely directly on pb generated Service
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1478637 13f79535-47bb-0310-9956-ffa450edef68
2013-05-03 03:52:15 +00:00
eclark b49702db75 HBASE-8468 IntegrationTestImportTsv fails on a cluster
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1477877 13f79535-47bb-0310-9956-ffa450edef68
2013-04-30 23:42:05 +00:00
Michael Stack 7b3dc4f7ba HBASE-8428 Tighten up IntegrationTestsDriver filter
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1475996 13f79535-47bb-0310-9956-ffa450edef68
2013-04-25 22:49:41 +00:00
sershe d122093473 HBASE-8405 Add more custom options to how ClusterManager runs commands
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471804 13f79535-47bb-0310-9956-ffa450edef68
2013-04-25 01:36:29 +00:00
Jonathan Hsieh 890850aa91 HBASE-8424 IntegrationTestImportTsv missing Apache License
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471757 13f79535-47bb-0310-9956-ffa450edef68
2013-04-24 22:56:41 +00:00
Jean-Daniel Cryans 0aadc0b0f4 HBASE-8390 Trunk/0.95 cannot simply compile against Hadoop 1.0
HBASE-8391  StochasticLoadBalancer doesn't call needsBalance


git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1471050 13f79535-47bb-0310-9956-ffa450edef68
2013-04-23 17:14:51 +00:00
Enis Soztutar f22a9ce1ac HBASE-8377 IntegrationTestBigLinkedList calculates wrap for linked list size incorrectly
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1470048 13f79535-47bb-0310-9956-ffa450edef68
2013-04-19 21:32:00 +00:00
sershe b7391e5449 HBASE-8350 enable ChaosMonkey to run commands as different users
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1469551 13f79535-47bb-0310-9956-ffa450edef68
2013-04-18 20:28:20 +00:00
sershe c8566f1ae6 HBASE-8239 ChaosMonkey action for root is irrelevant
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1466163 13f79535-47bb-0310-9956-ffa450edef68
2013-04-09 18:05:02 +00:00
sershe b5559ab1d7 HBASE-8260 FOLLOWUP forgot to rename the class w/typo on commit
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1465070 13f79535-47bb-0310-9956-ffa450edef68
2013-04-05 17:50:30 +00:00
sershe d0596b63f2 HBASE-8260 create generic integration test for trunk and 94 that is more deterministic, can be run for longer and is less aggressive
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1465059 13f79535-47bb-0310-9956-ffa450edef68
2013-04-05 17:40:33 +00:00
sershe d747617e15 HBASE-7649 client retry timeout doesn't need to do x2 fallback when going to different server
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1464798 13f79535-47bb-0310-9956-ffa450edef68
2013-04-05 00:40:21 +00:00
Michael Stack 00f7bb46c5 HBASE-8187 trunk/0.95 tarball packaging
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1462606 13f79535-47bb-0310-9956-ffa450edef68
2013-03-29 18:49:42 +00:00
Devaraj Das 0d8c61cd88 HBASE-8147. Adds an integration test for HBASE-8140 (issue observed when commitJob was launching another job).
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1461303 13f79535-47bb-0310-9956-ffa450edef68
2013-03-26 20:47:19 +00:00
Enis Soztutar 1a4f478909 HBASE-8146 IntegrationTestBigLinkedList does not work on distributed setup
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1458585 13f79535-47bb-0310-9956-ffa450edef68
2013-03-20 00:19:02 +00:00
Michael Stack 167766c262 HBASE-4285 partitions file created in user's home directory by importtsv
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1457078 13f79535-47bb-0310-9956-ffa450edef68
2013-03-15 19:45:09 +00:00
Enis Soztutar 48debe39f0 HBASE-7938 Add integration test for ImportTsv/LoadIncrementalHFiles workflow (Nick Dimiduk)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1456700 13f79535-47bb-0310-9956-ffa450edef68
2013-03-14 22:28:08 +00:00
Enis Soztutar a6ab559d3d HBASE-8031 Adopt goraci as an Integration test
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1456078 13f79535-47bb-0310-9956-ffa450edef68
2013-03-13 18:28:15 +00:00
Enis Soztutar 935e8d57d3 HBASE-8007 Adopt TestLoadAndVerify from BigTop
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1453101 13f79535-47bb-0310-9956-ffa450edef68
2013-03-06 00:13:30 +00:00
nkeywal 62d1ad5fde HBASE-7968 Packaging of Trunk and 0.95 does not create the dependent jars in the lib folder
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1452261 13f79535-47bb-0310-9956-ffa450edef68
2013-03-04 11:30:49 +00:00
Michael Stack 05711f7553 HBASE-7940 Upgrade version to 0.97-SNAPSHOT in pom.xml files
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1450337 13f79535-47bb-0310-9956-ffa450edef68
2013-02-26 18:26:28 +00:00
eclark 24ebbcabc3 HBASE-7188 Move classes into hbase-client
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1449950 13f79535-47bb-0310-9956-ffa450edef68
2013-02-25 22:50:17 +00:00
Michael Stack 78b8109fdc HBASE-7918 Reenable IntegrationTestRebalanceAndKillServersTargeted; it works now (thanks Sergey)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1449272 13f79535-47bb-0310-9956-ffa450edef68
2013-02-23 06:07:34 +00:00
nkeywal 900be56ea1 HBASE-7861 Use the ServerName in the Connection#getClient and Connection#getAdmin code
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1446897 13f79535-47bb-0310-9956-ffa450edef68
2013-02-16 14:13:46 +00:00
Michael Stack 44e31111f6 HBASE-7830 Disable IntegrationTestRebalanceAndKillServersTargeted temporarily
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1445294 13f79535-47bb-0310-9956-ffa450edef68
2013-02-12 18:17:34 +00:00
Michael Stack b9b6c9293f HBASE-7760 tiny issue in ChaosMonkey - kills meta server instead of root
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1442403 13f79535-47bb-0310-9956-ffa450edef68
2013-02-04 22:24:52 +00:00
eclark a01797c761 HBASE-7637 hbase-hadoop1-compat conflicts with -Dhadoop.profile=2.0
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1437803 13f79535-47bb-0310-9956-ffa450edef68
2013-01-23 23:45:36 +00:00
Zhihong Yu 96c32807dd HBASE-7383 create integration test for HBASE-5416 (improving scan performance for certain filters) (Sergey)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1433224 13f79535-47bb-0310-9956-ffa450edef68
2013-01-14 23:57:48 +00:00
Zhihong Yu f77e5b5bff HBASE-7441 Make ClusterManager in IntegrationTestingUtility pluggable (Liu Shaohui)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1430433 13f79535-47bb-0310-9956-ffa450edef68
2013-01-08 18:27:04 +00:00
Michael Stack ef1c657ca6 HBASE-7243 Test for creating a large number of regions
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1421039 13f79535-47bb-0310-9956-ffa450edef68
2012-12-12 23:35:29 +00:00
Michael Stack 9fc960b905 HBASE-7328 IntegrationTestRebalanceAndKillServersTargeted supercedes IntegrationTestRebalanceAndKillServers, remove
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1420543 13f79535-47bb-0310-9956-ffa450edef68
2012-12-12 06:58:51 +00:00
Michael Stack fb3663bfd4 HBASE-7250 create integration test for balancing regions and killing region servers - 2
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1420003 13f79535-47bb-0310-9956-ffa450edef68
2012-12-11 05:46:23 +00:00
Michael Stack fd5c422536 HBASE-7250 create integration test for balancing regions and killing region servers - 2
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1420002 13f79535-47bb-0310-9956-ffa450edef68
2012-12-11 05:45:53 +00:00
nkeywal ae684de8fd HBASE-7269 Testing in place does not work if not building with default profile
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1418333 13f79535-47bb-0310-9956-ffa450edef68
2012-12-07 14:38:42 +00:00
Michael Stack 2e5618b053 HBASE-7249 add test name filter to IntegrationTestsDriver
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1417230 13f79535-47bb-0310-9956-ffa450edef68
2012-12-04 22:56:18 +00:00
eclark abd334265e HBASE-7265 Make Maven skip module test properties consistent
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1416723 13f79535-47bb-0310-9956-ffa450edef68
2012-12-03 23:17:29 +00:00
Michael Stack 4d4129231b HBASE-7200 hbase-it/src/test/java/org/apache/hadoop/hbase/IngestIntegrationTestBase.java
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1414559 13f79535-47bb-0310-9956-ffa450edef68
2012-11-28 07:15:13 +00:00
Michael Stack 4442800016 HBASE-7109 integration tests on cluster are not getting picked up from distribution
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1412348 13f79535-47bb-0310-9956-ffa450edef68
2012-11-21 22:53:27 +00:00
nkeywal ed84f8068e HBASE-6702 ResourceChecker refinement
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1390433 13f79535-47bb-0310-9956-ffa450edef68
2012-09-26 12:23:43 +00:00
Michael Stack a5583054a5 HBASE-6834 HBaseClusterManager shell code breaks hadoop-2.0 build
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1387458 13f79535-47bb-0310-9956-ffa450edef68
2012-09-19 05:51:57 +00:00
Michael Stack f125ca952c HBASE-6241 HBaseCluster interface for interacting with the cluster from system tests
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1385024 13f79535-47bb-0310-9956-ffa450edef68
2012-09-15 07:01:15 +00:00
Zhihong Yu 8794ac07a6 HBASE-6203 Create hbase-it module, pom under hbase-it (Enis)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1355221 13f79535-47bb-0310-9956-ffa450edef68
2012-06-29 02:57:29 +00:00