[cassandra3] Cannot page queries with both ORDER BY and a IN restriction on the partition key; you must either remove the ORDER BY or the IN and sort client side, or disable paging for this query 해결하기
cassandra 2017. 8. 8. 15:29카산드라(cassandra)에서 IN과 ORDER BY를 함께 싸용하면 다음과 같은 에러가 발생할 수 있다.
(참고로 ORDER BY 다음에는 클러스터링 키를 사용함으로서, 원하는 대로 파티션 키와 상관없이 생성 시간을 내림차순으로 결과를 얻을 수 있다)
InvalidRequest: Error from server: code=2200 [Invalid query] message="Cannot page queries with both ORDER BY and a IN restriction on the partition key; you must either remove the ORDER BY or the IN and sort client side, or disable paging for this query"
이 때에는 PAGING OFF라는 커맨드를 사용하면 에러가 발생하지 않고 정상적으로 동작한다.
'cassandra' 카테고리의 다른 글
[cassandra3] select now() (0) | 2017.08.09 |
---|---|
[cassandra3] schema 백업(backup)/복구(restore)하기 (0) | 2017.08.08 |
[cassandra3] 복합 기본 키(compound primary key) (0) | 2017.07.06 |
cassandra의 라이브러리를 사용한 UUID version1 테스트 (0) | 2017.07.06 |
[cassandra] null의 개념 (0) | 2017.07.03 |