Cassandra는 자동으로 스키마를 생성해주는 기능이 없다. 테이블을 먼저 생성해야 한다. 데이터 타입 text int 32-bit integers bigint 64-bit integers float double boolean true / false timestamp uuid blob binary data varint arbitrarily large integers list, set, map, tuple과 같은 커스텀 데이터 타입도 등록할 수 있다. Primary Keys Simple Primary Keys entity 클래스에서 하나의 partition key 필드로 구성 Composite Keys 하나 이상의 primary key 필드로 구성 Apache Cassandra Spring Data에서 ..