Skip to content
Advertisement

PostgreSQL extremely slow on Where and Group comparing to MS SQL

After five days of trying to solve the performance problem of our database in PostgreSQL, I decided to ask you a help! One week ago we have decided to try to move our database with 60M records from MSSQL to PostgreSQL and our SQL below is extremely slow on PostgreSQL.

The execution plan

Execution plan URL https://explain.depesz.com/s/zLNI

The same SQL on MSSQL takes under 2 seconds but on PostgreSQL it takes even 10 seconds. The Log table contains about 60M records and "UserId" = 7841 AND "DateStamp" > '2019-01-01' AND "DateStamp" < '2020-02-26' where clause filters about 3M records.

The Table structure is below

The PostgreSQL server is 6CPU and 16GB of ram server comparing to our old MSSQL 2CPU and 8GB of RAM, as you see PostgreSQL has more computing resources but performs much worse. Both servers have SSD.

Maybe the problem is that PostgreSQL is not so advanced in a performance like MS SQL and nothing can be done here?

Advertisement

Answer

You can rephrase the query as:

Then, the query would greatly benefit from the index:

For further performance you can create a covering index:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement