I would like to store JSON data in a column and have it analyzed by the DSE search as a document and not as a text field.
I cannot coerce the JSON docs into a table because they do not follow a common schema (or any reasonably sized set of schema)
What I have currently is a working wildcard search over a large text field which performs poorly and does not allow for more sophisticated queries.
I have read that SOLR supports nested documents but the documentation is not enough to be applied to DSE. There seems to be no SOLR field type for nested docs and I have no idea how to apply restrictions to object names like _childDocuments_
as seen here
Is it possible to have DSE search handle fields/columns as separate or nested documents and if yes, how do I configure and use it?
Thank you