I have a big list of HBase sql statements that I need to run against an existing instance of HBase database.
The SQL statements are in plain text, and the database is running on native file system (instead of HDFS). Thus, I do not have a Hadoop instance running.
I am currently running those SQL statements on an hbase shell, but the process is really slow. I know if Hadoop is running, I can assign mappers to do parallel inserts, but is there a faster way to do bulk load without using a Hadoop instance?