blob: 6ca0655fbdb67e260ff1592bb5594db3d2b907e5 [file] [view]
## Capabilities
This service can be used to:
- [ ] create_dir
- [x] stat
- [x] read
- [x] write
- [x] delete
- [x] list
- [ ] copy
- [ ] rename
- [ ] ~~presign~~
## Note
OpenDAL will build rocksdb from source by default.
To link with existing rocksdb lib, please set one of the following:
- `ROCKSDB_LIB_DIR` to the dir that contains `librocksdb.so`
- `ROCKSDB_STATIC` to the dir that contains `librocksdb.a`
If the version of RocksDB is below 6.0, you may encounter compatibility
issues. It is advisable to follow the steps provided in the [`INSTALL`](https://github.com/facebook/rocksdb/blob/main/INSTALL.md)
file to build rocksdb, rather than relying on system libraries that
may be outdated and incompatible.
## Configuration
- `root`: Set the working directory of `OpenDAL`
- `datadir`: Set the path to the rocksdb data directory
You can refer to [`RocksdbBuilder`]'s docs for more information.
## Example
### Via Builder
```rust,no_run
use opendal_core::Operator;
use opendal_core::Result;
use opendal_service_rocksdb::Rocksdb;
#[tokio::main]
async fn main() -> Result<()> {
let mut builder = Rocksdb::default()
.datadir("/tmp/opendal/rocksdb");
let op: Operator = Operator::new(builder)?.finish();
Ok(())
}
```