zapr-oss / druidry

Java based Druid Query Generator library
Apache License 2.0
193 stars 89 forks source link

change DruidJerseyClient to thread-safe #97

Open ethendev opened 5 years ago

ethendev commented 5 years ago

The connect() and close() methods in DruidJerseyClient class are not thread-safe, the query() method may throw an exception in a multi-threaded environment. 截图

I modified client with ThreadLocal, which is thread-safe in a multithreaded environment.