- I start my DSE node as Solr node i.e. /dse cassandra -s
- I then create KS and CF. My CF has KEY field only.
- I then publish Solr schema and solr config on it. My Solr schema has dynamic field which is indexed and multivalued.
- I then try to insert data into CAS on cql command prompt, something like below:-
insert into device (KEY, deviceid, qualifier0) VALUES (000000000000, '000000000000', ['v0', 'v1']);
it throw error, says - Invalid character '['.
Questions -
- Are multivalue fields supported in DSE?
- If yes then how can I use them?
Thanks.