We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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).
The text was updated successfully, but these errors were encountered:
Thanks. I'll keep an eye out for it. Feel free to post a message here when it's available.
Sorry, something went wrong.
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>
No branches or pull requests
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).
The text was updated successfully, but these errors were encountered: