Commit Graph

2150 Commits

Author SHA1 Message Date
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