-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unhandled exception when using RocksDBStore plugin #330
Comments
Could you check this change #332 ? |
I built #332 and put binaries into |
I see that your error was different to my error, i will check it again |
I experienced this with previous neo versions and leveldb. rocksdb.dll is probably missing in neo-cli path. This is a small challenge as well when developing plugins with other dependencies as you have to find out which dll is needed in neo-cli path and which in the plugin path. Would be nice to have a cleaner solution for this. |
The release binary doesn't contains the dependencies. Could you create a new relase with it @superboyiii ? Also it will require #332 for work. |
Fine, whenever it's merged. |
Are you in linux? Would you like to try install this dependency? neo-project/docs#1127 |
@superboyiii, all works fine with the following things done:
All of these components are required. |
Release version of RocksDBStore does not work properly, that's why we have to build it from source. It also requires RocksDBSharp.dll which can be fetched from nuget portal. It also requires librocksdb-dev. See neo-project/neo-modules#330
Release version of RocksDBStore does not work properly, that's why we have to build it from source. It also requires RocksDBSharp.dll which can be fetched from nuget portal. It also requires librocksdb-dev. See neo-project/neo-modules#330
Release version of RocksDBStore does not work properly, that's why we have to build it from source. It also requires RocksDBSharp.dll which can be fetched from nuget portal. It also requires librocksdb-dev. See neo-project/neo-modules#330
Release version of RocksDBStore does not work properly, that's why we have to build it from source. It also requires RocksDBSharp.dll which can be fetched from nuget portal. It also requires librocksdb-dev. See neo-project/neo-modules#330
Release version of RocksDBStore does not work properly, that's why we have to build it from source. It also requires librocksdb-dev. See neo-project/neo-modules#330
Describe the bug
I'm using Neo 3 preview3 release of neo-cli and trying to switch from LevelDBStore to RocksDBStore Plugin. I'm able to install RocksDBStore via neo-cli, but when I'm trying to re-run neo-cli with
"Storage": {"Engine": "RocksDBStore"},
configuration, I get the following error:The same thing happens when I'm trying to install RocksDBStore Plugin manually. This problem looks like #198.
I tried also to unzip RocksDBSharp.dll into Plugins folder from nuget.org, but then it turns out that RocksDBNative.dll is also required and missing
To Reproduce
Steps to reproduce the behavior:
"Storage": {"Engine": "RocksDBStore"},
configuration)Expected behavior
Node is running with RocksDB storage.
Platform:
The text was updated successfully, but these errors were encountered: