Releases: ydb-platform/ydb-nodejs-sdk
Releases · ydb-platform/ydb-nodejs-sdk
v5.8.0
v5.7.0
v5.6.0
v5.5.3
v5.5.2
v5.5.1
v5.5.0
5.5.0 (2024-09-30)
Features
- add retrier to the topics (03fc7f9)
Retrayer is added both for atomic methods and streams of Topic client.
If errors occur when executing, for example, await db.topic.createTopic(...), for which it is allowed to repeat as for idempotent operations, then the operation is repeated automatically under the hood. if you want to limit the time of repeated attempts, you should use Context.
If the connection is broken while writing messages. The internal stream is automatically re-established and the messages that are in the SDK queue are keep transmitted.
For reading the internal connection is restored also automatically, but previously received messages, if they were not committed, can not be committed further - you need to wait for their arrival again from new internal stream.