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

推荐订阅源

量子位
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Y
Y Combinator Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
博客园 - 司徒正美
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
L
LangChain 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
Expanding a GBase 8a Cluster: Adding a GNode in Practice
Michael · 2026-05-04 · via DEV Community

Michael

As data grows, you'll likely need to add nodes to your existing GBase 8a MPP cluster without downtime. This hands‑on guide walks through the full process of adding a composite GNode to a running GBASE cluster.

Prerequisites

  • Existing cluster: A healthy GBase 8a cluster
  • New node: A server with a static IP address configured
  • Network: All nodes must be able to communicate with each other

Step‑by‑Step

Step 1: Stop the Cluster

Stop services on all existing nodes to guarantee data consistency during the expansion:

gcadmin all stop

Enter fullscreen mode Exit fullscreen mode

Step 2: Configure the New Node's Network

Set up a static IP on the new machine and verify connectivity:

ping 172.16.5.172

Enter fullscreen mode Exit fullscreen mode

Step 3: Set Up the System Environment

On the new node, perform the following:

  • Create the gbase user and group
  • Tune system and kernel parameters
  • Run the SetSysEnv.py environment script
  • Configure passwordless SSH

Step 4: Edit the Installation Config

Update demo.options with the new node's details:

NEW_NODE_IP=172.16.5.178
NODE_ROLE=gnode
CLUSTER_NAME=my_gcluster

Enter fullscreen mode Exit fullscreen mode

Accept the license agreement and confirm the target node when prompted by the installer.

Step 5: Install and Join the Cluster

Once the software deployment completes automatically, add the node to the cluster:

# Register the node
gcadmin addNode --host=172.16.5.178 --role=gnode

# Verify the node status
gcadmin show cluster

Enter fullscreen mode Exit fullscreen mode

Important Reminders

  • Backup first: Always back up data before expanding.
  • Version match: Ensure the new node runs the same software version as the cluster.
  • Resource planning: Allocate storage and memory appropriately.
  • Network latency: Keep latency between new and existing nodes within acceptable limits.

Verification

After the expansion, confirm everything is healthy:

# Cluster status
gcadmin all status

# Node connectivity
gcadmin show nodes

# Data distribution
gbase -e "show distribution"

Enter fullscreen mode Exit fullscreen mode

Following these steps, you'll have a smoothly scaled out gbase database cluster — ready to absorb continued data growth with GBASE's distributed engine.