Hi, I ran a batch ingestion using "pinot-admin.sh ...
# troubleshooting
n
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
Did you run it using docker or on your host?
d
Try increasing the timeout
n
@troywinter, it's on docker
@Daniel Lavoie, I'll try. thanks
d
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
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