我正在读一个大小为30 mb的json文件,用于创建列族和键值的过程。然后创建Put对象,将rowkey和值插入其中。创建此类put对象的列表并调用Table.batch()并传递此列表。当我的arraylist大小是50000时,我正在调用它。然后清除列表并调用下一批。但是要处理最终有800,000个条目的文件需要300秒。我也累了table.put但它甚至更慢。我正在使用hbase 1.1。我从卡夫卡那里得到了这个json。任何提高性能的建议都值得赞赏。我检查了SO论坛,但没有多少帮助。如果你想看一下,我会分享代码。
此致
Raghavendra
public static void processData(String jsonData)
{
if (jsonData == null || jsonData.isEmpty())
{
System.out.println("JSON data is null or empty. Nothing to process");
return;
}
long startTime = System.currentTimeMillis();
Table table = null;
try
{
table = HBaseConfigUtil.getInstance().getConnection().getTable(TableName.valueOf("MYTABLE"));
}
catch (IOException e1)
{
System.out.println(e1);
}
Put processData = null;
List<Put> bulkData = new ArrayList<Put>();
try
{
//Read the json and generate the model into a class
//ProcessExecutions is List<ProcessExecution>
ProcessExecutions peData = JsonToColumnData.gson.fromJson(jsonData, ProcessExecutions.class);
if (peData != null)
{
//Read the data and pass it to Hbase
for (ProcessExecution pe : peData.processExecutions)
{
//Class Header stores some header information
Header headerData = pe.getHeader();
String rowKey = headerData.getRowKey();
processData = new Put(Bytes.toBytes(JsonToColumnData.rowKey));
processData.addColumn(Bytes.toBytes("Data"),
Bytes.toBytes("Time"),
Bytes.toBytes("value"));
//Add to list
bulkData.add(processData);
if (bulkData.size() >= 50000) //hardcoded for demo
{
long tmpTime = System.currentTimeMillis();
Object[] results = null;
table.batch(bulkData, results);
bulkData.clear();
System.gc();
}
} //end for
//Complete the remaining write operation
if (bulkData.size() > 0)
{
Object[] results = null;
table.batch(bulkData, results);
bulkData.clear();
//Try to free memory
System.gc();
}
}
catch (Exception e)
{
System.out.println(e);
e.printStackTrace();
}
finally
{
try
{
table.close();
}
catch (IOException e)
{
System.out.println("Error closing table " + e);
e.printStackTrace();
}
}
}
//This function is added here to show the connection
/*public Connection getConnection()
{
try
{
if (this.connection == null)
{
ExecutorService executor = Executors.newFixedThreadPool(HBaseConfigUtil.THREADCOUNT);
this.connection = ConnectionFactory.createConnection(this.getHBaseConfiguration(), executor);
}
}
catch (IOException e)
{
e.printStackTrace();
System.out.println("Error in getting connection " + e.getMessage());
}
return this.connection;
}*/
答案 0 :(得分:2)
我有同样的情况,我需要解析5 GB json并插入到hbase表中...你可以尝试以下方式(应该可以工作),这对于我的情况下批量的100000条记录证明非常快。 / p>
public void addMultipleRecordsAtaShot(final ArrayList<Put> puts, final String tableName) throws Exception {
try {
final HTable table = new HTable(HBaseConnection.getHBaseConfiguration(), getTable(tableName));
table.put(puts);
LOG.info("INSERT record[s] " + puts.size() + " to table " + tableName + " OK.");
} catch (final Throwable e) {
e.printStackTrace();
} finally {
LOG.info("Processed ---> " + puts.size());
if (puts != null) {
puts.clear();
}
}
}
有关增加缓冲区大小的详细信息,请使用其他context检查我的答案以增加缓冲区大小,请参阅文档https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html