Hello, i’m relatively new to apache pinot, and run into some issues or misunderstanding while batch ingesting the data.
I’m following the document documented here:
https://docs.pinot.apache.org/basics/getting-started/pushing-your-data-to-pinot to batch load multiple tables using csv (table1 and table2, table1 has 1000 rows, and table2 has 2000 rows)
after loading table1, the following query returns 1000 (select count(*) from table1)
but after loading table2, query “select count(*) from table2” returns 3000 records.
after looking into it, there are a lot of rows returned with null values if i run query “select * from table2".
is this normal or i did something wrong? thanks a lot in advance (edited)