I want to compare the query speed between directly query inside Dremio and query using Python thought ODBC driver.
Given the same dataset, I did multiple query and found that Query using ODBC is much slower than query inside Dremio. Why?
What can be the factors that affect the query speed?
If you are trying to calculate total roundtrip time, external queries via ODBC/JDBC will be slightly slower because it needs to initiative a connection pool. Additionally, for external consumption, using our API is slightly faster than ODBC/JDBC as well.