Open vt-alt opened 1 year ago
I had same issue and like you say moving from ext/RocksDB/RocksDB.so into ext/rocksdb/RocksDB.so fixed it
similar issue. Ludicrous workaround in my Dockerfile was
RUN bundle install
RUN cp /usr/local/bundle/gems/rocksdb-ruby-1.0.4/ext/RocksDB/* /usr/local/bundle/gems/rocksdb-ruby-1.0.4/ext/rocksdb
After
strace
ing thatrequire
call into logfilea
:So
RocksDB.so
is inRocksDB/
not inrocksdb/
, perhaps you should put it inrocksdb/
. Not all systems have case insensitive filenames.