Vitaly Isaev
Vitaly Isaev
Please consider this small PR that helps to find out, what's exactly wrong with NodeHost configuration. It also requires https://github.com/lni/goutils/pull/1 to be merged. Thank you!
Please consider this PR that provides an opportunity to utilize any hash function impemented in OpenSSL: ``` $ openssl list --digest-commands blake2b512 blake2s256 gost md2 md4 md5 rmd160 sha1 sha224...
Hello, could you please provide little bit more information about `aqu-sz` (average request queue length) estimation? From [iostat.c](https://github.com/sysstat/sysstat/blob/master/iostat.c#L1222): ``` /* aqu-sz */ cprintf_f(NO_UNIT, 1, 7, 2, S_VALUE(ioj->rq_ticks, ioi->rq_ticks, itv) /...
We faced with memory leak with one of our applications, which periodically iterates over whole `Rocksdb` database to compute some statistics. We also use `MergeOperator` implemented in Go, and it...
Hello, could you please check the definition of IOPS. In this [article](https://github.com/natict/linux-metrics/blob/master/docs/io-usage.md#task-i1-io-usage) it is said that > r/s & w/s- Read/Write requests (after merges) per-second. Their sum is the IOPS!...
> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link (github.com, gitlab.com,...
> Please check if what you want to add to `awesome-go` list meets [quality standards](https://github.com/avelino/awesome-go/blob/main/CONTRIBUTING.md#quality-standards) before sending pull request. Thanks! **Please provide package links to:** - repo link: https://github.com/newcloudtechnologies/rbfopt-go -...
If `require` object hasn't been initialized before calling `suite.Require` method, it will be created on the base of `*testing.T` returned from `suite.T()` ([code](https://github.com/stretchr/testify/blame/v1.8.4/suite/suite.go#L61)): ```go // Require returns a require context...
### Changelog entry * Add docs for YDB Federated Query + Connector deployment ### Changelog category * Documentation (changelog entry is not required)
When trying to access ClickHouse server with invalid credentials using HTTP protocol with LZ4 Compression enabled, an unclear error occurs. Consider this small example: ```go package main import ( "fmt"...