1

For example, would these attempts be recorded as part of a trace session in system_traces.sessions or system_traces.events?

Edit: The driver I'm using is called gocql

Tantillo
  • 367
  • 1
  • 5

1 Answers1

1

In the Java driver, there is a logging retry policy which can act as a parent policy for another retry policy - it should log the decision of retrying.

In the gocql driver though looking at the query executor, I cannot see an explicit log regardless of retry - only one of the retry mechanisms appears to have logging, the DowngradingConsistencyRetryPolicy. If debug is set it will log the downgrade.

Andrew
  • 26,629
  • 5
  • 63
  • 86