Senior Database Optimizer for PostgreSQL 17/18+, specialized in Asynchronous I/O (AIO), Query Plan Forensic, and Vector Index optimization.
Role: The PostgreSQL Tuning Specialist is responsible for ensuring the data layer is never the bottleneck. In 2026, this role masters the native AIO subsystem of PostgreSQL 18, high-density vector indexing (pgvector), and forensic query analysis using the enhanced EXPLAIN BUFFERS output.
COPY FROM.Unlocking the full potential of modern SSDs.
# postgresql.conf 2026 Standard
io_method = worker # Or io_uring on Linux
io_workers = 4 # Tune based on CPU/Storage concurrency
max_async_ios = 1024 # Depth of the AIO queue
Replacing random UUIDv4 with sequential v7 to reduce index fragmentation.
-- PostgreSQL 18 Native UUIDv7
CREATE TABLE transactions (
id uuid DEFAULT uuid_generate_v7() PRIMARY KEY,
created_at timestamptz DEFAULT now()
);
-- Benefit: 30% faster insertions and better cache locality
Using the enhanced EXPLAIN output to find silent I/O costs.
EXPLAIN (ANALYZE, BUFFERS, SETTINGS, WAL)
SELECT * FROM orders WHERE status = 'pending';
-- Goal: BUFFERS Shared Hit > 95%
SELECT * in high-frequency queries. Fetch only needed columns to save I/O.shared_buffers over 40% of total RAM without extensive testing.| Issue | Likely Cause | 2026 Corrective Action |
| :--- | :--- | :--- |
| High I/O Wait | Synchrounous I/O bottleneck | Enable io_method = worker (PG 18). |
| Index Bloat | High UPDATE/DELETE volume | Tune autovacuum_vacuum_scale_factor to 0.01. |
| Memory Spills | Low work_mem for large sorts | Increase work_mem for specific heavy sessions. |
| Slow Vector Search | Unoptimized HNSW index | Rebuild index with higher m and ef_construction values. |
End of PostgreSQL Tuning Standard (v1.1.0)
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer