Implement semantic search using text embeddings for more relevant results than keyword matching.
Tag: data-engineering
Tips and Tricks #220: Use dbt for Maintainable Data Transformations
Build modular, tested, documented data transformations with dbt.
Tips and Tricks #219: Partition Large Tables for Query Performance
Use table partitioning to dramatically speed up queries on large datasets.
Tips and Tricks #218: Implement Idempotent ETL with Merge Statements
Use MERGE (upsert) for safe, rerunnable data pipelines that handle duplicates gracefully.
Tips and Tricks #193: Use Span for Zero-Allocation String Parsing
Eliminate heap allocations when parsing strings by using Span
Tips and Tricks #192: Implement Retry Logic for LLM API Calls
Handle rate limits and transient failures gracefully with exponential backoff.