jillesvangurp / kt-search

Multi platform kotlin client for Elasticsearch & Opensearch with easily extendable Kotlin DSLs for queries, mappings, bulk, and more.
MIT License
100 stars 22 forks source link

Make RoundRobinNodeSelector thread-safe #25

Closed lddelchev closed 1 year ago

lddelchev commented 1 year ago

Fix for concurrency issue in the node selector. Addressing issue https://github.com/jillesvangurp/kt-search/issues/23

lddelchev commented 1 year ago

The @ThreadLocal annotation has effect only in Kotlin/Native platform. Introducing another solution.

jillesvangurp commented 1 year ago

Thanks for this!