Running a query such as the following:
SELECT some_column FROM [myproject.mytable] LIMIT 1000
Over a dataset that is approximately 240 million rows (where the columns queryable size is less than 2GB) takes over 140 seconds to complete.
Is there something I can do to improve the tables query performance? Or am I missing something?
Edit:
Job id for reference: job__aamhffrd45gp6VEYDjQCK1JDH8
Edit 2:
Ive identified a pattern which is that it seems to be only the table that is currently being written to that is exceedingly slow, however this is still a large problem for me.
SELECT some_column FROM [myproject.mytable] a JOIN (SELECT id FROM [myproject.mytable] ORDER BY id LIMIT 1000, 10) as b ON b.id = a.id- Alexander