Hi all new here to the pinot community and I am st...
# getting-started
k
Hi all new here to the pinot community and I am starting to play with ingesting data. I have a data set in parquet that is type STRING and ARRAY<STRING>... the documentation is a bit confusing as to handle this. My question based on the docs is when I define a schema does it mean that there is no definition for ARRAY and I should define it as a string and depend on the table config to transform the array into a json type field and use a json index? My goal is to do multiple filters based on elements in the array, in this situation would it be better to exploded the records before pushing it to pinot?
k
Use datatype as String and set isSongleValue to false in the schema
thankyou 2