Commit Graph

2204 Commits

Author SHA1 Message Date
stack 8da1214099 HBASE-14053 Disable DLR in branch-1+ 2015-07-09 16:38:04 -07:00
Enis Soztutar 5ce97afee7 HBASE-13973 Update documentation for 10070 Phase 2 changes 2015-06-26 15:25:01 -07:00
Andrew Purtell 7df1814f7f HBASE-13780 Default to 700 for HDFS root dir permissions for secure deployments (Enis Soztutar) 2015-05-27 13:15:43 -07:00
Nick Dimiduk 33fe79cf6f HBASE-13665 Fix docs and site building on branch-1 2015-05-11 15:26:41 -07:00
Enis Soztutar 9621debfa5 HBASE-12926 Backport HBASE-12688 (Update site with a bootstrap-based UI) for HBASE-12918 (Andrew Purtell) 2015-01-27 19:31:15 -08:00
Enis Soztutar 8783377e44 HBASE-12568 Adopt Semantic Versioning and document it in the book 2014-12-11 12:02:06 -08:00
Enis Soztutar 48d9d27d68 Blanket update of src/main/docbkx from master 2014-12-02 20:35:51 -08:00
Sean Busbey 8959828fb5 HBASE-12522 Backport of write-ahead-log refactoring and follow-ons.
Issues incorporated and incompatible changes called out on the 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 and stack.

Conflicts:
	hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/WALPlayer.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/master/AssignmentManager.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/migration/NamespaceUpgrade.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/protobuf/ReplicationProtbufUtil.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegionServer.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/LogRoller.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RegionServerServices.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/FSHLog.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/RegionReplicaReplicationEndpoint.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/util/HMerge.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/util/MetaUtils.java
	hbase-server/src/main/java/org/apache/hadoop/hbase/wal/WALSplitter.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/TestIOFencing.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestAdmin2.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestRegionObserverScannerOpenHook.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFilter.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestInvocationRecordFilter.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/fs/TestBlockReorder.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHLogRecordReader.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/mapreduce/TestImportExport.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestDistributedLogSplitting.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestAtomicOperation.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestRegionMergeTransaction.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransaction.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestHLog.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestLogRollAbort.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestLogRollingNoCluster.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestMultiSlaveReplication.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationEndpoint.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationSource.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/TestReplicationWALEntryFilters.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/regionserver/TestRegionReplicaReplicationEndpoint.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/regionserver/TestRegionReplicaReplicationEndpointNoMaster.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/regionserver/TestReplicationSourceManager.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/replication/regionserver/TestReplicationWALReaderManager.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/util/TestFSVisitor.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/util/TestMergeTool.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestSecureWAL.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALFiltering.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALMethods.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALReaderOnSecureWAL.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplit.java
	hbase-server/src/test/java/org/apache/hadoop/hbase/wal/TestWALSplitCompressed.java
	src/main/docbkx/ops_mgt.xml
2014-12-02 11:05:02 -06:00
Patrick White 39c67f6031 HBASE-12569 Update scripts to control MaxDirectMemorySize via env vars
Signed-off-by: stack <stack@apache.org>

Conflicts:
	src/main/docbkx/book.xml
2014-11-25 00:00:53 -08:00
Sean Busbey f43cb80327 HBASE-12544 restore ops_mgt section of ref guide.
* checked out file version as of d7f51e^
* redid cherry-pick of changes to ops_mgt.xml from master commit 804444
* fixup with cherry pick of 71ed3b to replace mdash entity with unicode.

Original Author: stack <stack@apache.org>

Signed-off-by: stack <stack@apache.org>
2014-11-20 12:44:19 -08:00
stack d7f51e1cfa HBASE-12455 Add 'description' to bean and attribute output when you do /jmx?description=true
Conflicts:
	hbase-server/src/main/java/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.java
	src/main/docbkx/ops_mgt.xml
2014-11-11 15:06:25 -08:00
Misty Stanley-Jones a237956679 HBASE-12249 Script to help you adhere to the patch-naming guidelines 2014-10-22 13:25:57 +10:00
stack 1d1026d1bb HBASE-12286 [shell] Add server/cluster online load of configuration changes Add doc to the refguide, change command names to drop the _rs_
Signed-off-by: stack <stack@apache.org>

Conflicts:
	hbase-shell/src/main/ruby/shell.rb
2014-10-21 11:39:34 -07:00
stack b19db79968 HBASE-11990 Make setting the start and stop row for a specific prefix easier (Niels Basjes)
Conflicts:
	hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFilterWithScanLimits.java
	src/main/docbkx/book.xml
2014-10-09 11:22:40 -07:00
Misty Stanley-Jones 7525fa9386 HBASE-11981 Document how to find the units of measure for a given HBase metric 2014-10-07 17:07:40 +10:00
Misty Stanley-Jones 141e31b7bd HBASE-11692 Document how and why to do a manual region split
Incorporated Stack's feedback
2014-10-07 16:47:06 +10:00
Misty Stanley-Jones 226873f1ae HBASE-9005 Improve documentation around KEEP_DELETED_CELLS, time range scans, and delete markers 2014-10-07 14:05:47 +10:00
Misty Stanley-Jones 24cb52be37 HBASE-10411 Add a kerberos 'request is a replay (34)' issue in the Troubleshooting chapter (Takeshi Miao) 2014-10-07 13:49:43 +10:00
Misty Stanley-Jones b3935ec9ad HBASE-9004 Fix Documentation around Minor Compaction and TTL (Masatake Iwasaki) 2014-10-07 13:33:41 +10:00
Misty Stanley-Jones 10e889b1b6 HBASE-6994 minor doc update about DEFAULT_ACCEPTABLE_FACTOR (Liang Xie) 2014-10-07 13:18:30 +10:00
Misty Stanley-Jones b362dc71d6 HBASE-11930 Document new permission check to roll WAL writer (Jerry He) 2014-10-02 07:43:11 +10:00
Misty Stanley-Jones 8180a4d3a5 HBASE-11951 Add a script to assist with publishing the website and getting rid of stale files 2014-09-18 13:01:57 +10:00
Misty Stanley-Jones de72f4b9a9 HBASE-11761 Add a FAQ item for updating a maven-managed application from 0.94 -> 0.96+ 2014-09-18 12:57:09 +10:00
Misty Stanley-Jones 786418c883 Rebased HBASE-11730 for branch-1 2014-09-18 12:50:11 +10:00
Misty Stanley-Jones c4111ed971 HBASE-11738 Documented improvements to ltt and pe tools 2014-09-17 08:05:51 +10:00
Misty Stanley-Jones d93b5ce04f HBASE-11784 Document global configuration for maxVersion 2014-09-16 13:04:28 +10:00
Jimmy Xiang d283818c51 HBASE-11604 Disable co-locating meta/master by default 2014-09-11 13:43:40 -07:00
Enis Soztutar a1b956eb30 HBASE-11932 Docbook html-single build improvements (Addendum to fix XML formatting) 2014-09-10 23:05:38 -07:00
Misty Stanley-Jones 364519fb7c HBASE-11932 Docbook html-single build improvements 2014-09-11 09:14:07 +10:00
Misty Stanley-Jones aee7379b7e HBASE-11909 Documented how to find the current number of
regions and why the numbers in the UI might not agree with hbck output
2014-09-10 08:04:37 +10:00
Jonathan M Hsieh 2acfcebfa7 HBASE-11781 Document new TableMapReduceUtil scanning options (Misty Stanley-Jones) 2014-09-03 16:25:41 -07:00
Jonathan M Hsieh ce4af20ad3 HBASE-11859 'hadoop jar' references in documentation should mention hbase-server.jar, not hbase.jar 2014-08-28 19:53:49 -07:00
Jonathan M Hsieh 465d7d85a6 HBASE-11782 Document that hbase.MetaMigrationConvertingToPB needs to be set to true for migrations pre 0.96 (Misty Stanley-Jones) 2014-08-25 13:52:22 -07:00
Nick Dimiduk 7d48fa698b HBASE-11752 Document blockcache prefetch option (Misty Stanley-Jones) 2014-08-20 12:57:20 -07:00
Nick Dimiduk 8670fb3339 Revert "Document blockcache prefetch option (Misty Stanley-Jones)"
This reverts commit 7f56783003.
2014-08-20 12:57:02 -07:00
Nick Dimiduk 9fb4bfec81 Document blockcache prefetch option (Misty Stanley-Jones) 2014-08-20 11:53:17 -07:00
Matteo Bertozzi aee3990eb5 HBASE-11736 Document SKIP_FLUSH snapshot option (Misty Stanley-Jones) 2014-08-20 09:47:39 +01:00
Matteo Bertozzi 5c1ae840f2 HBASE-11737 Document callQueue improvements from HBASE-11355 and HBASE-11724 (Misty Stanley-Jones) 2014-08-20 09:42:41 +01:00
Jonathan M Hsieh f4f77b5756 HBASE-11682 Explain Hotspotting (Misty Stanley-Jones) 2014-08-19 16:46:38 -07:00
Jonathan M Hsieh fb40c38345 HBASE-10202 Documentation is lacking information about rolling-restart.sh script (Misty Stanley-Jones) 2014-08-18 15:31:47 -07:00
Jonathan M Hsieh 137fea8a76 HBASE-11508 Document changes to IPC config parameters from HBASE-11492 (Misty Stanley-Jones) 2014-08-18 14:31:38 -07:00
Jonathan M Hsieh 5b2069b7c9 HBASE-11734 Document changed behavior of hbase.hstore.time.to.purge.deletes (Misty Stanley-Jones) 2014-08-18 13:41:50 -07:00
Jonathan M Hsieh 73e04b0a70 HBASE-11753 Document HBASE_SHELL_OPTS environment variable (Misty Stanley-Jones) 2014-08-18 12:10:03 -07:00
anoopsjohn 2eb0757301 HBASE-11717 Remove unused config 'hbase.offheapcache.percentage' from hbase-default.xml and book. (Anoop) 2014-08-15 00:01:27 +05:30
Jonathan M Hsieh 65375f8258 HBASE-11476 Expand 'Conceptual View' section of Data Model chapter (Misty Stanley-Jones) 2014-08-13 14:57:18 -07:00
Jonathan M Hsieh acf56f18dd HBASE-11723 Document all options of bin/hbase command (Misty Stanley-Jones) 2014-08-13 09:46:00 -07:00
Jonathan M Hsieh 28e6aedf53 HBASE-6626 Add a chapter on HDFS in the troubleshooting section of the HBase reference guide (Misty Stanley-Jones) 2014-08-07 13:28:48 -07:00
Jonathan M Hsieh ab15fc1411 HBASE-11681 Update and move doc about disabling the WAL (Misty Stanley-Jones) 2014-08-06 14:25:07 -07:00
Ted Yu 17c869d543 HBASE-11666 Enforce JDK7 javac for builds on branch-1 and master (Sean Busbey) 2014-08-05 14:59:54 +00:00
Jimmy Xiang 90eb08eda5 HBASE-11540 Document HBASE-11474 (Misty Stanley-Jones) 2014-07-29 09:24:28 -07:00
Jimmy Xiang 147a3521f9 HBASE-11575 Pseudo distributed mode does not work as documented 2014-07-24 10:06:10 -07:00
Nicolas Liochon af141f2b08 HBASE-11492 Hadoop configuration overrides some ipc parameters including tcpNoDelay 2014-07-22 14:56:53 +02:00
stack 14b331ccab HBASE-11520 Simplify offheap cache config by removing the confusing "hbase.bucketcache.percentage.in.combinedcache" 2014-07-15 23:14:57 -07:00
Enis Soztutar 9dda92dbed HBASE-11502 Fixed typo in image name (timeline_consistency.png) 2014-07-15 15:04:50 -07:00
stack 2a20143f72 HBASE-11514 Fix findbugs warnings in blockcache 2014-07-15 07:52:22 -07:00
Jonathan M Hsieh 0b2833e033 HBASE-4931 [docs] CopyTable instructions could be improved (Misty Stanley-Jones) 2014-07-10 01:50:36 -07:00
Jonathan M Hsieh 3933b85d94 HBASE-11317 [docs] Expand unit testing to cover Mockito and MRUnit and give more examples (Misty Stanley-Jones) 2014-07-10 01:41:42 -07:00
Jonathan M Hsieh 408bb31732 HBASE-11477 book.xml Dockbook validity issues (again) (Misty Stanley-Jones) 2014-07-09 18:30:55 -07:00
Jonathan M Hsieh 7ffa5f667d HBASE-11477 book.xml has Docbook validity issues (again) (Misty Stanley-Jones) 2014-07-09 18:09:32 -07:00
Jonathan M Hsieh 4d141a2436 HBASE-11399 Improve Quickstart chapter and move Pseudo-distributed and distrbuted into it (Misty Stanley-Jones) 2014-07-02 11:30:33 -07:00
Enis Soztutar e50811a7ab HBASE-10513 Provide user documentation for region replicas
git-svn-id: https://svn.apache.org/repos/asf/hbase/branches/hbase-10070@1595077 13f79535-47bb-0310-9956-ffa450edef68
2014-06-27 16:39:40 -07:00
Gary Helmling bf827a0331 HBASE-11285 Expand coprocessor info in ref guide (Misty Stanley-Jones) 2014-06-27 11:11:40 -07:00
stack 18c5cf9e43 HBASE-6192 Document ACL matrix in the book (Misty Stanley-Jones) 2014-06-26 10:36:01 -07:00
stack 4678ce09ca Note that 1.0 is JDK7 and JDK6 not supported 2014-06-26 10:06:48 -07:00
stack 05c1b27e6f HBASE-11324 Update 2.5.2.8. Managed Compactions (Misty Stanley-Jones) 2014-06-24 17:16:13 -07:00
stack 92179b8afe HBASE-11102 Document JDK versions supported by each release (Misty Stanley-Jones) 2014-06-24 17:08:20 -07:00
stack 6586728159 Add HP meetup 2014-06-24 10:54:43 -07:00
Michael Stack 9829bb9c24 HBASE-11338 Expand documentation on bloom filters (Misty Stanley-Jones) 2014-06-19 15:11:15 -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
Michael Stack b16e36a5b2 HBASE-10289 Avoid random port usage by default JMX Server. Create Custome JMX server (Qiang Tian). DOC ADDENDUM 2014-06-19 14:38:19 -07:00
Michael Stack 3ed3c5513c HBASE-11364 [BlockCache] Add a flag to cache data blocks in L1 if multi-tier cache 2014-06-17 22:33:40 -05:00
Michael Stack 1b92422597 HBASE-11280 Document distributed log replay and distributed log splitting (Misty Stanley-Jones) 2014-06-17 18:18:00 -05:00
Michael Stack 91991b72af HBASE-11337 Document how to create, modify, delete a table using Java (Misty Stanley-Jones) 2014-06-13 10:21:19 -07:00
Michael Stack 6764275ff0 HBASE-11340 Remove references to xcievers in documentation (Dima Spivak) 2014-06-13 10:12:08 -07:00
Nick Dimiduk 632301f525 HBASE-11307 Deprecate SlabCache 2014-06-13 09:40:44 -07:00
Jean-Daniel Cryans 8e547f3ba7 HBASE-8844 Document the removal of replication state AKA start/stop_replication (Misty Stanley-Jones) 2014-06-13 08:58:55 -07:00
Michael Stack 4d200be620 Add note telling committers setup their git repo before committing 2014-06-10 10:21:58 -07:00
Michael Stack 948b22f082 HBASE-11120 Update documentation about major compaction algorithm (Misty Stanley-Jones) + addendum fixing CompactionConfiguration 2014-06-09 20:48:56 -07:00
Michael Stack 8c43acfd45 HBASE-7394 Document security config requirements from HBASE-7357 (Misty Stanley-Jones) 2014-06-08 17:23:17 -07:00
Michael Stack 31de89091f Add note on Amending-Author: Author <committer@apache> agreed up on mailing list 2014-06-06 20:26:44 -07:00
Michael Stack 475b1d2c94 HBASE-9733 Book should have individual Disqus comment per page (Misty Stanley-Jones) 2014-06-04 18:04:42 -07:00
Michael Stack f24e68426c HBASE-6139 Add troubleshooting section for CentOS 6.2 page allocation failure issue (Misty Stanley-Jones) 2014-06-04 11:26:48 -07:00
Ted Yu d20feaf1e7 HBASE-11204 Document bandwidth consumption limit feature for ExportSnapshot (Misty Stanley-Jones) 2014-06-04 04:33:24 +00:00
Michael Stack 8fd62d1e89 Add link back to mailing list on policy voting on RCs 2014-06-02 16:54:55 -07:00
Michael Stack 8b54e48086 Add list of properties needed running REST server under SSL 2014-06-02 15:44:19 -07:00
Michael Stack a5f6f4783c Add section on how to vote on an RC for PMC members 2014-06-02 15:04:19 -07:00
Michael Stack 6fdf737171 HBASE-6701 Revisit thrust of paragraph on splitting (Misty Stanley-Jones) 2014-06-02 10:02:23 -07:00
Michael Stack db9cb9ca08 HBASE-6701 Revisit thrust of paragraph on splitting (Misty Stanley-Jones) 2014-06-02 09:52:01 -07:00
Michael Stack 768c4d6775 HBASE-11238 Add info about SlabCache and BucketCache to Ref Guide (Misty Stanley-Jones) 2014-06-02 09:29:59 -07:00
Michael Stack 80557b872f HBASE-10289 Avoid random port usage by default JMX Server. Create Custome JMX server (Qiang Tian) 2014-06-02 09:19:16 -07:00
Michael Stack d56dfd2a8b Add pointer to blog on distributed log splitting 2014-06-02 08:59:03 -07:00
Michael Stack 4118b0e734 HBASE-9580 Document the meaning of @InterfaceAudience in hbase ref guide (Misty Stanley-Jones) 2014-05-30 11:16:32 -07:00
Michael Stack 380bfd11eb HBASE-11268 HTablePool is now a deprecated class, should update docs to reflect this (Misty Stanley-Jones) 2014-05-30 10:45:50 -07:00
Michael Stack 2db8aafe7d HBASE-4456 [doc] Add a section about RS failover (Misty Stanley-Jones) 2014-05-28 23:10:21 -07:00
Michael Stack 9fc9c0f210 HBASE-11196 Update description of -ROOT- in ref guide 2014-05-28 22:59:25 -07:00
Michael Stack b4a2d607a3 HBASE-11218 Data loss in HBase standalone mode (Liu Shaohui) -- DOC ADDENDUM 2014-05-28 10:42:37 -07:00
Michael Stack 63e8304e96 HBASE-11199 One-time effort to pretty-print the Docbook XML, to make further patch review easier (Misty Stanley-Jones) 2014-05-28 07:58:50 -07:00
Michael Stack ef995efb1a HBASE-8807 HBase MapReduce Job-Launch Documentation Misplaced (Misty Stanley-Jones) 2014-05-27 15:13:23 -07:00
Michael Stack aa101ca97e HBASE-9149 javadoc cleanup of to reflect .META. rename to hbase:meta (Misty Stanley-Jones) 2014-05-27 10:36:55 -07:00
Michael Stack bfbc6d48cd HBASE-8817 Enhance The Apache HBase Reference Guide (Misty Stanley-Jones) 2014-05-27 10:13:14 -07:00