stack
2458be08ed
HBASE-12558 TestHCM.testClusterStatus Unexpected exception, expected<org.apache.hadoop.hbase.regionserver.RegionServerStoppedException> but was<junit.framework.AssertionFailedError> -- ADDED DEBUG
2014-12-08 15:04:59 -08:00
stack
4b1983c89d
HBASE-12611 Create autoCommit() method and remove clearBufferOnFail (Solomon Duskis)
2014-12-08 11:01:28 -08:00
tedyu
9e9be97af7
HBASE-12650 Move ServerName to hbase-common module - check in changed files
2014-12-08 07:08:44 -08:00
tedyu
e930510c65
HBASE-12650 Move ServerName to hbase-common module - remove files
2014-12-08 07:01:47 -08:00
Devaraj Das
9fd6db3703
HBASE-11903. Directly invoking split & merge of replica regions should be disallowed
2014-12-07 11:56:53 -08:00
Gary Helmling
b7d1790411
HBASE-12493 Addendum - Fix javadoc warnings
2014-12-06 00:33:12 -08:00
Gary Helmling
1ec6609b97
HBASE-12493 Make User and TokenUtil public
2014-12-05 13:04:54 -08:00
Andrew Purtell
09cd3d7bfb
HBASE-10560 Per cell TTLs
2014-12-05 11:10:26 -08:00
stack
c45772e76a
HBASE-12431 Use of getColumnLatestCell(byte[], int, int, byte[], int, int) is Not Thread Safe (Jingcheng Du)
2014-12-03 22:34:27 -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
tedyu
2fbbdfd9a1
HBASE-12559 Revert for addressing review comments
2014-12-01 10:38:05 -08:00
stack
56a03d736a
HBASE-12603 Remove javadoc warnings introduced due to removal of unused imports (Varun Saxena)
2014-12-01 10:13:16 -08:00
Ramkrishna
b6b88edf93
HBASE-11639 [Visibility controller] Replicate the visibility of Cells as
...
strings (Ram)
2014-12-01 23:03:52 +05:30
tedyu
41041e8d6a
HBASE-12559 Provide LoadBalancer with online configuration capability
2014-12-01 07:30:17 -08:00
stack
555e78005d
HBASE-12526 Remove unused imports (Varun Saxena)
2014-11-29 09:20:46 -08:00
stack
58b6b24c29
HBASE-12519 Remove tabs used as whitespace (Varun Saxena)
2014-11-28 20:50:02 -08:00
Jeffrey Zhong
f0d95e7f11
HBASE-12533: staging directories are not deleted after secure bulk load
2014-11-26 16:23:11 -08:00
Enis Soztutar
02963b202a
HBASE-12072 Standardize retry handling for master operations
2014-11-26 12:09:44 -08:00
Enis Soztutar
54627ea6dc
HBASE-12128 Cache configuration and RpcController selection for Table in Connection
2014-11-26 12:07:49 -08:00
stack
8df780db88
HBASE-12400 Fix refguide so it does connection#getTable rather than new HTable everywhere
2014-11-26 09:12:16 -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
e6b4300756
HBASE-12404 Task 5 from parent: Replace internal HTable constructor use with
...
HConnection#getTable (0.98, 0.99)
Replaced HTable under hbase-*/src/main/java. Skipped tests. Would take
till end of time to do all and some cases are cryptic. Also skipped
some mapreduce where HTable comes through in API. Can do both of
these stragglers in another issue.
Generally, if a utility class or standalone class, tried to pass in a
Connection rather than have the utility or standalone create its own
connection on each invocation; e.g. the Quota stuff. Where not possible,
noted where invocation comes from... if test or hbck, didn't worry about
it.
Some classes are just standalone and nothing to be done to avoid
a Connection setup per invocation (this is probably how it worked
in the new HTable...days anyways). Some classes are not used:
AggregationClient, FavoredNodes... we should just purge this stuff.
Doc on what short circuit connection does (I can just use it...
I thought it was just for short circuit but no, it switches dependent
on where you are connecting).
Changed HConnection to super Interface ClusterConnection where safe (
internal usage by private classes only).
Doc cleanup in example usage so we do new mode rather than the old
fashion.
Used java7 idiom that allows you avoid writing out finally to call close
on implementations of Closeable.
Added a RegistryFactory.. moved it out from being inner class.
Added a utility createGetClosestRowOrBeforeReverseScan method to Scan
to create a Scan that can ...
Renamed getShortCircuitConnection as getConnection – users don't need
to know what implementation does (that it can short-circuit RPC).
The old name gave pause. I was frightened to use it thinking it only
for short-circuit reading – that it would not do remote too.
Squashed commit of the following:
2014-11-25 08:15:20 -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
Enis Soztutar
882324dbcc
HBASE-10671 Add missing InterfaceAudience annotations for classes in hbase-common and hbase-client modules
2014-11-21 11:44:46 -08:00
Matteo Bertozzi
325cdc0987
HBASE-12073 Shell command user_permission fails on the table created by user if he is not global admin (Srikanth Srungarapu)
2014-11-21 10:55:48 +00:00
tedyu
e4a68606f5
HBASE-8572 Enhance delete_snapshot.rb to call snapshot deletion API with regex (Ashish Singhi)
2014-11-20 08:57:42 -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
Sean Busbey
f5e05eb836
HBASE-10378 Refactor write-ahead-log implementation
...
Incompatible changes called out in release notes on jira.
* Cleaned up references to HLog
* Deprecates HLogKey but maintains it for compatibility
- Moves all Writeable from WALKey to HLogKey
* Adds utility code to CoprocessorHost to help with evolving Coprocessor APIs
* RSRpcServices roll WAL call now requests the non-meta LogRoller roll all logs
- rolls actually happen asynchronously
- deprecated old api (and noted incompatible behavior change)
- modified api in new Admin interface to reflect lack of return values.
* Moved WAL user facing API to "WAL"
- only 1 sync offered
- WALTrailer removed from API
* make provider used by the WALFactory configurable.
* Move all WAL requests to use opaque ids instead of paths
* WALProvider provides API details for implementers and handles creation of WALs.
* Refactor WALActionsListener to have a basic implementation.
* turn MetricsWAL into a WALActionsListener.
* tests that needs FSHLog implementation details use them directly, others just reference provider + factory
- Some tests moved from Large to Medium based on run time.
* pull out wal disabling into its own no-op class
* update region open to delegate to WALFactory
* update performance test tool to allow for multiple regions
* Removed references to meta-specific wals within wal code
- replaced with generic suffixes
- WALFactory maintains a dedicated WALProvider for meta (and so knows about the distinction)
* maintain backwards compat on HLogPrettyPrinter and mark it deprecated.
- made WALPrettyPrinter IA.Private in favor of `bin/hbase wal`
* move WALUtil stuff that's implementation specific to said implementation
- WALUtil now acts as an integration point between the RegionServer and hte WAL code.
Incorporates contributions from v.himanshu.
Signed-off-by: stack <stack@apache.org>
2014-11-18 12:04:41 -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
Enis Soztutar
f641aada36
HBASE-12445 hbase is removing all remaining cells immediately after the cell marked with marker = KeyValue.Type.DeleteColumn via PUT (Hani Nadra)
2014-11-12 15:50:10 -08:00
stack
fb6c5c7fe8
HBASE-10483 Provide API for retrieving info port when hbase.master.info.port is set to 0 (Liu Shaohui)
2014-11-12 08:56:42 -08:00
Srikanth Srungarapu
6e80af2044
HBASE-12460 Moving Chore to hbase-common module
...
Signed-off-by: Matteo Bertozzi <matteo.bertozzi@cloudera.com>
2014-11-11 23:15:42 +00:00
stack
e287741388
HBASE-12434 Add a command to compact all the regions in a regionserver (Liu Shaohui)
2014-11-11 09:32:55 -08:00
Nick Dimiduk
fb1af86ee1
HBASE-12432 RpcRetryingCaller should log after fixed number of retries like AsyncProcess
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
2014-11-07 12:27:21 -08:00
stack
c71244c02d
HBASE-12329 Table create with duplicate column family names quietly succeeds (Jingcheng Du)
2014-11-05 17:32:21 -08:00
stack
b0eaa92f5b
HBASE-8707 Add LongComparator for filter (Liu Shaohui)
2014-11-05 16:56:43 -08:00
Lars Hofhansl
ecd708671c
HBASE-12363 Improve how KEEP_DELETED_CELLS works with MIN_VERSIONS.
2014-11-04 17:08:39 -08:00
Jeffrey Zhong
371bb39ee6
HBASE-12407: HConnectionKey doesn't contain CUSTOM_CONTROLLER_CONF_KEY in CONNECTION_PROPERTIES
2014-11-03 21:04:22 -08:00
Lars Hofhansl
d4504afdd4
HBASE-12417 Scan copy constructor does not retain small attribute.
2014-11-03 15:06:29 -08:00
Nick Dimiduk
008e990deb
HBASE-12416 RegionServerCallable should report what host it was communicating with
2014-11-03 14:21:25 -08:00
Andrew Purtell
a62f543c65
HBASE-12361 Show data locality of region in table page (Liu Shaohui)
2014-10-31 15:41:57 -07:00
Enis Soztutar
2d1cfc14f2
HBASE-12377 HBaseAdmin#deleteTable fails when META region is moved around the same timeframe (Stephen Yuan Jiang)
2014-10-31 12:09:38 -07:00
Ashish Singhi
cacdb89e03
HBASE-10870 Deprecate and replace HCD methods that have a 'should' prefix with a 'is' instead
...
Signed-off-by: stack <stack@apache.org>
2014-10-31 08:34:00 -07:00
stack
9f4b6ac06c
HBASE-11835 Wrong managenement of non expected calls in the client (Nicolas Liochon)
2014-10-30 12:41:54 -07:00
stack
5062edebcf
HBASE-12238 A few ugly exceptions on startup
2014-10-29 21:42:29 -07:00
stack
889333a6fd
HBASE-12313 Redo the hfile index length optimization so cell-based rather than serialized KV key
2014-10-29 11:33:49 -07:00
manukranthk
ece933fa3e
Implement Preemptive Fast Fail
...
Summary: This diff ports the Preemptive Fast Fail feature to OSS. In multi threaded clients, we use a feature developed on 0.89-fb branch called Preemptive Fast Fail. This allows the client threads which would potentially fail, fail fast. The idea behind this feature is that we allow, among the hundreds of client threads, one thread to try and establish connection with the regionserver and if that succeeds, we mark it as a live node again. Meanwhile, other threads which are trying to establish connection to the same server would ideally go into the timeouts which is effectively unfruitful. We can in those cases return appropriate exceptions to those clients instead of letting them retry.
Test Plan: Unit tests
Differential Revision: https://reviews.facebook.net/D24177
Signed-off-by: stack <stack@apache.org>
2014-10-28 22:47:50 -07:00
Nick Dimiduk
bb81b9fde5
HBASE-12356 Rpc with region replica does not propagate tracing spans
2014-10-28 10:27:59 -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
stack
1d6c4678bb
HBASE-2609 Harmonize the Get and Delete operations
2014-10-25 20:58:24 -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
Lars Hofhansl
6c7543c9c7
HBASE-12334 Handling of DeserializationException causes needless retry on failure.
2014-10-24 16:21:33 -07:00
Elliott Clark
c623b04122
HBASE-12283 Clean up some checkstyle errors
2014-10-22 11:58:23 -07:00
Matteo Bertozzi
2908c11371
HBASE-12301 user_permission command does not show global permissions
2014-10-22 10:08:31 +01:00
stack
c450298c44
HBASE-12307 Remove unused Imports in hbase-client and hbase-common
2014-10-21 21:53:04 -07:00
Ted Yu
6c70f4f7f7
HBASE-12302 VisibilityClient getAuths does not propagate remote service exception correctly (Jerry He)
2014-10-21 20:09:46 +00: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
manukranthk
5c92bded9d
Add admin endpoint for updating the configuration on the regionserver
...
Summary: This is a follow up diff for the jira to add the functionality to update configs in an online fashion.
Test Plan: Unit test. This adds an end point on the regionserver. It just tries to call the end point and make sure the call succeeds.
Differential Revision: https://reviews.facebook.net/D24861
Signed-off-by: stack <stack@apache.org>
2014-10-18 16:16:21 -04:00
stack
904654aa87
HBASE-12147 Porting Online Config Change from 89-fb -- JAVADOC FIX ADDENDUM
2014-10-13 21:25:51 -07:00
Enis Soztutar
6abb883865
HBASE-12083 Deprecate new HBaseAdmin() in favor of Connection.getAdmin()
2014-10-13 13:20:16 -07:00
stack
9a893a9c6a
HBASE-12029 Use Table and RegionLocator in HTable.getRegionLocations() (Solomon Duskis)
2014-10-13 12:24:27 -07:00
stack
b30d2f315d
HBASE-12242 Fix new javadoc warnings in Admin, etc.
2014-10-13 12:07:50 -07:00
Ted Yu
3851d05a80
HBASE-12237 HBaseZeroCopyByteString#wrap() should not be called in hbase-client code
2014-10-13 17:29:09 +00:00
Andrew Purtell
8ee55fb339
HBASE-12126 Region server coprocessor endpoint (Virag Kothari)
2014-10-10 12:00:51 -07:00
stack
65ae2e5126
HBASE-11394 Replication can have data loss if peer id contains hyphen "-"
2014-10-10 10:28:16 -07:00
stack
06a8bb5bd1
HBASE-12189 Fix new issues found by coverity static analysis
2014-10-09 20:51:04 -07:00
Nick Dimiduk
712dad814c
HBASE-12183 FuzzyRowFilter doesn't support reverse scans
2014-10-09 18:27:22 -07:00
Jimmy Xiang
72c8c62aa1
HBASE-12216 Lower closed region logging level
2014-10-09 14:00:24 -07:00
stack
0eb0721fef
HBASE-11990 Make setting the start and stop row for a specific prefix easier (Niels Basjes)
2014-10-09 11:13:52 -07:00
Ted Yu
3d84ccbf9c
HBASE-12109 user_permission command for namespace does not return correct result (Vandana Ayyalasomayajula)
2014-10-09 17:45:02 +00:00
Yi Deng
3c1fbd2ddf
HBASE-12198 Fix the bug of not updating location cache
...
Summary: # Clear the cache of the server when failed
Test Plan: Add testcase `TestHTableMultiplexerFlushCache` to reproduce the bug.
Differential Revision: https://reviews.facebook.net/D24603
Signed-off-by: Elliott Clark <elliott@fb.com>
Signed-off-by: Elliott Clark <eclark@apache.org>
2014-10-09 10:09:03 -07:00
Ted Yu
a8be606145
HBASE-12016 Reduce number of versions in Meta table. Make it configurable (Andrey Stepachev)
2014-10-07 21:07:52 +00:00
Andrew Purtell
3557a32352
HBASE-12106 Move test annotations to test artifact (Enis Soztutar)
2014-10-06 23:16:22 -07:00
stack
bc4f25ff45
HBASE-12104 Some optimization and bugfix for HTableMultiplexer (Yi Deng)
2014-10-03 17:17:09 -07:00
Ted Yu
efe0787c87
HBASE-12136 Race condition between client adding tableCF replication znode and server triggering TableCFsTracker (Virag Kothari)
2014-10-03 21:34:45 +00:00
Andrew Purtell
d8a7b67d79
HBASE-11907 Use the joni byte[] regex engine in place of j.u.regex
2014-10-02 23:06:32 -07:00
Jimmy Xiang
a463aef8bc
HBASE-12122 Try not to assign user regions to master all the time
2014-10-02 13:30:55 -07:00
Enis Soztutar
11e28eb76b
HBASE-12140 Add ConnectionFactory.createConnection() to create using default HBaseConfiguration. (Jean-Marc Spaggiari))
2014-10-01 19:26:39 -07:00
Enis Soztutar
387f90e394
HBASE-12127 Move the core Connection creation functionality into ConnectionFactory (Solomon Duskis)
2014-10-01 19:00:59 -07:00
stack
43301167db
HBASE-12145 Fix javadoc and findbugs so new folks aren't freaked when they see them
...
Fix javadoc warnings.
Fixup findbugs warnings mostly by adding annotations saying 'working as expected'.
In RpcRetryingCallerWithReadReplicas made following change which findbugs spotted:
- if (completed == null) tasks.wait();
+ while (completed == null) tasks.wait();
In RecoverableZooKeeper, made all zk accesses synchronized -- we were doing it
half-ways previously.
In RatioBasedCompactionPolicy we were making an instance of Random on
each invocation of getNextMajorCompactionTime
2014-10-01 16:37:13 -07:00
Ted Yu
ed441ad814
HBASE-12143 Minor fix for Table code (Solomon Duskis)
2014-10-01 20:31:31 +00:00
anoopsjohn
4fac4c1ba6
HBASE-12112 Avoid KeyValueUtil#ensureKeyValue some more simple cases.
2014-10-01 14:05:57 +05:30
stack
ff31691c84
HBASE-11879 Change TableInputFormatBase to take interface arguments (Solomon Duskis)
2014-09-30 21:25:04 -07:00
stack
b5783795cd
HBASE-12038 Replace internal uses of signatures with byte[] and String tableNames to use the TableName equivalents (Solomon Duskis)
2014-09-30 16:35:55 -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
anoopsjohn
b48a474988
HBASE-12111 Remove deprecated APIs from Mutation(s).
2014-09-29 08:03:00 +05:30
Enis Soztutar
3beb168b4f
HBASE-11995 Use Connection and ConnectionFactory where possible (Solomon Duskis)
2014-09-26 11:49:37 -07:00
David Deng
78d532e5f3
HBASE-12086 Fix bug of HTableMultipliexer
...
Signed-off-by: Elliott Clark <eclark@apache.org>
2014-09-25 11:30:29 -07:00
anoopsjohn
1b5e6daef2
HBASE-12084 Remove deprecated APIs from Result.
2014-09-25 07:36:15 +05:30
Andrew Purtell
011bc04416
HBASE-11796 Add client support for atomic checkAndMutate (Srikanth Srungarapu)
2014-09-24 15:07:38 -07:00
Andrew Purtell
bcee3609dd
HBASE-12077 FilterLists create many ArrayList objects per row (Lars Hofhansl)
2014-09-24 11:12:21 -07:00
Elliott Clark
0a28af366b
HBASE-12076 Move InterfaceAudience imports to hbase-annotations
2014-09-24 03:57:55 -07:00
Enis Soztutar
c316257671
HBASE-12056 RPC logging too much in DEBUG mode
2014-09-23 19:53:57 -07:00
Elliott Clark
a5bd931682
HBASE-12059 Create hbase-annotations module
2014-09-23 16:44:14 -07:00
anoopsjohn
564b3d8bc2
HBASE-12048 Remove deprecated APIs from Filter.
2014-09-23 23:07:38 +05:30
anoopsjohn
a94f7b1400
HBASE-12024 Fix javadoc warning.
2014-09-23 22:50:55 +05:30
Elliott Clark
2635791027
HBASE-12062 Fix usage of Collections.toArray
2014-09-23 09:58:24 -07:00
anoopsjohn
791a03b40f
HBASE-12047 Avoid usage of KeyValueUtil#ensureKeyValue in simple cases.
2014-09-23 16:42:01 +05:30
Enis Soztutar
bcbacefdd5
HBASE-12046 HTD/HCD setters should be builder-style
2014-09-22 11:44:34 -07:00
Enis Soztutar
d568aa22b8
HBASE-11974 When a disabled table is scanned, NotServingRegionException is thrown instead of TableNotEnabledException (Ted Yu)
2014-09-21 15:23:31 -07:00
stack
ee2821b0a5
HBASE-11917 Deprecate / Remove HTableUtil
2014-09-19 15:56:46 -07:00
stack
d2501d643b
HBASE-10757 Change HTable class doc so it sends people to HCM getting instances
2014-09-19 13:34:59 -07:00
Jimmy Xiang
b4c07e9a80
HBASE-12005 Split/merge fails if master restarts before PONR
2014-09-19 11:44:07 -07:00
stack
7d0f5eba2d
HBASE-11462 MetaTableAccessor shouldn't use ZooKeeeper (Mikhail Antononv)
2014-09-19 11:02:35 -07:00
stack
e05f78ec01
HBASE-12010 Use TableName.META_TABLE_NAME instead of indirectly from HTableDescriptor
2014-09-19 00:05:50 -07:00
Matteo Bertozzi
bd8df9ccd4
HBASE-11598 Add simple rpc throttling
2014-09-18 22:38:30 +01:00
Enis Soztutar
cad76a3431
HBASE-11825 Create Connection and ConnectionManager (Solomon Duskis)
2014-09-16 11:40:29 -07:00
Jimmy Xiang
cc873713c1
HBASE-11976 Server startcode is not checked for bulk region assignment
2014-09-16 09:19:27 -07:00
stack
5554692871
HBASE-11862 Get rid of Writables in HTableDescriptor, HColumnDescriptor (Andrey Stepachev)
2014-09-15 11:08:21 -07:00
stack
3cc5d19039
HBASE-7767 Get rid of ZKTable, and table enable/disable state in ZK (Andrey Stepachev)
2014-09-15 10:12:49 -07:00
stack
3c9bd7d296
HBASE-11911 Break up tests into more fine grained categories (Alex Newman)
2014-09-12 21:37:06 -07:00
stack
7a1b7ef261
HBASE-11893 RowTooBigException should be in hbase-client module (Mikhail Antonov)
2014-09-12 12:35:28 -07:00
stack
c0d4b26872
HBASE-11897 Add append and remove peer table-cfs cmds for replication (Liu Shaoqui)
2014-09-12 09:28:52 -07:00
Jimmy Xiang
3a82cf238b
HBASE-11760 Tighten up region state transition
2014-09-11 13:21:12 -07:00
Enis Soztutar
4cb76aa929
HBASE-11936 IsolationLevel must be attribute of a Query not a Scan (Vladimir Rodionov)
2014-09-11 12:58:04 -07:00
Enis Soztutar
686b860f35
HBASE-11923 Potential race condition in RecoverableZookeeper.checkZk() (Lars Hofhansl)
2014-09-09 18:35:53 -07:00
Enis Soztutar
f7bcf3df6b
HBASE-11921 Minor fixups that come of testing branch-1 (Stack)
2014-09-09 12:05:43 -07:00
Enis Soztutar
4995ed8a02
HBASE-11679 Replace HTable with HTableInterface where backwards-compatible (Carter)
2014-09-08 23:39:34 -07:00
Enis Soztutar
27d4ca2f64
HBASE-11787 TestRegionLocations is not categorized (Nicolas Liochon)
2014-09-08 16:36:42 -07:00
Enis Soztutar
34a5019b42
HBASE-10841 Scan,Get,Put,Delete,etc setters should consistently return this
2014-09-05 18:48:38 -07:00
Sean Busbey
39609a556a
HBASE-11891 Introduce an HBaseInterfaceAudience level to denote class names that appear in configs.
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
2014-09-05 14:33:39 -07:00
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
Ted Yu
b2d528aac6
HBASE-11878 TestVisibilityLabelsWithDistributedLogReplay#testAddVisibilityLabelsOnRSRestart sometimes fails due to VisibilityController not yet initialized
2014-09-02 22:44:18 +00:00
Enis Soztutar
211c1e8ad4
HBASE-11797 Create Table interface to replace HTableInterface (Carter)
2014-09-02 13:07:02 -07:00
stack
5719e4098b
HBASE-11865 Result implements CellScannable; rather it should BE a CellScanner
2014-08-31 00:11:35 -07:00
stack
3bfbd06291
HBASE-11822 Convert EnvironmentEdge#getCurrentTimeMillis to getCurrentTime
2014-08-29 17:14:25 -07:00
Jimmy Xiang
b7f7514762
HBASE-11689 Track meta in transition (Andrey Stepachev and Jimmy Xiang)
2014-08-29 13:23:35 -07:00
Nicolas Liochon
8c0e5dca75
HBASE-11851 RpcClient can try to close a connection not ready to close
2014-08-29 14:35:57 +02:00
Srikanth Srungarapu
57328e1121
HBASE-11788 HBase is not deleting the cell when a Put with a KeyValue, KeyValue.Type.Delete is submitted
2014-08-27 09:05:34 -07:00
Sean Busbey
3411f830e3
HBASE-11828 callers of SeverName.valueOf should use equals and not ==.
...
Signed-off-by: Andrew Purtell <apurtell@apache.org>
2014-08-26 17:52:13 -07:00
Lars Hofhansl
e27a427f9b
HBASE-9746 Addendum.
2014-08-26 10:56:55 -07:00
Lars Hofhansl
d79db4d221
HBASE-9746 RegionServer can't start when replication tries to replicate to an unknown host.
2014-08-25 16:32:01 -07:00
stack
dd6c21e4d5
HBASE-11610 Enhance remote meta updates
2014-08-25 11:55:43 -07:00
Lars Hofhansl
c3d2d6127e
HBASE-11536 Puts of region location to Meta may be out of order which causes inconsistent of region location. (Liu Shaohui)
2014-08-25 11:35:22 -07:00
Gary Helmling
db520b94cb
HBASE-11800 Make HTableInterface coprocessorService methods public
2014-08-22 11:06:08 -07:00
Ramkrishna
6f00f859a7
HBASE-11802 Scan copy constructor doesn't copy reversed member variable
2014-08-22 22:03:57 +05:30
anoopsjohn
062f6a6aac
HBASE-11553 Abstract visibility label related services into an interface.
2014-08-20 14:47:29 +05:30
Enis Soztutar
e28ec72464
HBASE-11568 Async WAL replication for region replicas
2014-08-19 18:59:22 -07:00
Enis Soztutar
d44e7df5dc
HBASE-11512 Write region open/close events to WAL
2014-08-19 18:45:21 -07:00
Enis Soztutar
aeecd20373
HBASE-11572 Add support for doing get/scans against a particular replica_id (Jeffrey Zhong)
2014-08-19 18:23:09 -07:00
stack
c08f850d40
HBASE-11657 Put HTable region methods in an interface (Carter Page)
2014-08-19 16:15:02 -07:00
Andrew Purtell
393a2a3814
HBASE-11773 Wrong field used for protobuf construction in RegionStates (Andrey Stepachev)
2014-08-19 09:24:45 -07:00
Ramkrishna
c1660a7962
HBASE-11438 - [Visibility Controller] Support UTF8 character as Visibility
...
Labels (ram)
2014-08-14 12:41:16 +05:30
Nicolas Liochon
fadb0900a0
HBASE-11719 Remove some unused paths in AsyncClient
2014-08-12 10:11:02 +02:00
Nicolas Liochon
2c3340c00a
HBASE-11718 Remove some logs in RpcClient.java
2014-08-12 09:52:24 +02:00
Andrew Purtell
12d4a42e71
HBASE-11589 AccessControlException should be a not retriable exception (Qiang Tian)
2014-08-08 19:10:56 -07:00
Jimmy Xiang
17dff6818e
HBASE-11611 Clean up ZK-based region assignment
2014-08-06 16:22:08 -07:00