แบบสอบถามต่อไปนี้ในต่างประเทศใช้เวลาประมาณ 5 วินาทีในการดำเนินการกับ 3.2 ล้านแถว:
SELECT x."IncidentTypeCode", COUNT(x."IncidentTypeCode")
FROM "IntterraNearRealTimeUnitReflexes300sForeign" x
WHERE x."IncidentDateTime" >= '05/01/2016'
GROUP BY x."IncidentTypeCode"
ORDER BY 1;
เมื่อฉันเรียกใช้คิวรีเดียวกันในตารางปกติมันจะส่งคืนภายใน 0.6 วินาที แผนการดำเนินการแตกต่างกันมาก:
ตารางปกติ
Sort (cost=226861.20..226861.21 rows=4 width=4) (actual time=646.447..646.448 rows=7 loops=1)
Sort Key: "IncidentTypeCode"
Sort Method: quicksort Memory: 25kB
-> HashAggregate (cost=226861.12..226861.16 rows=4 width=4) (actual time=646.433..646.434 rows=7 loops=1)
Group Key: "IncidentTypeCode"
-> Bitmap Heap Scan on "IntterraNearRealTimeUnitReflexes300s" x (cost=10597.63..223318.41 rows=708542 width=4) (actual time=74.593..342.110 rows=709376 loops=1)
Recheck Cond: ("IncidentDateTime" >= '2016-05-01 00:00:00'::timestamp without time zone)
Rows Removed by Index Recheck: 12259
Heap Blocks: exact=27052 lossy=26888
-> Bitmap Index Scan on idx_incident_date_time_300 (cost=0.00..10420.49 rows=708542 width=0) (actual time=69.722..69.722 rows=709376 loops=1)
Index Cond: ("IncidentDateTime" >= '2016-05-01 00:00:00'::timestamp without time zone)
Planning time: 0.165 ms
Execution time: 646.512 ms
ตารางต่างประเทศ
Sort (cost=241132.04..241132.05 rows=4 width=4) (actual time=4782.110..4782.112 rows=7 loops=1)
Sort Key: "IncidentTypeCode"
Sort Method: quicksort Memory: 25kB
-> HashAggregate (cost=241131.96..241132.00 rows=4 width=4) (actual time=4782.097..4782.100 rows=7 loops=1)
Group Key: "IncidentTypeCode"
-> Foreign Scan on "IntterraNearRealTimeUnitReflexes300sForeign" x (cost=10697.63..237589.25 rows=708542 width=4) (actual time=1.916..4476.946 rows=709376 loops=1)
Planning time: 1.413 ms
Execution time: 4782.660 ms
ฉันคิดว่าฉันจ่ายราคาสูงสำหรับGROUP BY
ประโยคที่ไม่ได้ถูกส่งไปยังเซิร์ฟเวอร์ต่างประเทศเมื่อฉันEXPLAIN VERBOSE
:
SELECT
"IncidentTypeCode"
FROM
PUBLIC ."IntterraNearRealTimeUnitReflexes300s"
WHERE
(
(
"IncidentDateTime" >= '2016-05-01 00:00:00' :: TIMESTAMP WITHOUT TIME ZONE
)
)
ส่งคืนแถว 700k มีวิธีแก้ไขไหม?
ฉันใช้เวลามากอ่านหน้าเอกสารนี้เมื่อวานนี้และคิดว่าฉันได้พบคำตอบโดยตั้งค่าuse_remote_estimate
เป็นจริง แต่ก็ไม่มีผล
ฉันมีสิทธิ์เข้าถึงเซิร์ฟเวอร์ต่างประเทศเพื่อสร้างวัตถุหากจำเป็น ค่าการประทับเวลาในส่วนWHERE
คำสั่งสามารถเป็นอะไรก็ได้ มันไม่ได้มาจากรายการของค่าที่กำหนดไว้ล่วงหน้า
IntterraNearRealTimeUnitReflexes300sForeign
เทียบกับIntterraNearRealTimeUnitReflexes300s
และidx_incident_date_time_300
ฉันคิดว่า 300s นั้นเหมือนกัน แต่มันอาจคุ้มค่าที่จะตรวจสอบว่าidx_incident_date_time_300
ดัชนีนั้นมีอยู่บนเซิร์ฟเวอร์ต่างประเทศหรือไม่