โครงสร้าง DB แบบง่าย (สำหรับฟอรัมออนไลน์):
CREATE TABLE users (
id integer NOT NULL PRIMARY KEY,
username text
);
CREATE INDEX ON users (username);
CREATE TABLE posts (
id integer NOT NULL PRIMARY KEY,
thread_id integer NOT NULL REFERENCES threads (id),
user_id integer NOT NULL REFERENCES users (id),
date timestamp without time zone NOT NULL,
content text
);
CREATE INDEX ON posts (thread_id);
CREATE INDEX ON posts (user_id);
ประมาณ 80k รายการในusers
และ 2,6 ล้านรายการในposts
ตาราง แบบสอบถามง่ายๆนี้เพื่อให้ผู้ใช้ 100 คนแรกโดยโพสต์ของพวกเขาใช้เวลา2,4 วินาที :
EXPLAIN ANALYZE SELECT u.id, u.username, COUNT(p.id) AS PostCount FROM users u
INNER JOIN posts p on p.user_id = u.id
WHERE u.username IS NOT NULL
GROUP BY u.id
ORDER BY PostCount DESC LIMIT 100;
Limit (cost=316926.14..316926.39 rows=100 width=20) (actual time=2326.812..2326.830 rows=100 loops=1)
-> Sort (cost=316926.14..317014.83 rows=35476 width=20) (actual time=2326.809..2326.820 rows=100 loops=1)
Sort Key: (count(p.id)) DESC
Sort Method: top-N heapsort Memory: 32kB
-> HashAggregate (cost=315215.51..315570.27 rows=35476 width=20) (actual time=2311.296..2321.739 rows=34608 loops=1)
Group Key: u.id
-> Hash Join (cost=1176.89..308201.88 rows=1402727 width=16) (actual time=16.538..1784.546 rows=1910831 loops=1)
Hash Cond: (p.user_id = u.id)
-> Seq Scan on posts p (cost=0.00..286185.34 rows=1816634 width=8) (actual time=0.103..1144.681 rows=2173916 loops=1)
-> Hash (cost=733.44..733.44 rows=35476 width=12) (actual time=15.763..15.763 rows=34609 loops=1)
Buckets: 65536 Batches: 1 Memory Usage: 2021kB
-> Seq Scan on users u (cost=0.00..733.44 rows=35476 width=12) (actual time=0.033..6.521 rows=34609 loops=1)
Filter: (username IS NOT NULL)
Rows Removed by Filter: 11335
Execution time: 2301.357 ms
ด้วยset enable_seqscan = false
ยิ่งแย่กว่านั้น:
Limit (cost=1160881.74..1160881.99 rows=100 width=20) (actual time=2758.086..2758.107 rows=100 loops=1)
-> Sort (cost=1160881.74..1160970.43 rows=35476 width=20) (actual time=2758.084..2758.098 rows=100 loops=1)
Sort Key: (count(p.id)) DESC
Sort Method: top-N heapsort Memory: 32kB
-> GroupAggregate (cost=0.79..1159525.87 rows=35476 width=20) (actual time=0.095..2749.859 rows=34608 loops=1)
Group Key: u.id
-> Merge Join (cost=0.79..1152157.48 rows=1402727 width=16) (actual time=0.036..2537.064 rows=1910831 loops=1)
Merge Cond: (u.id = p.user_id)
-> Index Scan using users_pkey on users u (cost=0.29..2404.83 rows=35476 width=12) (actual time=0.016..41.163 rows=34609 loops=1)
Filter: (username IS NOT NULL)
Rows Removed by Filter: 11335
-> Index Scan using posts_user_id_index on posts p (cost=0.43..1131472.19 rows=1816634 width=8) (actual time=0.012..2191.856 rows=2173916 loops=1)
Planning time: 1.281 ms
Execution time: 2758.187 ms
จัดกลุ่มตามusername
หายไปใน Postgres เพราะไม่จำเป็น (SQL Server บอกว่าฉันต้องจัดกลุ่มตามusername
หากฉันต้องการเลือกชื่อผู้ใช้) การจัดกลุ่มกับusername
เพิ่ม ms เล็กน้อยให้กับเวลาดำเนินการบน Postgres หรือไม่ทำอะไรเลย
สำหรับวิทยาศาสตร์ผมได้ติดตั้ง Microsoft SQL Server ไปยังเซิร์ฟเวอร์เดียวกัน (ซึ่งวิ่ง ArchLinux, Xeon 8 หลัก 24 GB RAM, SSD) และอพยพข้อมูลทั้งหมดจาก Postgres - เดียวกันโครงสร้างตารางเดียวกันดัชนีเดียวกันข้อมูล ข้อความค้นหาเดียวกันเพื่อให้ผู้โพสต์ 100 อันดับแรกทำงานใน0.3 วินาที :
SELECT TOP 100 u.id, u.username, COUNT(p.id) AS PostCount FROM dbo.users u
INNER JOIN dbo.posts p on p.user_id = u.id
WHERE u.username IS NOT NULL
GROUP BY u.id, u.username
ORDER BY PostCount DESC
ให้ผลลัพธ์ที่เหมือนกันจากข้อมูลเดียวกัน แต่ทำได้เร็วขึ้น 8 เท่า และเป็นรุ่นเบต้าของ MS SQL บน Linux ฉันเดาว่ามันจะทำงานบน "บ้าน" OS - Windows Server - มันอาจเร็วกว่านี้
แบบสอบถาม PostgreSQL ของฉันผิดทั้งหมดหรือ PostgreSQL นั้นช้าหรือไม่
ข้อมูลเพิ่มเติม
เวอร์ชันเกือบเป็นรุ่นใหม่ล่าสุด (9.6.1 ปัจจุบันเป็นรุ่นล่าสุด 9.6.2, ArchLinux เพิ่งมีแพ็คเกจล้าสมัยและอัปเดตช้ามาก) Config:
max_connections = 75
shared_buffers = 3584MB
effective_cache_size = 10752MB
work_mem = 24466kB
maintenance_work_mem = 896MB
dynamic_shared_memory_type = posix
min_wal_size = 1GB
max_wal_size = 2GB
checkpoint_completion_target = 0.9
wal_buffers = 16MB
default_statistics_target = 100
EXPLAIN ANALYZE
ผลลัพธ์: https://pastebin.com/HxucRgnk
พยายามทำดัชนีทั้งหมดที่ใช้แม้แต่ GIN และ GIST วิธีที่เร็วที่สุดสำหรับ PostgreSQL (และ Googling ยืนยันด้วยหลายแถว) คือการใช้การสแกนตามลำดับ
MS SQL Server 14.0.405.200-1, conf เริ่มต้น
ฉันใช้สิ่งนี้ใน API (ด้วยการเลือกแบบธรรมดาโดยไม่ต้องวิเคราะห์) และเรียกจุดปลายทาง API นี้ด้วยโครเมี่ยมว่าใช้เวลา 2500 มิลลิวินาที + - เพิ่ม 50 มิลลิวินาทีของ HTTP และเว็บเซิร์ฟเวอร์ค่าใช้จ่ายเหนือศีรษะ (API และ SQL ทำงานบนเซิร์ฟเวอร์เดียวกัน) - มันเหมือนกัน. ฉันไม่สนใจประมาณ 100 ms ที่นี่หรือที่นั่นสิ่งที่ฉันสนใจคือสองวินาที
explain analyze SELECT user_id, count(9) FROM posts group by user_id;
ใช้เวลา 700 ms ขนาดของposts
ตารางคือ 2154 MB
GROUP BY u.id
เป็นสิ่งนี้GROUP BY p.user_id
และลองสิ่งนั้นได้ไหม? ฉันเดาว่า Postgres จะเข้าร่วมกลุ่มแรกและกลุ่มที่สองเพราะคุณจัดกลุ่มตามตัวระบุตารางผู้ใช้แม้ว่าคุณจะต้องการเพียงโพสต์ user_id เพื่อให้ได้แถว N - แถวบนสุด
posts
ตารางโดยใช้ตารางแบบCREATE TABLE post_content (post_id PRIMARY KEY REFERENCES posts (id), content text);
นั้นส่วนใหญ่ของ I / O ที่ 'เสีย' ในการค้นหาประเภทนี้อาจไม่ได้รับการยกเว้น หากโพสต์เล็กกว่านี้การVACUUM FULL
เปิดposts
จะช่วยได้