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

推荐订阅源

D
Docker
月光博客
月光博客
B
Blog RSS Feed
C
Check Point Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
GbyAI
GbyAI
H
Help Net Security
Y
Y Combinator Blog
I
InfoQ
雷峰网
雷峰网
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
美团技术团队
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
A
About on SuperTechFans
G
Google Developers Blog
爱范儿
爱范儿
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
人人都是产品经理
人人都是产品经理

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
Why a Failed Rebalance Returns to STARTING Instead of CAN...
Michael · 2026-05-13 · via DEV Community

Michael

When a rebalance operation fails on a table that is in RUNNING state, GBase 8a moves the table back to STARTING — not to CANCELED. This behavior reveals a deliberate state‑machine design: automatic retry and self‑healing.

State Transition Rules

  • Execution failure: RUNNING → failure → STARTING
  • Explicit cancel: STARTING / RUNNING / PAUSED → cancel command → CANCELED

Design Logic

Distinguishing "Cancel" from "Failure"

  • CANCELED is the result of an explicit CANCEL REBALANCE command issued by a user or administrator — the task is intentionally aborted.
  • STARTING is the result of an unexpected internal error (network glitch, temporarily unavailable node, resource shortage) — the task is interrupted but the system wants to retry.

The core distinction: CANCELED is a command, while STARTING signals a fault. They have different causes, so they lead to different states.

Automatic Retry and Self‑Healing

Reverting to STARTING means the system hasn't given up. STARTING is the "ready" state where tasks enter the execution queue. The background scheduler will later pull the task back into RUNNING and try again. This built‑in retry mechanism increases tolerance for transient failures and reduces the need for manual intervention in a gbase database.

Ensuring Eventual Consistency

Rebalance is critical for even data distribution after scaling. Failure must not permanently stop it. Returning to STARTING guarantees the task will eventually complete, keeping the cluster's data layout consistent. If failure led directly to CANCELED, data distribution could remain incomplete and require a manual restart, adding operational risk.

A Clean, Deterministic State Machine

The transition rules are simple and deterministic:

  • External commands drive pause/continue/cancel.
  • Internal flow drives execution start, successful completion, or failure‑retry.

This avoids cluttering the state machine with special states for every possible failure scenario, making it easy to understand and maintain.

Summary

The RUNNING → failure → STARTING path shows that the rebalance state machine prioritizes task completion, automatic recovery, and clear intent separation. It's a robust design pattern for distributed systems, where temporary hiccups are expected and should be handled without human intervention.