การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้
เรียนรู้ว่าการแบ่งพาร์ทิชันแบบแฮชของ PostgreSQL กระจายแถวข้อมูลอย่างสม่ำเสมอไปยังพาร์ทิชันจำนวนคงที่โดยใช้แฮชของคีย์อย่างไร ซึ่งเหมาะสำหรับการกระจายโหลดโดยไม่มีช่วงค่าตามธรรมชาติ
การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้ เป็นบทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication ฟรีบน CoddyKit นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
When Range and List Do Not Fit
Range partitioning suits dates; list partitioning suits known categories. But what if you just want even distribution with no natural boundaries?
That is where hash partitioning shines.
What Is Hash Partitioning?
Hash partitioning applies a hash function to the partition key and assigns each row to a partition based on the remainder, spreading rows evenly.
Declaring the Parent Table
Create the parent table partitioned BY HASH on a key column.
CREATE TABLE events (
id BIGINT,
user_id BIGINT,
payload TEXT
) PARTITION BY HASH (user_id);Creating Partitions
Each partition declares a modulus and remainder. With modulus 4 you create four partitions, remainders 0 to 3.
CREATE TABLE events_0 PARTITION OF events FOR VALUES WITH (MODULUS 4, REMAINDER 0);The Full Set
You must create partitions covering every remainder, otherwise some rows have nowhere to go.
CREATE TABLE events_1 PARTITION OF events FOR VALUES WITH (MODULUS 4, REMAINDER 1);
CREATE TABLE events_2 PARTITION OF events FOR VALUES WITH (MODULUS 4, REMAINDER 2);
CREATE TABLE events_3 PARTITION OF events FOR VALUES WITH (MODULUS 4, REMAINDER 3);How Rows Get Routed
On insert, PostgreSQL hashes user_id, takes the remainder modulo 4, and stores the row in the matching partition automatically.
Even Distribution
Because hashing scatters values, partitions stay roughly equal in size, avoiding the hot-partition problem that range partitioning can suffer.
Choosing the Modulus
The modulus equals your number of partitions. Pick it up front, since changing partition count later requires redistributing data.
Indexes per Partition
Create indexes on the parent and PostgreSQL propagates them to all partitions, keeping lookups fast within each shard.
CREATE INDEX ON events (user_id);Hash vs Range vs List
- Range: ordered boundaries (dates, numbers)
- List: discrete known values (regions)
- Hash: even spread when no natural grouping exists
Limitations
Hash partitioning gives no partition pruning for range queries on the key, since values are scattered. It helps point lookups and write distribution, not range scans.
Quick Check
Test your hash partitioning knowledge.
Recap
Hash partitioning spreads rows evenly across a fixed number of partitions using MODULUS and REMAINDER on a hashed key.
It is ideal for balancing writes and point lookups when there is no natural range or list, but it cannot prune partitions for range queries on the key.
คำถามที่พบบ่อย
บทเรียน “การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้”
เรียนรู้ว่าการแบ่งพาร์ทิชันแบบแฮชของ PostgreSQL กระจายแถวข้อมูลอย่างสม่ำเสมอไปยังพาร์ทิชันจำนวนคงที่โดยใช้แฮชของคีย์อย่างไร ซึ่งเหมาะสำหรับการกระจายโหลดโดยไม่มีช่วงค่าตามธรรมชาติ คุณปฏิบัติ Advanced PostgreSQL: Indexing, Partitioning, Replication ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Advanced PostgreSQL: Indexing, Partitioning, Replication บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 4 จากทั้งหมด 4 บทเรียน
บทเรียน “การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication นี้ได้ไหม
ได้ บทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- เหตุใดจึงต้องแบ่งพาร์ทิชัน
- การตั้งค่าการแบ่งพาร์ทิชันตามช่วง
- การใช้งานการแบ่งพาร์ทิชันแบบรายการ
- การนำการแบ่งพาร์ทิชันแบบแฮชไปใช้