我正在尝试在表中插入很多行(我的目标是插入十亿个虚拟行)。这就是我所做的:
- 我将与插入相对应的十亿 SQL 行写入文件。
./hbase shell < insert.sql
前几个插入很好,但很快我继续遇到这个错误
put 'test', 'row19115', 'cf:a', '19115'
ERROR: java.lang.OutOfMemoryError: unable to create new native thread
Here is some help for this command:
Put a cell 'value' at specified table/row/column and optionally
timestamp coordinates. To put a cell value into table 't1' at
row 'r1' under column 'c1' marked with the time 'ts1', do:
hbase> put 't1', 'r1', 'c1', 'value', ts1
- 如何解决此错误/有更好的方法吗?
- 另外,是否有其他方法可以进行插入而不是每次都将它们写入文件?