August 2026 Summaries
7 posts from Cockroach Labs
Filter
Month:
Year:
Post Summaries
Back to Blog
CockroachDB introduces SQL-native lifecycle management for enterprise users authenticated through external identity providers such as Active Directory, Okta, LDAP, JWT, and OIDC, addressing the scalability limits of manually creating database accounts across large cluster fleets. Using PostgreSQL wire-protocol compatibility, existing drivers can pass external credentials without custom plugins, while HBA rules determine authentication methods and identity mapping. When enabled, just-in-time provisioning automatically creates a SQL user after successful first login and assigns an immutable PROVISIONSRC tag that records the identity source for auditing and targeted cleanup. On each subsequent login, CockroachDB can synchronize IdP group memberships to existing database roles, granting and revoking memberships so the identity provider remains the source of truth, although changes take effect at the next authentication. Estimated login timestamps, filtered SHOW USERS or SHOW ROLES queries, and the DROP PROVISIONED ROLES command support reviews and batch removal of inactive externally provisioned accounts, with safeguards for dependencies, system roles, privileges, metadata cleanup, and audit events. These features are intended to reduce administrative overhead, limit access drift, and provide evidence supporting workflows related to frameworks including CIS, SOC 2, PCI DSS, SOX, and GDPR, without asserting compliance on their own.
Aug 28, 2026
4,667 words in the original blog post.
Temenos and Cockroach Labs are positioning Temenos Core on CockroachDB as a modernization option for banks seeking always-on, real-time, and resilient core banking operations amid legacy batch systems, costly outages, and stricter regulations such as the EU’s Digital Operational Resilience Act. Temenos Core, formerly T24 and Temenos Transact, provides cloud-native, microservices-based functions including high-volume transaction processing, multi-currency and multi-entity support, Close of Business processing, and API-based extensibility. CockroachDB contributes distributed SQL capabilities such as horizontal scaling, replicated high availability, serializable ACID transactions, hybrid and multi-cloud deployment options, data-sovereignty geo-partitioning, and PostgreSQL-compatible integration through Temenos’s TAFJ runtime. Joint testing on Kubernetes and Microsoft Azure processed 2 million transactions across 20,000 accounts, including high-volume and multi-currency workloads, and found near-linear scaling in tested configurations while concurrent transaction, HVT Merge Service, and Close of Business processes completed successfully. The companies plan further large-scale testing, deployment reference architectures, migration tools, multi-region patterns, and broader Temenos-suite integration, while noting that performance outcomes depend on configuration, infrastructure, and workloads.
Aug 24, 2026
1,309 words in the original blog post.
Google’s Agent2Agent (A2A) protocol, now governed through the Linux Foundation and supported by major cloud providers, standardizes how autonomous agents delegate tasks across vendors and organizations, while MCP connects individual agents to tools and AGENTS.md supplies repository instructions. The discussion argues that these complementary standards deliberately leave durable state, memory, transaction consistency, identity delegation, and cross-boundary auditability unresolved, making the underlying data layer central to reliable production multi-agent systems. Because independent agents may use different databases, permissions, and observability systems, workflows that involve shared writes can face concurrency conflicts, incomplete context, unclear ownership, excessive credential scope, and insufficient regulatory audit trails. Proposed approaches include governed shared context stores with strong consistency and database-level access controls, durable checkpoints for recovery, and task-scoped credentials that automatically expire, while noting that simpler single-organization, read-only, or disposable workflows may not require A2A or this additional infrastructure. The piece ultimately presents distributed SQL capabilities, including serializable isolation, resilience, and access enforcement, as potential foundations for managing agent state across organizational boundaries.
Aug 19, 2026
3,040 words in the original blog post.
Multi-tenant AI agents can magnify data-access failures because improperly retrieved information may enter an agent’s reasoning process and trigger downstream tool calls, API actions, or writes at machine speed, unlike traditional SaaS errors that are generally limited to a single response. Citing recent prompt-injection, privilege-escalation, and supply-chain incidents involving Salesforce Agentforce, ServiceNow, and Salesloft/Drift, the discussion argues that application-layer tenant filters alone are unreliable because developers, ORMs, dynamically generated queries, or attacker-controlled tool parameters can bypass or omit them. It presents database-enforced row-level security (RLS), particularly in CockroachDB shared-schema deployments, as a way to apply tenant-specific policies automatically to every query, provided applications set tenant context correctly and agent roles lack RLS-bypass privileges. The article also describes CockroachDB’s REGIONAL BY ROW placement as a means to keep each tenant’s data in a designated geographic region for residency requirements without separate regional clusters. It emphasizes that RLS is only one layer of agent security and does not prevent prompt injection within a tenant’s data, shared inference-cache or vector-store leaks, overly broad service accounts, or possible bypasses in specific database access paths, making least privilege, cache partitioning, tool controls, and validation necessary complementary protections.
Aug 11, 2026
2,443 words in the original blog post.
Financial AI agents operating under DORA, the EU AI Act, and GDPR require database infrastructure that can provide durable auditability, attributable actions, transaction integrity, operational resilience, and data-governance controls before deployment. The discussion argues that traditional logs often leave evidence, attribution, and state gaps because they fail to preserve decision inputs, reference-data versions, agent session identities, reasoning context, and immutable records needed to reconstruct actions. It emphasizes storage-layer append-only auditing, per-agent identity attribution, strong consistency, idempotency, compensating transactions for partial failures, and enforced data residency as important capabilities for regulated financial workloads. DORA, fully applicable since January 2025, affects ICT asset classification, incident reporting, third-party risk management, resilience testing, and recovery planning, while the EU AI Act establishes traceability and record-keeping expectations for high-risk systems, with relevant Annex III obligations delayed to December 2027. The text presents distributed SQL databases as a potential fit because they combine ACID transactions, serializable consistency, and horizontal scaling, while cautioning that these technical measures are preparation for compliance rather than a guarantee of it.
Aug 07, 2026
3,769 words in the original blog post.
Rising energy use, environmental concerns, and restrictions on terrestrial data centers have prompted interest in space-based computing, with proposed satellite constellations intended to use abundant solar power, radiative cooling, and unrestricted orbital real estate for AI workloads. While most attention has focused on GPUs and compute, the text argues that practical orbital applications would also require distributed databases to preserve state, coordinate operations, and maintain consistency despite satellite failures and changing network paths. It considers how systems such as CockroachDB and its Raft consensus protocol could distribute replicas across orbital planes, tolerate lost satellites, and support hybrid architectures that keep latency-sensitive hot data in orbit while storing cheaper cold data on Earth. Major challenges include continuously shifting topology and latency, optimal scheduling of data coordinators as satellites move, distinguishing temporary communication loss from permanent node failure, aging heterogeneous hardware, and unresolved questions of data sovereignty as satellites cross national borders. Relativistic clock effects are presented as negligible compared with practical networking constraints, while future orbital-aware databases would need dynamic locality models, predictive placement policies, autonomous decommissioning, and jurisdiction-sensitive replication.
Aug 06, 2026
4,113 words in the original blog post.
Cockroach Labs has launched a production-ready CockroachDB Kubernetes Operator that provides Kubernetes-native, CockroachDB-aware lifecycle management for self-hosted deployments, replacing operational scripts and manual procedures commonly required with StatefulSets. Based on an operator used to manage more than 600 CockroachDB Cloud clusters for nearly three years, it automates deployment, rolling upgrades, health-aware scaling, certificate rotation, storage management, observability, and multi-region configuration through custom resources and separate cluster- and node-level reconciliation. The operator supports TLS options, declarative SQL initialization, zero-downtime upgrades, storage expansion, WAL failover, CMEK, physical cluster replication, Helm, GitOps, private registries, and air-gapped environments. Adding a region can be performed through a declarative configuration change while CockroachDB manages cross-region data distribution and consistency. Existing users of the legacy public operator or StatefulSet Helm charts can migrate through an opt-in automated controller that replaces nodes individually, verifies cluster health, preserves disks and certificates, maintains application availability, and supports rollback. The legacy operator and StatefulSet charts will remain supported until CockroachDB 27.3, expected in summer 2027, followed by a 12-month maintenance period without new features or support for version 27.3 and later, after which they will reach end of life.
Aug 05, 2026
1,095 words in the original blog post.