Hello, Is there any advice for Pinot schema desig...
# general
t
Hello, Is there any advice for Pinot schema design? Do I want to create multiple tables, one for each entity and metrics that I want to query, or should I define one big table with all dimensions and metrics?
x
Pinot is a columnar store, so a big table is recommended
t
Thank you.