惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
H
Help Net Security
小众软件
小众软件
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
爱范儿
爱范儿
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
博客园_首页
Jina AI
Jina AI
D
Docker
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Shrinking the Footprint and Cleaning the Pipes
Matthew Gladding · 2026-06-26 · via DEV Community

Matthew Gladding

What we shipped on 2026-06-24

We finally stopped the flashing terminal windows on our desktop by wrapping DeployCheckoutSync in a VBS helper (run-hidden.vbs) to force SW_HIDE at the process level (PR #1917). It's a classic Windows quirk---WindowStyle Hidden isn't enough when child processes like git.exe or python.exe decide to call SetConsoleTitle and wake up the console API.

The biggest architectural win today was folding our embedding hygiene jobs into the declarative retention_policies framework (PR #1909). We were carrying around 2,550 lines of legacy job code that we just deleted. Now, tasks like embeddings_orphan_prune and embeddings_collapse are handled by a unified runner. We added a min_interval_hours column to the policies so these heavy collapse jobs run weekly instead of every 6 hours, which is much more sane for our resource budget. To make this usable without raw SQL, we shipped a new CLI subcommand poindexter retention config to patch the JSONB configs (PR #1911), paired with five new Grafana panels in integrations-admin to track orphan pruning and collapse rates.

We also spent some time lowering the barrier for entry with a minimal Docker Compose profile targeting 8-16GB VRAM hardware (PR #1924). By stripping out the heavy operator observability stack--specifically Langfuse, GlitchTip, and the Loki/Tempo/Pyroscope trio--we dropped idle RAM usage from over 20 GB down to about 4-6 GB. We downgraded Langfuse variables to optional and forced LANGFUSE_TRACING_ENABLED: "false" so the SDK stays quiet when keys are missing.

On the bug front, we found a few leaks in our featured image flow. The replace_image service was updating pipeline_versions.featured_image_url but forgetting to sync posts.featured_image_url, meaning live sites never actually updated (PR #1918). While fixing that, we caught a silly mistake where the Pexels API key was being read via .get() instead of .get_secret(), which returned None because secrets are excluded from the in-memory cache.

A few other tight fixes:

  • Added format=json to ChatOllama (PR #1914) because phi4:14b was wrapping JSON responses in markdown code fences, which crashed the Ragas output parser.
  • Fixed an UndefinedColumnError in poindexter pipeline list-paused by replacing a direct table query with a correlated subquery into pipeline_versions to correctly fetch task_metadata (PR #1916).
  • Resolved four mypy type errors, including a shadowing bug in _citation_match.py where an inner loop variable src was clashing with the outer source list (PR #1923).

We're also making progress on the video front, shipping both the infra half (PR #1902) and the generative source logic (PR #1895) for the Wan 2.2 TI2V-5B hero renderer.

The system feels leaner today. Between the RAM reductions and the retirement of thousands of lines of job code, Poindexter is becoming less of a monolith and more of a tool.

Auto-compiled by Poindexter from today's commits and PRs. See the work: github.com/Glad-Labs/poindexter.

Sources