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
It seems that the current behaviour of the connector is to send records as fast as possible, without waiting for futures to complete.
This can lead to issues with some configurations.
For example simple test that sends 10k records failed unexpectedly when ran by github actions runner:
Error: io.connect.scylladb.integration.ScyllaDbSinkConnectorIT.insert Time elapsed: 32.609 s <<< ERROR!
org.apache.kafka.connect.errors.RetriableException: com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /0.0.0.0:9042 (com.datastax.driver.core.exceptions.BusyPoolException: [/0.0.0.0] Pool is busy (no available connection and the queue has reached its max size 256)))
at io.connect.scylladb.integration.ScyllaDbSinkConnectorIT.insert(ScyllaDbSinkConnectorIT.java:173)
Caused by: com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /0.0.0.0:9042 (com.datastax.driver.core.exceptions.BusyPoolException: [/0.0.0.0] Pool is busy (no available connection and the queue has reached its max size 256)))
at io.connect.scylladb.integration.ScyllaDbSinkConnectorIT.insert(ScyllaDbSinkConnectorIT.java:173)
Caused by: com.datastax.driver.core.exceptions.NoHostAvailableException: All host(s) tried for query failed (tried: /0.0.0.0:9042 (com.datastax.driver.core.exceptions.BusyPoolException: [/0.0.0.0] Pool is busy (no available connection and the queue has reached its max size 256)))
at io.connect.scylladb.integration.ScyllaDbSinkConnectorIT.insert(ScyllaDbSinkConnectorIT.java:173)
It seems that the current behaviour of the connector is to send records as fast as possible, without waiting for futures to complete.
This can lead to issues with some configurations.
For example simple test that sends 10k records failed unexpectedly when ran by github actions runner:
This is the method to which the exception points
Looks like it does not care about current number of "in flight" queries before executing another.
The text was updated successfully, but these errors were encountered: