https://pinot.apache.org/ logo
n

Neer Shay

02/01/2021, 8:54 AM
Hi, I ran a batch ingestion using "pinot-admin.sh LaunchDataIngestionJob" which seems to have completed successfully. In Pinot UI, I see that the reported size of the table is 17895109 (was empty before) so it seems the data was ingested properly. *Yet when I go to query console and do a simple "select * from mytable limit 10", I get no results and it says numDocsScanned=0, totalDocs=0.* Has anyone encountered something similar? how can I debug this?
t

troywinter

02/01/2021, 11:48 AM
Did you run it using docker or on your host?
d

Daniel Lavoie

02/01/2021, 1:45 PM
Try increasing the timeout
n

Neer Shay

02/01/2021, 4:13 PM
@troywinter, it's on docker
@Daniel Lavoie, I'll try. thanks
d

Daniel Lavoie

02/01/2021, 4:14 PM
Default timeout is 10sec and current UI will not be very explicit about it being reached. 17 millions records with no specific optimization with a small JVM may cause queries to go over 10 seconds.
👍 1
n

Neer Shay

02/02/2021, 9:50 AM
After increasing the timeout, I ran into an nginx error which led me to find java.lang.NoSuchMethodError: java.nio.ByteBuffer.position(I)Ljava/nio/ByteBuffer. This was caused because I was running a custom distribution and had mismatching Java versions. Reverting to the default image resolved the issue