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

推荐订阅源

MyScale Blog
MyScale Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
V
Visual Studio Blog
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
L
LangChain Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
P
Proofpoint News Feed
博客园_首页
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure 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
Testing NGB Platform Beyond a Small Demo Dataset with k6 ...
NGB Platform · 2026-05-20 · via DEV Community

I recently released NGB Platform v1.1.1.

The main addition is the first NGB Performance Tests Framework.

This is not just a set of endpoint benchmarks.

NGB Platform is an open-source, metadata-driven business platform for building accounting-first industry solutions. The goal is not to build isolated CRUD applications, but complete business applications where documents, catalogs, accounting, audit history, workflows, reports, and background processes are part of the same architecture.

So performance testing has to follow the same idea.

It needs to test real platform behavior, not only isolated HTTP latency.

Why performance testing matters for NGB

In many applications, performance testing starts with a few simple endpoint checks.

That can be useful.

But it does not answer the most important questions for a business platform.

For NGB, the important questions are different:

  • Can users browse documents while other users are posting documents?
  • Can reports stay usable as data volume grows?
  • Can audit history remain readable under pressure?
  • Can accounting effects be opened quickly after posting?
  • Can document flow stay responsive?
  • Can the platform preserve business correctness while handling mixed read/write workloads?

NGB is accounting-first.

That means a posted document is not just a saved record.

It can produce:

  • Accounting entries
  • Audit records
  • Document relationships
  • Reportable business effects
  • Operational state changes

So performance testing has to cover business workflows.

Not just endpoints.

What was added in v1.1.1

NGB v1.1.1 adds a dedicated performance testing workspace based on:

  • Grafana k6
  • TypeScript
  • Reusable scenario profiles
  • Keycloak tester authentication
  • Custom metrics
  • Thresholds
  • Vertical-specific workload packages

The repository now includes:

performance-tests/
  ngb-performance-tests-framework/
  ngb-property-management-perf/
  ngb-trade-perf/
  ngb-agency-billing-perf/
  scripts/

Enter fullscreen mode Exit fullscreen mode

The most important part is the boundary.

The shared framework is vertical-neutral.

It knows platform concepts:

  • Auth
  • Health
  • Metadata
  • Catalogs
  • Documents
  • Reports
  • Accounting effects
  • Document flow
  • Audit
  • Scenarios
  • Metrics
  • Thresholds

It does not know Property Management, Trade, or Agency Billing.

Vertical packages define their own document types, catalog types, report IDs, fixtures, and workload mixes.

That separation matters.

I do not want performance testing to become another place where platform and vertical layers start leaking into each other.

The first serious validation run

For the first serious validation run, I used the NGB Property Management vertical.

The environment was intentionally local:

  • Local Docker deployment
  • PostgreSQL database around 19GB
  • Around 1.7M business documents
  • Around 27M audit log records

This is not a third-party audited benchmark.

It is not a claim of unlimited scale.

But it is an important production-readiness signal.

NGB is no longer tested only as a small demo dataset.

It now has repeatable performance workloads running against real platform behavior and non-trivial data volume.

What was tested

The performance framework includes multiple workload profiles.

Some of the important ones are:

  • Smoke
  • Baseline
  • Platform read
  • Platform reporting
  • Platform read capacity
  • Platform mixed capacity
  • Platform breakpoint
  • Document lifecycle
  • Audit
  • Maintenance
  • Concurrency
  • Business day
  • Write-heavy

The goal is not to run all of them every time.

Different profiles answer different questions.

Platform read capacity

This profile focuses on read-heavy platform behavior.

It helps validate whether common read paths stay stable under high concurrency.

Platform mixed capacity

This is one of the most important profiles.

It combines different types of platform activity instead of testing only one endpoint.

The workload includes document reads, platform reads, reporting, audit-related operations, accounting effects, document flow, and other common application behavior.

Write-heavy

This profile is more aggressive.

It exercises document create/update/post operations while the system is also reading accounting effects, audit history, document flow, and reports.

For an accounting-first platform, this is one of the most important scenarios.

Writes are not just writes.

They create durable business consequences.

Selected results

Here are selected results from the run set.

Mixed capacity

The mixed-capacity profile ran for around 80 minutes.

Results:

  • 9.5M+ requests
  • 1,000 peak virtual users
  • 0 dropped iterations
  • 0 business failures

This matters because the workload was not a single endpoint benchmark.

It exercised mixed platform behavior under sustained load.

Read capacity

The read-capacity profile pushed read pressure higher.

Results:

  • 10.8M+ requests
  • 1,400 peak virtual users
  • 0 dropped iterations
  • 0 business failures

The important signal here is the combination of request volume, concurrency, and correctness.

Not just one latency number.

Write-heavy workload

The write-heavy profile ran document lifecycle operations under pressure.

Results:

  • 1.75M+ requests
  • Document create/update/post activity
  • Accounting effects reads
  • Audit reads
  • Document flow reads
  • Report execution under write pressure
  • 0 dropped iterations
  • 0 business failures

This is the kind of workload that matters for NGB.

The platform needs to stay usable while documents are being created, posted, audited, explained, and reported on.

What I look at

For this framework, one metric is not enough.

I care about several signals together:

  • HTTP failure rate
  • Business operation failure rate
  • Dropped iterations
  • p95 latency
  • p99 latency
  • Checks
  • Thresholds
  • Report execution behavior
  • Operation-level breakdowns
  • Document post latency
  • Accounting effects latency
  • Audit latency
  • Document flow latency

A good result is not just:

The test finished.

A good result means:

  • No silent business failures
  • No dropped iterations for the target profile
  • No broken checks
  • No hidden vertical coupling in the shared framework
  • No report path that only works on a tiny dataset

For business software, performance is not only speed.

It is also correctness under pressure.

Why this matters for architecture

NGB is built around several platform-level ideas:

  1. Documents represent business intent

    Business operations are modeled as documents, not random database updates.

  2. Posting creates durable effects

    Posted documents can create accounting entries, audit records, operational state, and reportable business consequences.

  3. Auditability is part of the platform

    The system should explain what happened and why.

  4. Reports are connected to business truth

    Reporting is not just a separate dashboard layer.

  5. Verticals extend the platform

    Property Management, Trade, and Agency Billing should reuse the same platform capabilities without duplicating the core engine.

The performance framework follows the same architecture.

The shared framework tests platform concepts.

Vertical packages provide vertical-specific workloads.

That is the same boundary the runtime architecture is supposed to preserve.

What this does not claim

I want to be precise about the result.

This does not mean:

  • NGB has been certified by an external benchmark
  • NGB has unlimited scale
  • A local Docker run is the same as a production Kubernetes deployment
  • Every possible workload has been tested

That would be an overclaim.

What it does mean is more practical:

NGB is now tested beyond a toy demo dataset.

It has repeatable performance workloads for real platform behavior.

It can validate documents, posting, audit, accounting effects, document flow, reports, and mixed read/write scenarios against meaningful data volume.

That is a much stronger foundation than only saying:

It works on my machine.

Links

GitHub:

https://github.com/ngbplatform/NGB

Release:

https://github.com/ngbplatform/NGB/releases/tag/v1.1.1

Performance tests workspace:

https://github.com/ngbplatform/NGB/tree/main/performance-tests

Documentation:

https://docs.ngbplatform.com

Website:

https://ngbplatform.com

Final thought

Performance testing business software is not only about latency.

It is about confidence.

Confidence that the platform can preserve correctness under pressure.

Confidence that reports still work when data grows.

Confidence that audit history and document flow remain usable.

Confidence that posting does not become a black box.

NGB v1.1.1 is an important step in that direction.

The platform is no longer validated only by functional demos.

It now has a reusable performance testing framework for real business workloads.

That is the kind of foundation I want for building serious accounting-first business applications.