ROCKSDB Failed to acquire lock due to rocksdb_max_row_locks

Question:

I’m trying to load a CSV in to my rocksdb database, but it fails and show me this error:

Got error 10 'Operation aborted:Failed to acquire lock due to rocksdb_max_row_locks limit' from ROCKSDB

I’ve tried with SET SESSION rocksdb_max_row_locks=1073741824; but same error always.

What can I try to fix this?

Asked By: rogarui

||

Answers:

This should do the trick (before starting the insert)

SET session rocksdb_bulk_load=1;

Answered By: Roy
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.