Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列ファミリーと行キーを使用してCassandraから行を取得したい。ただし、SliceQueryを使用すると、例外が発生します。原因:me.prettyprint.hector.api.exceptions.HectorException:列名も範囲も設定されていません。これは無効なスライス述語です。
私が間違ったクエリ実装を使用したかどうか誰かが知っていますか?
これにより、行全体が表示されます。
SliceQuery query = HFactory.createSliceQuery(_keyspace, _stringSerializer, _stringSerializer, _stringSerializer); query.setColumnFamily(columnFamily) .setKey(key) .setRange("", "", false, Integer.MAX_VALUE);