தர்க்க பிரதிகரணம் (Logical replication) குறிப்பிட்ட அட்டவணைகளின் (publish/subscribe மாதிரியைப் பயன்படுத்தி) தரவு மாற்றங்களை பிரতিக்கரணம் செய்கிறது, இது இயற்பியல் (streaming) பிரதிகரணம் போல் முழு தரவுத்தளக் கொத்தை பைட்-பைট் வகையில் நகலெடுக்க வேண்டியதில்லை. இது நমনীயத்தை செய்கிறது — தேர்ந்தெடுக்கக்கூடிய, பதிப்பு-குறுக்கு, மற்றும் வெவ்வேறு வரைபடங்களுக்கு — இது இடம்பெயர்வுகள் மற்றும் ஒருங்கிணைப்புக்கு சிறந்ததாக உள்ளது.
தர্க்க பனவ இயற்பியல் பிரতிக்கரணம்
PHYSICAL (streaming) → replicates the ENTIRE cluster at the storage/WAL level
✓ exact copy, simple ✗ all-or-nothing, same Postgres version, read-only replica
LOGICAL → replicates specific TABLES' changes via a publish/subscribe model
✓ SELECTIVE (choose tables), CROSS-VERSION, to DIFFERENT schemas, replica is WRITABLE
✗ more setup, some limitations (DDL not replicated automatically, etc.)
