InvalidQueryException: Frozen nested collections are not yet supported

0

Hi,

looks like frozen nested collection are not supported on AWS keyspaces.
Is there any documentation about this issue anywhere?
I could not find it in the AWS keyspaces - Apache cassandra compatibility notes.

alextk
feita há 3 anos401 visualizações
3 Respostas
0
Resposta aceita

Hey alextk, sorry to hear that you could not find the docs. We will continue to close gaps in supported apis/types. The following page list the current supported types.

https://docs.aws.amazon.com/keyspaces/latest/devguide/cassandra-apis.html

Could you share your model for the table and your queries?

respondido há 3 anos
0

What is the suggested alternative from AWS keyspaces instead of Frozen? If I am not wrong, avoiding Frozen leads to enormous tombstone which makes sense in my use case where the whole collection data set is updated at once and not single item in the list. Someone, can throw more light on this?

sagarm
respondido há 3 anos
0

hi @sagarm
Amazon Keyspaces does not have the same performance tradeoffs for working with collections. Customers can change individual items in a collection or replace the entire collection without creating tombstones and degrading performance. Customers can expect single digit millisecond operations on row access.

depending on the collection type you can create a high carnality key so the structure gets flattened.

Nested structure

{'key':{'nestedkey':'nestedvalye'}}

to flattened structure

{'key#nestedkey':'nestedvalue'}

Alternatively, If you are replacing the entire collection on every update, then a blob will work in a similar way.

respondido há 3 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas