-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wellington Ramos Chevreuil <wchevreuil@apache.org> Conflicts: hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestBulkloadBase.java
- Loading branch information
1 parent
c76c083
commit 4f9fbd8
Showing
9 changed files
with
503 additions
and
39 deletions.
There are no files selected for viewing
108 changes: 108 additions & 0 deletions
108
.../src/test/java/org/apache/hadoop/hbase/mapreduce/IntegrationTestFileBasedSFTBulkLoad.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
/** | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.hadoop.hbase.mapreduce; | ||
|
||
import org.apache.hadoop.conf.Configuration; | ||
import org.apache.hadoop.hbase.HBaseConfiguration; | ||
import org.apache.hadoop.hbase.IntegrationTestingUtility; | ||
import org.apache.hadoop.hbase.regionserver.storefiletracker.StoreFileTrackerFactory; | ||
import org.apache.hadoop.hbase.testclassification.IntegrationTests; | ||
import org.apache.hadoop.util.ToolRunner; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* Test Bulk Load and MR on a distributed cluster. | ||
* With FileBased StorefileTracker enabled. | ||
* It starts an MR job that creates linked chains | ||
* | ||
* The format of rows is like this: | ||
* Row Key -> Long | ||
* | ||
* L:<< Chain Id >> -> Row Key of the next link in the chain | ||
* S:<< Chain Id >> -> The step in the chain that his link is. | ||
* D:<< Chain Id >> -> Random Data. | ||
* | ||
* All chains start on row 0. | ||
* All rk's are > 0. | ||
* | ||
* After creating the linked lists they are walked over using a TableMapper based Mapreduce Job. | ||
* | ||
* There are a few options exposed: | ||
* | ||
* hbase.IntegrationTestBulkLoad.chainLength | ||
* The number of rows that will be part of each and every chain. | ||
* | ||
* hbase.IntegrationTestBulkLoad.numMaps | ||
* The number of mappers that will be run. Each mapper creates on linked list chain. | ||
* | ||
* hbase.IntegrationTestBulkLoad.numImportRounds | ||
* How many jobs will be run to create linked lists. | ||
* | ||
* hbase.IntegrationTestBulkLoad.tableName | ||
* The name of the table. | ||
* | ||
* hbase.IntegrationTestBulkLoad.replicaCount | ||
* How many region replicas to configure for the table under test. | ||
*/ | ||
@Category(IntegrationTests.class) | ||
public class IntegrationTestFileBasedSFTBulkLoad extends IntegrationTestBulkLoad { | ||
|
||
private static final Logger LOG = LoggerFactory.getLogger(IntegrationTestFileBasedSFTBulkLoad.class); | ||
|
||
private static String NUM_MAPS_KEY = "hbase.IntegrationTestBulkLoad.numMaps"; | ||
private static String NUM_IMPORT_ROUNDS_KEY = "hbase.IntegrationTestBulkLoad.numImportRounds"; | ||
private static String NUM_REPLICA_COUNT_KEY = "hbase.IntegrationTestBulkLoad.replicaCount"; | ||
private static int NUM_REPLICA_COUNT_DEFAULT = 1; | ||
|
||
@Test | ||
public void testFileBasedSFTBulkLoad() throws Exception { | ||
super.testBulkLoad(); | ||
} | ||
|
||
@Override | ||
public void setUpCluster() throws Exception { | ||
util = getTestingUtil(getConf()); | ||
util.getConfiguration().set(StoreFileTrackerFactory.TRACKER_IMPL, | ||
"org.apache.hadoop.hbase.regionserver.storefiletracker.FileBasedStoreFileTracker"); | ||
util.initializeCluster(1); | ||
int replicaCount = getConf().getInt(NUM_REPLICA_COUNT_KEY, NUM_REPLICA_COUNT_DEFAULT); | ||
if (LOG.isDebugEnabled() && replicaCount != NUM_REPLICA_COUNT_DEFAULT) { | ||
LOG.debug("Region Replicas enabled: " + replicaCount); | ||
} | ||
|
||
// Scale this up on a real cluster | ||
if (util.isDistributedCluster()) { | ||
util.getConfiguration().setIfUnset(NUM_MAPS_KEY, | ||
Integer.toString(util.getAdmin().getRegionServers().size() * 10)); | ||
util.getConfiguration().setIfUnset(NUM_IMPORT_ROUNDS_KEY, "5"); | ||
} else { | ||
util.startMiniMapReduceCluster(); | ||
} | ||
} | ||
|
||
public static void main(String[] args) throws Exception { | ||
Configuration conf = HBaseConfiguration.create(); | ||
IntegrationTestingUtility.setUseDistributedCluster(conf); | ||
int status = ToolRunner.run(conf, new IntegrationTestFileBasedSFTBulkLoad(), args); | ||
System.exit(status); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.