You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This appears to work fine. The batch statement is executed properly, however the warning message is always logged to stdout.
Two parts to the question:
A) Is this a good approach, or is there a better way to run Cassandra batch statements?
B) Assuming this approach is fine, can we replace the println used in the discoverFromAst method with a standard logging framework so that it can be configured to be hidden? It's appearing constantly in my logs and confusing people.
Thanks!
@getquill/maintainers
The text was updated successfully, but these errors were encountered:
Version:
4.6.1
Module:
quill-cassandra
Database:
cassandra
I'm trying to use Cassandra's batch statements and I'm getting a warning logged, for example:
[WARN] Found more then one type of Query: Queue(Insert, Insert, Insert, Insert). Using 1st one!
which comes from here.
I build the batch statement using this
buildBatch
method:And then run it like so:
This appears to work fine. The batch statement is executed properly, however the warning message is always logged to stdout.
Two parts to the question:
A) Is this a good approach, or is there a better way to run Cassandra batch statements?
B) Assuming this approach is fine, can we replace the
println
used in the discoverFromAst method with a standard logging framework so that it can be configured to be hidden? It's appearing constantly in my logs and confusing people.Thanks!
@getquill/maintainers
The text was updated successfully, but these errors were encountered: