Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency dbutils to 1.8 #64

Closed
deenar opened this issue Feb 12, 2020 · 2 comments
Closed

Update dependency dbutils to 1.8 #64

deenar opened this issue Feb 12, 2020 · 2 comments
Labels
dependencies Pull requests that update a dependency file

Comments

@deenar
Copy link

deenar commented Feb 12, 2020

Dbutils 1.7 isn't thread safe. https://issues.apache.org/jira/browse/DBUTILS-135. A fix is available in DbUtils 1.8 (due to be released shortly).

@timmolter
Copy link
Member

Thanks. I'll keep an eye out for it. Feel free to post a message here when it's available.

@timmolter timmolter added the dependencies Pull requests that update a dependency file label Feb 15, 2020
@deenar
Copy link
Author

deenar commented Feb 18, 2020

For those who want to use Yank in a multi-threaded scenario one can downgrade dbutils to 1.6, see below. it is binary compatible.

  <groupId>org.knowm</groupId>
  <artifactId>yank</artifactId>
  <version>3.3.3</version>
  <exclusions>
    <exclusion>
      <groupId>commons-dbutils</groupId>
      <artifactId>commons-dbutils</artifactId>
    </exclusion>
  </exclusions>
</dependency>
<dependency>
  <groupId>commons-dbutils</groupId>
  <artifactId>commons-dbutils</artifactId>
  <version>1.6</version>
</dependency>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

No branches or pull requests

2 participants