By default in CASSANDRA , consistency level is one for all R/W operations. But when I am trying to import data into table via CSV I get this error :
Failed to import 7 rows: InvalidRequest - Error from server: code=2200 [Invalid query] message="Provided value ONE is not allowed for Write Consistency Level (disallowed values are: [ANY, ONE, LOCAL_ONE])"
why this level is not allowed ?
because when i set consistency as QUOROUM it worked for me. but why not with default consistency?