- 274comments
- 7comments
- 255comments
- 114comments
- 83comments
- 266comments
- 9comments
- 20comments
- 18comments
- 44comments
- 1comments
- 162comments
- 2comments
- 65comments
- 2comments
- 14comments
- 119comments
- 23comments
- 91comments
- 6comments
- 11comments
- 107comments
- 15comments
- 2comments
- 757comments
- 17comments
- 109comments
- 1comments
- 33comments
- 110comments
"Postgres SELECT DISTINCT Does Not Scale"
Correct. This is documented in depth: DISTINCT sorts the results first.
The article's use case seems to imply the author did not know about GROUP BY, nor does it imply the author knew about indexes, nor ANALYZE. Postgres 18's new skip scan indexing also could help here, so ensuring the planner chooses that could help.
Would GROUP BY fix the issue?
The article explains that skip scan doesn't do anything here.
Indexes were talked about a lot, and they explicitly mentioned looking at the query plan.
nope - either gets you a HashAggregate, GroupAggregate, or Unique depending on whether the column/input is indexed/ordered
The article seems to have changed since I commented.
Why don't he use GROUP BY on indexed columns was my first thought also.
I guess we just have to patiently wait for the OP to hopefully read Postgres documentation from postgreSQL 10.x before correcting the article again.
Does that fix it? Why would people be trying to add new index scanning modes if that's enough to fix it?
Someone else said it doesn't.
https://web.archive.org/web/20260814160231/https://www.dbos....
It had the same stuff a month ago.
Did you even read the article? They show that a perfect index for their query didnt help because Skip Scan is currently not used for DISTINCT queries.
The article seems to have changed since I commented.
Loose index scan is made for this https://dev.mysql.com/doc/refman/8.0/en/group-by-optimizatio...
Postgres doesn't have it yet https://wiki.postgresql.org/wiki/Loose_indexscan
As is mentioned in the article (now).
(since it was originally posted)
It says that the company is co-founded by Postgres creator. I find that bit hard to believe given that there is nothing novel in the article, probably discovery for them. I do understand that everyone has to go through their own journey to learn these things but at the same time when you are running business then seeking professional help isnt a bad idea.
Based on my experience queries like these cannot scale, whatever you do. However if you are already on a path where you had invested a lot in such queries then hire a DBA, if you are not far off then hire an architect to model the data for better performance.
Scale with what? If you have m distinct values in an index, then listing them this way takes m log(n) time, which is fine for many use cases no matter how much data you have.
The way the OP is trying to achieve all the goals by pushing the complexity on the queries/database is what I am referring to as non-scalable as data grows on SQL DB.
And NO the runtimes are not right away applicable on machines at scale. You are dealing with DB locks, page sizes, available memory, existing data in memory, queue depth. Experienced folks get paid to short circuit such learnings
Runtimes are usually pretty well applicable at scale, it’s just that most people don’t have a good intuition about asymptomatic notation. Constants and lower order terms matter a lot in practice but are hidden in asymptotic notation.
Selecting distinct values of a single column with a simple condition is hardly pushing complexity into the database.
It's Stonebraker, he has a history of doing this to sell shit to people who don't need it.
I've generally started to treat use of SELECT DISTINCT as a warning flag, as it's very common that it indicates bad code
Some use it because they don't understand uniqueness constraints and try to fix it in post so to say. Some use it because they forgot a join condition and are absolute amateurs. Some use it because it fixed a problem for them once and now they add it everywhere
These people seem to outnumber the people who use SELECT DISTINCT in a well thought out manner
It's definitely a warning flag if you're applying it to full-ish rows. This situation seems much more innocuous to me.