Am testing out Google BigQuery to replace traditional databases we have used in the past (PostgreSQL / MySQL) but have found the performance to be extremely (and oddly) slow.
Uploaded a ~6mb dataset (~44,000 rows) to test.
Tried to run a few simple queries:
SELECT Sub_Category, COUNT(*) AS COUNT
FROM rnd-projects-247203.test.data
GROUP BY Sub_Category
Can someone help explain to me why such a simple query on a small dataset takes over 20 seconds to run? Have I done something wrong in the setup / need to do something differently?
Thanks!
Added: Execution details expanded under S00
Data is sourced and loaded in from a Google Drive .csv file