ikopylov

Results 158 issues of ikopylov

Right now we detect, that the disk is not available and change state to `NotReady` here: https://github.com/qoollo/bob/blob/release_v2.0.0/bob-backend/src/pearl/disk_controller.rs#L360 But later anyway we return the initialization error: https://github.com/qoollo/bob/blob/release_v2.0.0/bob-backend/src/pearl/disk_controller.rs#L367 This prevents the node...

bug

Related issue in Pearl: https://github.com/qoollo/pearl/issues/279

feature

We can extend `put-get-exist` test by adding deletion of the half of the records, then reading the deleted ones and checking for existence on them, then writing new ones on...

infrastructure

Sometimes performance even drops to zero. In `bobp` output it looks like this: ``` put: 76200.00 kb/s | get: 0.00 kb/s | put lat: 0.01 ms | get lat: 0.00...

performance
investigation

`cargo build` has `--features` parameter (https://doc.rust-lang.org/cargo/reference/features.html). Now we have a feature to enable/disable async-io, so we should be able to turn on that feature inside dockerfile

infrastructure

`tokio::spawn` runs a task in the background that will not be canceled by a request timeout. So there is a chance that such a tasks will overflow the tokio task...

improvement

Inter-node authorization is working only with `dnsrr`. We should make it able to work with default settings. Continuation of https://github.com/qoollo/bob/issues/529

bug
improvement

In the current implementation, user timestamps are used only at the Bob level within a single vdisk. They are completely ignored at the Pearl level and are not used between...

feature

Associated issue in Pearl: https://github.com/qoollo/pearl/issues/233 ``` 2023-01-15 20:42:25 bob_common::configs::node:428 ERROR can't initialize holder, attempt 3/3, error backend storage error: pearl error: failed to init from existing blobs Caused by: 0:...

bug