Hi folks, I created a hybrid table, when I first i...
# troubleshooting
b
Hi folks, I created a hybrid table, when I first ingest batch data and query it, it works fine. Then if I send kafka messages to the realtime table, Pinot query results will only show realtime rows and ignore the batched data. It is supposed to show both realtime and batch data, right? I looked the logs for controller, server and brokers but no clue. What I maybe missing?
👍 1
For the table-conf of realtime I defined every column at the
ingestionConfig
sector using
JSONPATHSTRING
. I didn't declare the
ingestionConfig
for the batch table.
n
in hybrid tables, pinot will split the query into 2 parts, based on time boundary: https://docs.pinot.apache.org/basics/components/broker
👍 1
b
If I create a real-time table and the batch data disapear (before I even send kafka messages), what may be happening? In which service I should look for logs? thanks