Skip to content

Widhian Bramantya

coding is an art form

Menu
  • About Me
Menu
postgresql

Smart Automation in PostgreSQL: Managing Time-Based Data with pg_partman and pg_cron

Posted on October 9, 2025October 8, 2025 by admin

Modern systems often deal with continuous data streams: logs, metrics, transactions, or sensor readings. Over time, these tables grow huge and slow down queries and backups. To keep performance high and storage clean, we need automation both in how data is stored (partitioning) and maintained (scheduling). That’s where pg_partman and pg_cron come in. Together, they…

Pages: 1 2
Read more
postgresql

Understanding PostgreSQL WAL, Slot, Publication, LSN, and Replication Lag

Posted on October 8, 2025October 8, 2025 by admin

In a previous article, PostgreSQL Write-Ahead Log (WAL): Durability, Performance Tuning, and Recovery Explained, we explored how PostgreSQL ensures data durability and crash recovery through its Write-Ahead Log mechanism. That discussion focused on how every change in the database is first written to WAL before being applied to the data files, the foundation of PostgreSQL’s…

Pages: 1 2
Read more
postgresql

PostgreSQL Write-Ahead Log (WAL): Durability, Performance Tuning, and Recovery Explained

Posted on October 8, 2025October 8, 2025 by admin

PostgreSQL is known for its reliability, it keeps your data safe even during crashes or power failures.The secret behind this reliability is a core feature called WAL (Write-Ahead Log). In this article, we’ll explore how WAL works, how to tune it for performance, how it supports recovery, and how to monitor it effectively.

Pages: 1 2 3
Read more
postgresql

PostgreSQL Replication Deep Dive: From High Availability to Multi-Master Clusters

Posted on October 8, 2025October 8, 2025 by admin

PostgreSQL is one of the most reliable open-source databases. It provides strong consistency, good performance, and flexible replication features that support high availability (HA) systems. In this article, we will explore how PostgreSQL replication works, from simple master–replica setups to multi-master clusters and replication lag monitoring.

Pages: 1 2 3 4
Read more
elasticsearch

Finding Nearby Merchants in a Ride-Hailing App Using Elasticsearch Polygon Search

Posted on October 6, 2025October 5, 2025 by admin

Modern ride-hailing and food delivery apps rely heavily on location-based search. When a user opens the app, it must quickly find nearby drivers or restaurants, usually within a few kilometers.The faster the search, the better the user experience. Elasticsearch is not only for text search, it also supports geo-spatial queries that can find locations inside…

Pages: 1 2
Read more
elasticsearch

Advanced Text Search in Elasticsearch: N-Gram, Reverse, Fuzzy, and Search-as-you-type

Posted on October 6, 2025October 5, 2025 by admin

Modern search systems don’t just find exact matches, they understand partial words, typos, and phrases as you type. Elasticsearch makes this possible with a mix of analyzers and special queries like N-Gram, Reverse, Fuzzy, and Search-as-you-type. In this article, we’ll learn how these techniques work, when to use each, and how to combine them for…

Pages: 1 2 3
Read more
elasticsearch

Understanding and Customizing Analyzers in Elasticsearch

Posted on October 6, 2025October 5, 2025 by admin

When you search for text in Elasticsearch, the system doesn’t just compare exact words.It first processes your text, breaking it into tokens, lowercasing, removing stopwords, and sometimes even finding the root form of words. This process is handled by something called an analyzer. Understanding analyzers is the first step to building powerful and accurate search…

Pages: 1 2
Read more
elasticsearch

Log Management at Scale: Integrating Elasticsearch with Beats, Logstash, and Kibana

Posted on October 5, 2025October 5, 2025 by admin

Modern systems generate millions of logs every day, from API servers, databases, applications, and containers. Managing, searching, and visualizing all of these logs in real-time is not easy. This is where the ELK Stack, Elasticsearch, Logstash, and Kibana, comes in.When combined with Beats, it becomes one of the most powerful and flexible log management systems…

Pages: 1 2
Read more
elasticsearch

Index Lifecycle Management (ILM) in Elasticsearch: Automatic Data Control Made Simple

Posted on October 5, 2025October 5, 2025 by admin

When your Elasticsearch grows very large, managing all indices by hand becomes impossible.Old data takes space, slows down queries, and increases cost. Index Lifecycle Management (ILM) helps you automate this, deciding when to roll over, move, merge, freeze, or delete indices automatically. This article explains ILM in simple English, including the frozen phase and how…

Pages: 1 2
Read more
elasticsearch

Blue-Green Deployment in Elasticsearch: Safe Reindexing and Zero-Downtime Upgrades

Posted on October 5, 2025October 5, 2025 by admin

Reindexing or upgrading Elasticsearch can be risky when your system is already in production.If you change mappings, update analyzers, or move to a new version, stopping the cluster is not an option.That’s where the blue-green strategy helps, it allows you to build a new index (or cluster), test it, and switch traffic smoothly without downtime.

Pages: 1 2 3
Read more
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next

Linkedin

Widhian Bramantya

Recent Posts

  • Smart Automation in PostgreSQL: Managing Time-Based Data with pg_partman and pg_cron
  • Understanding PostgreSQL WAL, Slot, Publication, LSN, and Replication Lag
  • PostgreSQL Write-Ahead Log (WAL): Durability, Performance Tuning, and Recovery Explained
  • PostgreSQL Replication Deep Dive: From High Availability to Multi-Master Clusters
  • Finding Nearby Merchants in a Ride-Hailing App Using Elasticsearch Polygon Search
  • Advanced Text Search in Elasticsearch: N-Gram, Reverse, Fuzzy, and Search-as-you-type
  • Understanding and Customizing Analyzers in Elasticsearch
  • Log Management at Scale: Integrating Elasticsearch with Beats, Logstash, and Kibana
  • Index Lifecycle Management (ILM) in Elasticsearch: Automatic Data Control Made Simple
  • Blue-Green Deployment in Elasticsearch: Safe Reindexing and Zero-Downtime Upgrades
  • Maintaining Super Large Datasets in Elasticsearch
  • Elasticsearch Best Practices for Beginners
  • Implementing the Outbox Pattern with Debezium
  • Production-Grade Debezium Connector with Kafka (Postgres Outbox Example – E-Commerce Orders)
  • Connecting Debezium with Kafka for Real-Time Streaming
  • Debezium Architecture – How It Works and Core Components
  • What is Debezium? – An Introduction to Change Data Capture
  • Offset Management and Consumer Groups in Kafka
  • Partitions, Replication, and Fault Tolerance in Kafka
  • Delivery Semantics in Kafka: At Most Once, At Least Once, Exactly Once

Recent Comments

No comments to show.

Archives

  • October 2025
  • September 2025
  • August 2025
  • November 2021
  • October 2021
  • August 2021
  • July 2021
  • June 2021
  • March 2021
  • January 2021

Categories

  • Debezium
  • Devops
  • ElasticSearch
  • Golang
  • Kafka
  • Lua
  • NATS
  • PostgreSQL
  • Programming
  • RabbitMQ
  • Redis
  • VPC
© 2026 Widhian Bramantya | Powered by Minimalist Blog WordPress Theme