Artyom Dubinin
Artyom Dubinin
There is a problem that in java I haven't found a normal library with the crc32 hash function so that custom parameters can be passed in (in guava and in...
> Проверили работу штатной балансировки клиента TNT – работает. > > Но заметили 2 проблемы балансировки: > > 1. Перезагрузили один роутер. Клиент перестал его нагружать. > После перезагрузки второго,...
Мне кажется приоритетнее https://github.com/tarantool/cartridge-java/issues/404 Плюс надо будет обновить отдельным PR версию tarantool-testcontainers или изменить тесты
> AFAIK, such conversion already exists there but probably is not working now. For reading everything is ok, but for writing an error appears. If we write a custom converter,...
> However, I think what the reporter wants is an error stack: Failed to call function 'f' caused by Space 'mref' not found. Error stacking is already supported, but it...
It can be fixed after merging this PR https://github.com/tarantool/cartridge-java/pull/438 . But need to be tested. @seet61 can you give more details about requests? what types of requests? how many of...
### space operations (IPROTO_SELECT, IPROTO_INSERT and etc.) We have correctly varbinary work with space iproto methods without touching the lua world(i.e. not IPROTO_EVAL/CALL) (you can see the correct work here...
For request timeout we have requestTimeout, but read timeout isn't being used in code
@akudiyar thoughts >Raw idea: we should define a "tagging" API for mappers (e.g. a hashcode for the whole stack) that we can use for caching >the other mappers. Using such...
Proposal how it could be ```diff public TarantoolResultMapper withArrayValueToTarantoolTupleResultConverter( ArrayValueToTarantoolTupleConverter tupleConverter) { - return withConverterWithoutTargetClass( - messagePackMapper.copy(), - ValueType.ARRAY, - new ArrayValueToTarantoolTupleResultConverter(tupleConverter) - ); + return withConvertersWithoutTargetClass(messagePackMapper.copy(), Arrays.asList( + new...