Click or drag to resize

WriteFailureException Class

Represents a server-side failure (non-timeout) during a write query.
Inheritance Hierarchy
SystemObject
  SystemException
    CassandraDriverException
      CassandraQueryValidationException
        CassandraQueryExecutionException
          CassandraWriteFailureException

Namespace:  Cassandra
Assembly:  Cassandra (in Cassandra.dll) Version: 3.10.0
Syntax
C#
public class WriteFailureException : QueryExecutionException

The WriteFailureException type exposes the following members.

Constructors
  NameDescription
Public methodWriteFailureException
Creates a new instance of WriteFailureException.
Top
Properties
  NameDescription
Public propertyConsistencyLevel
Gets the consistency level of the operation
Public propertyFailures
Gets the number of nodes that experienced a failure while executing the request.
Public propertyReceivedAcknowledgements
Gets the number of replica that had acknowledged/responded to the operation
Public propertyRequiredAcknowledgements
Gets the minimum number of replica acknowledgements/responses that were required to fulfill the operation.
Public propertyWriteType
Gets the type of write operation that timed out.

Possible values: SIMPLE, BATCH, BATCH_LOG, UNLOGGED_BATCH and COUNTER.

Top
See Also