Skip to main content

19 docs tagged with "advanced"

View all tags

Advanced SQL

Window functions, CTEs, subqueries, recursive queries, lateral joins, pivot/unpivot, and advanced SQL patterns.

Ansible Comprehensive Guide & Cookbook

An exhaustive, 1000-line deep dive into Ansible covering Architecture, Playbooks, Jinja2, custom module Python code, and execution strategies with full examples.

Git Hooks — Automating Quality Checks

**Git hooks** are scripts that Git automatically executes before or after specific events (commit, push, merge, etc.). They live in `.git/hooks/` and can be.

Helm — Package Manager for Kubernetes

Complete Helm guide — charts, templates, values, release management, chart repositories, creating your own charts, Helmfile, and best practices for managing Kubernetes applications with Helm.

Kafka Connect

**Kafka Connect** is a framework for **reliably moving data between Kafka and external systems** (databases, file systems, cloud services) without writing.

Kafka Streams — Complete Deep Dive

A comprehensive guide to Kafka Streams: from core concepts and internal architecture to stateful processing, failure recovery, and production system design patterns. Built for new learners and senior engineers alike.

Message Ordering with Partition Keys

Kafka guarantees **total ordering within a partition**. Messages written to the same partition are always consumed in the exact order they were produced.

Processing and Ordering

Kafka guarantees ordering within a partition, but single-threaded processing limits throughput. This guide covers four patterns for achieving high throughput while preserving per-key ordering.

Schema Registry

**Schema Registry** is a centralized repository for managing and validating schemas for Kafka messages. It ensures that producers and consumers agree on the.

Spring Boot — Advanced Topics

Advanced Spring Boot topics covering security, performance tuning, reactive systems, deployment, and production-ready design.

Spring Framework: Deep Dive

Advanced Spring Framework guide covering bean lifecycle, AOP, data access, reactive programming, and batch processing.