OffNet Newsroom

Archive snapshot

Sunday, August 09, 2026

Daily signal on databases, AI, and the tech that matters.

11 new today 40 stories 8 sections 16 for the DBA desk

Database Technology 8

roundup ↗

Christophe Pettus details the use of the ignore_system_indexes GUC to recover from catalog index corruption. This setting forces sequential scans on system tables, bypassing potentially damaged indexes. It serves as a critical recovery mechanism when standard index-based lookups fail.

  • Use ignore_system_indexes to bypass corrupted catalog indexes during recovery.
  • Enables sequential scans on system tables when index access is unreliable.
  • Critical for restoring database integrity when system catalog indexes are damaged.
  • Part of PostgreSQL's broader GUC framework for low-level configuration control.
AWS What's New awsdatabase ↺ since 08-07

Amazon RDS exposes storage volume initialization status

Amazon RDS now allows users to monitor the initialization progress of storage volumes created from snapshots during restores, read replica creation, or Multi-AZ conversions. This visibility helps identify when the underlying storage blocks have finished downloading from S3 and are ready to handle latency-sensitive workloads. During this initialization phase, I/O latency may remain elevated until the volume is fully provisioned and ready.

  • Monitor initialization status to avoid performance issues when launching restored instances or replicas.
  • High I/O latency during volume setup is expected until initialization completes.
  • Use the new status to time workload cutover for latency-sensitive applications.
  • Applies to point-in-time restores, read replicas, and Single-AZ to Multi-AZ conversions.
BY THE NUMBERSStorage Initialization Metric3Blocks downloaded from S3Ready for latency-sensitive workloads
Planet PostgreSQL database ↺ since 08-07

PostgreSQL RLS for AI Agents: Testable Setup with Non-Owner Roles

Andrei Mironov outlines a method for securing PostgreSQL databases where AI agents operate as non-owner roles. The approach emphasizes enabling FORCE RLS, defining explicit policies, and managing controlled writes. It includes a rigorous testing strategy that verifies both access grants and denial scenarios to ensure robust security boundaries.

  • Enforce row-level security on tables even for roles that own them using FORCE RLS.
  • Assign AI agents non-owner roles to strictly limit database privileges.
  • Implement explicit policies for controlled writes to prevent unauthorized data mutation.
  • Validate security by running explicit denial tests to confirm policy enforcement.
  • Ensure testable setups by verifying both granted and denied access paths.
Planet PostgreSQL database ↺ since 08-07

Postgres as a Compute Layer for Agentic AI Workloads

PostgreSQL has become the default database for agentic AI, but many teams treat it merely as storage rather than leveraging its compute capabilities. As AI agents generate complex signals, state, and checkpoints, the database must handle concurrent multi-step workflows and shared state updates. AI engineers often lack the expertise to optimize Postgres for these novel workload patterns that differ significantly from traditional operations.

  • Shift mindset from Postgres as storage to a first-class compute layer for AI agents.
  • Optimize for concurrent multi-step workflows and shared state updates in agentic systems.
  • AI engineers need to explore PostgreSQL's capabilities beyond basic CRUD operations.
  • Production agentic workloads require different optimization strategies than traditional apps.
TRADE-OFFPostgres: Storage vs ComputeTraditional UsageSimple CRUD operationsBasic storage onlySingle-threaded patternsAgentic AI NeedsConcurrent multi-step workflowsShared state updatesComplex signal processingvs
Percona Blog database ↺ since 08-08

Percona benchmarks DuckDB MySQL engine against InnoDB at 500 GB scale

Percona tested its DuckDB storage engine for MySQL on an 80-core server with 187 GB RAM using 500 GB of TPC-H data. The evaluation compared the new engine against standard InnoDB and plain DuckDB as a reference point. The test involved three billion lineitem rows to assess performance at significant scale.

  • DuckDB MySQL engine enables columnar analytics directly within the MySQL architecture
  • Tested on high-end hardware: 80 cores and 187 GB RAM for 500 GB datasets
  • Includes three-billion-row TPC-H workload for realistic scale validation
  • Provides baseline comparison against traditional InnoDB row-store performance
Planet PostgreSQL database ↺ since 08-06

PostgreSQL DISTINCT in COUNT disables parallel query

Using DISTINCT inside a COUNT aggregate in PostgreSQL disables parallel query execution for the entire statement, regardless of available cores. This optimization gap causes significant performance degradation on large tables because the aggregate execution model cannot support parallelism. The limitation persists even with sufficient hardware resources or appropriate indexing.

  • DISTINCT in COUNT forces serial execution, wasting available CPU cores
  • Performance scales poorly with table size due to lack of parallelism
  • No configuration or index changes can restore parallel execution for this pattern
  • Review analytics workloads for COUNT(DISTINCT) to identify bottlenecks
PostgreSQL News database ↺ since 08-05

pgAdmin 4 v9.17 patches 7 CVEs, adds row limits and Helm Gateway API support

pgAdmin 4 version 9.17 has been released with 28 bug fixes and seven critical security vulnerabilities addressed. The update introduces a configurable row limit for the View Data action to prevent performance issues on large tables. It also adds the authenticated user identity to HTTP access logs and offers an opt-in Gateway API HTTPRoute template in its Helm chart.

  • Fixes seven security vulnerabilities (CVE-2026-17346 through 17351, 17566) immediately.
  • New row count cap for View Data prevents browser hangs on large tables.
  • Helm chart now supports Gateway API HTTPRoute as an Ingress alternative.
  • HTTP access logs now include authenticated user identity for better auditing.
  • Total of 28 bug fixes included in this minor release.
BY THE NUMBERSSeven Critical CVEs Patched7Security vulnerabilities fixedCVEs 2026-17346 through 17351 and 17566

LLMs 1

roundup ↗
OpenAI News llmaiagents ↺ since 08-08

OpenAI boosts GPT-5.6 Sol accuracy and expands GPT-5.6 Luna access

ChatGPT now features an improved version of the GPT-5.6 Sol model, delivering higher accuracy and consistency in responses. Additionally, OpenAI is expanding access to the GPT-5.6 Luna model for free users, allowing them to enjoy unlimited everyday chats without subscription barriers.

  • GPT-5.6 Sol receives accuracy and consistency improvements in ChatGPT.
  • Free users gain expanded access to the GPT-5.6 Luna model.
  • Unlimited everyday chats are now available with GPT-5.6 Luna for free accounts.

AI / ML 5

roundup ↗

AMD has acquired AI chip startup Taalas to integrate model-specific integrated circuits directly into silicon. Early demonstrations indicate these custom chips can achieve inference speeds of up to 17,000 tokens per second. This move aims to significantly boost performance for specific AI workloads by hardcoding model architectures.

  • AMD targets inference speed gains by integrating Taalas' custom silicon technology.
  • Early demos show model-specific chips reaching 17,000 tokens per second throughput.
  • Hardcoding models into hardware reduces latency compared to general-purpose accelerators.
  • Acquisition signals AMD's push into specialized AI inference hardware solutions.
AWS Database Blog awsdatabase ↺ since 08-06

AWS RDS for Oracle Adds OML4SQL for In-Database AutoML

Amazon RDS for Oracle now supports Oracle Machine Learning for SQL (OML4SQL), enabling practitioners to build, train, and score models entirely within the SQL engine. The new AutoML feature automatically selects the optimal algorithm without requiring data movement or external ML platforms. This capability allows credit risk and similar workloads to be processed directly on the database layer.

  • Eliminates data movement to external ML platforms by keeping training and scoring in-database.
  • AutoML automatically selects the best algorithm, reducing manual model tuning effort.
  • Enables SQL-only workflows for machine learning on managed RDS for Oracle instances.
AWS Database Blog awsdatabase ↺ since 08-06

DynamoDB adds native vector search to eliminate separate vector DBs

Amazon DynamoDB now supports native vector similarity search, removing the need to maintain a separate vector database for applications already using DynamoDB for operational data. The feature allows developers to integrate vector search directly into their existing DynamoDB tables, as demonstrated with a semantic search application over research paper abstracts using Amazon Bedrock embeddings. The blog post also details how vector search operations are metered and billed within the DynamoDB service.

  • No longer need a separate vector database for semantic search alongside DynamoDB.
  • Vector search is now a native feature within DynamoDB tables.
  • Metering for vector search operations is distinct and detailed in the post.
  • Can integrate with Amazon Bedrock embeddings for building semantic search apps.
AWS What's New awsdatabase ↺ since 08-07

Amazon Quick introduces multi-dataset topics for runtime joins

Amazon Quick now supports multi-dataset topics, allowing users to define relationships across multiple datasets within a single topic model. This capability eliminates the need for pre-joining data into a single dataset or writing manual JOIN logic during preparation. The system performs joins at runtime, enabling reusable relational models for both dashboard building and natural language Q&A without consuming extra SPICE capacity.

  • Define relationships once in a topic rather than pre-joining data manually.
  • Runtime joins replace static pre-joined datasets, reducing SPICE consumption.
  • Single topic models now support both dashboard visuals and NLQ across datasets.
  • No need to rebuild datasets when underlying data models or use cases change.
TRADE-OFFQuick Multi-Dataset TopicsLegacy ApproachRequires manual pre-joining dataConsumes extra SPICE capacityStatic and rigid modelsQuick Runtime JoinsDefines relationships in topicsZero extra SPICE usageDynamic and reusable modelsvs
Planet PostgreSQL database ↺ since 08-07

PostgreSQL psql gains initial Lua scripting integration via \luacode

Pavel Stehule has introduced an initial integration of the Lua language into psql, allowing users to execute Lua scripts directly within the interactive session. The new \luacode command enables entering Lua code blocks that can define functions and perform operations, such as printing results, before being executed. This feature provides a lightweight scripting capability alongside SQL for ad-hoc data manipulation and tooling within the client environment.

  • New \luacode command allows inline Lua scripting directly in psql sessions
  • Supports defining Lua functions and printing output for quick client-side logic
  • No server-side extension required; operates entirely within the psql client
  • Initial integration phase; check docs for current limitations and syntax rules
  • Useful for ad-hoc data transformation or automation without leaving the shell
TRADE-OFFLua in psql vs ExtensionsLua ScriptingClient-side execution onlyNo server extensions neededQuick ad-hoc logicServer ExtensionsRequires server installationPersistent configuration changesComplex setup overheadvs

Agentic AI 8

roundup ↗

Amazon Cognito is now a core skill in the Agent Toolkit for AWS, enabling AI coding agents to configure user pools, app clients, and OAuth flows. The aws-auth skill supports token management, JWT authorizers, and passkey enrollment, allowing agents to implement secure sign-in patterns autonomously. When used with the AWS MCP Server, agents execute CLI commands with IAM guardrails and CloudTrail logging for auditability.

  • AI agents can now autonomously set up and troubleshoot Cognito auth flows via the aws-auth skill.
  • Covers user pools, app clients, OAuth 2.0, JWT authorizers, and WebAuthn enrollment.
  • Agents can leverage IAM guardrails and CloudTrail audit logging when paired with AWS MCP Server.
  • Works standalone via AWS CLI for direct command-line execution without full agent integration.
  • Accelerates implementation of secure sign-in for users, AI agents, and microservices.
HOW IT WORKSAgent Auth Setup Flow1Configure user pools and app clients2Set up OAuth 2.0 flows3Enable JWT authorizers4Enroll users via WebAuthn

Claude Code now supports direct messaging between separate code sessions, enabling coordinated multi-agent development. This feature allows distinct AI instances to exchange context and instructions without manual copy-pasting. It streamlines complex refactoring or debugging tasks that require parallel processing across different parts of a codebase.

  • Enables parallel AI agents to share context for complex refactoring tasks
  • Eliminates manual context transfer between separate Claude Code windows
  • Supports multi-agent architectures for larger codebase navigation
  • Reduces overhead in debugging scenarios requiring distributed analysis
GitHub Trending (daily) githubrepos ⚠ unverified date/source

Google releases Agent Skills repo for GCP and AI workflows

Google has open-sourced a repository of Agent Skills designed to streamline interactions with Google Cloud and related technologies. The project provides pre-built configurations for tasks such as authentication, solution architecture, and agentic analytics. Users can install specific skills via npx, allowing for modular adoption of these tools into their existing AI agent workflows.

  • Enables modular installation of GCP-specific agent capabilities via npx.
  • Covers key workflows like onboarding, authentication, and solution architecture.
  • Supports agentic analytics across multi-cloud and data lakehouse environments.
  • Repository is under active development, so features may evolve rapidly.
HOW IT WORKSAgent Skills Workflow1Install skill via npx2Configure GCP authentication3Run agentic analytics4Deploy to cloud
AWS What's New awsdatabase ↺ since 08-07

AWS Bedrock AgentCore runtime instances now GA on EC2

Amazon Bedrock AgentCore now generally offers runtime instances that deploy agents directly onto customer-owned EC2 infrastructure. This new capability complements the existing microVM option by providing access to diverse instance types, including GPU, memory-optimized, and compute-optimized families. AWS manages the provisioning, patching, scaling, and lifecycle of these resources while teams define needs via capacity providers.

  • Use EC2 runtime instances for sustained, resource-intensive, or specialized-hardware AI agent workloads.
  • Access broad EC2 families including GPU, memory, and compute-optimized types directly within AgentCore.
  • AWS handles infrastructure lifecycle management: provisioning, patching, scaling, and lifecycle ops.
  • Configure capacity providers via Console, CLI, SDKs, or APIs to specify required instance types.
TRADE-OFFEC2 vs MicroVM RuntimeEC2 Runtime InstancesAccess GPU and…Ideal for sustained AI workloadsAWS manages provisioning and scalingMicroVM OptionLightweight isolated…Faster startup timesStandardized instance configurationsvs
AWS What's New awsdatabase ↺ since 08-07

AWS Bedrock AgentCore adds temporal policies and rate limiting

Amazon Bedrock AgentCore introduces temporal policies to enforce stateful authorization rules that evaluate requests based on prior agent actions within a session. This allows for workflow sequencing, argument validation against previous outputs, human approval gates, and data freshness checks. Additionally, new rate limiting capabilities enable per-user or per-group traffic controls for tools, models, and agents scoped via OAuth or IAM.

  • Enforce workflow sequencing by evaluating requests against prior session actions.
  • Require human approval before executing privileged agent actions.
  • Validate tool arguments against outputs from previous calls in the session.
  • Apply rate limits per user or group using OAuth or IAM scopes.
  • Prevent stateless tool calls that are safe in isolation but risky in context.
CHECKLISTGuard Agent WorkflowsEnforce workflow sequencing via prior actionsRequire human approval for privileged actionsValidate tool arguments against previous outputsApply rate limits per user or groupPrevent contextually risky stateless tool calls
AWS Database Blog awsdatabase ↺ since 08-07

AWS adds MCP tools for Aurora DSQL query and schema management in IDEs

AWS has released Model Context Protocol (MCP) tools enabling AI coding assistants to interact directly with Amazon Aurora DSQL. Practitioners can now execute queries, manage schemas, and verify compatibility within their integrated development environment without context switching. The blog outlines the installation process, available toolset, and the underlying security model for this integration.

  • Integrate Aurora DSQL with AI coding assistants via the MCP protocol for seamless IDE workflows.
  • Enable direct query execution and schema evolution capabilities from within the development environment.
  • Use built-in compatibility checks to validate Aurora DSQL support before deploying code changes.
  • Review the provided security model to ensure proper authentication and authorization for AI tools.
GitHub Trending (daily) githubrepos ↺ since 08-08 ⚠ unverified date/source

PrimeAgent: Open-Source RLM Agent for Self-Improving Coding Workflows

PrimeIntellect released Prime Agent, an open-source tool designed for long-running autonomous coding tasks. It utilizes a Recursive Language Model (RLM) that treats context as variables and manages subagents through a persistent REPL. The system employs a Continual Harness to store durable state, allowing for evidence-backed refinements to prompts and skills over time.

  • Uses Recursive Language Model (RLM) to treat context as variables for flexible prompt management.
  • Supports long-running autonomous tasks via a persistent REPL and programmatic subagent calls.
  • Continual Harness stores durable state for skills and memories, enabling incremental self-improvement.
  • Open-source implementation allows for local refinement of agent behavior based on session evidence.
AWS What's New awsdatabase ↺ since 08-08

AWS Bedrock AgentCore adds memory, policy, and harness in GovCloud

Amazon Bedrock AgentCore has expanded to AWS GovCloud (US-West) with new capabilities for building regulated AI agents. The update introduces memory features for both short-term conversation context and long-term persistent insights. It also includes centralized policy controls for agent-tool interactions that operate independently of agent code.

  • AgentCore is now available in AWS GovCloud (US-West) for regulated environments.
  • Short-term memory handles immediate conversation context without manual infrastructure management.
  • Long-term memory extracts persistent insights and user preferences across sessions.
  • Centralized policies enforce fine-grained controls on agent-tool interactions outside code.
  • These features aim to accelerate the transition from prototype to production for enterprise agents.
HOW IT WORKSBuilding Regulated Agents1Deploy in GovCloud2Add short-term memory3Integrate long-term memory4Enforce centralized policies5Ship to production

Automation / DevOps / IaC 7

roundup ↗

Stripe engineers have automated incident recovery by modeling their global database infrastructure as a graph. They employ graph search algorithms alongside state machines to compute and execute remediation plans without manual intervention. This approach replaces reactive troubleshooting with a systematic, algorithmic resolution process.

  • Infrastructure modeling as a graph enables precise dependency mapping for automated recovery.
  • Graph search algorithms efficiently identify optimal remediation paths across complex topologies.
  • State machines ensure remediation steps are executed in a deterministic, safe order.
  • Automation reduces mean time to recovery by eliminating manual incident triage.

AWS Transform now handles post-launch actions automatically as part of the migration workflow, eliminating manual server-by-server setup. These actions execute through AWS Systems Manager immediately after test or cutover launches and can be defined at the account level for multi-account targets. Users can leverage predefined actions or supply custom SSM documents, with updated migration inventory files simplifying per-server configuration reviews.

  • Post-launch actions run via SSM right after test or cutover launches.
  • Define actions at account level to apply across all target servers automatically.
  • Supports both predefined actions and custom SSM documents.
  • Migration inventory files now include structured post-launch action fields.
  • Reduces manual effort and errors in bulk server configuration.
HOW IT WORKSAWS Transform Post-Launch Flow1Test or cutover launch2Trigger AWS SSM3Execute predefined or custom actions4Apply account-wide configuration5Update migration inventory

Rootly has eliminated its long-standing small pull request policy, citing that agentic AI now generates the majority of its code. The engineering team is shifting focus from counting lines to evaluating blast radius, relying on feature flags and rollback mechanisms instead. This change reflects a broader adjustment to how code review economics function in an AI-driven development environment.

  • Agentic AI generation invalidates traditional small PR metrics for code volume
  • Rootly prioritizes blast radius assessment over line count in reviews
  • Feature flags and rollback capabilities are now primary safety controls
  • Code review processes must adapt to AI-assisted development workflows
AWS Database Blog awsdatabase ↺ since 08-06

AWS DMS: Tune CDC retries to fail fast for quicker detection

AWS DMS default exponential backoff allows Change Data Capture tasks to retry silently for up to 30 minutes before failing, delaying issue visibility. The AWS Database Blog details how to adjust four specific recoverable-error settings to force failures within minutes. Practitioners should pair these tuning changes with Amazon EventBridge and CloudWatch alerts for immediate operational awareness.

  • Default DMS backoff masks transient errors for up to 30 minutes, hiding data sync issues.
  • Tune four recoverable-error settings to reduce retry duration and surface failures faster.
  • Combine aggressive retry limits with EventBridge and CloudWatch for instant alerting.
  • Faster failure detection minimizes data lag and reduces mean time to resolution (MTTR).
LangChain Releases agentsreleases ↺ since 08-08

langchain-openai 1.4.2 fixes ContextWindowExceededError and MCP auth redaction

LangChain has released version 1.4.2 of the OpenAI integration package. This update addresses critical error handling for context window limits and ensures security by redacting MCP authorization headers. It also preserves Responses text options and filters generated content block IDs to improve stability.

  • Handles ContextWindowExceededError to prevent uncaught crashes on large contexts.
  • Redacts MCP authorization tokens to prevent accidental log leakage.
  • Preserves Responses text options for accurate payload handling.
  • Filters langchain-generated content block IDs to avoid conflicts.
  • Includes general dependency bumps across three directories.
LangChain Releases agentsreleases ↺ since 08-08

langchain-anthropic 1.5.4 fixes tool schema composition and tool_choice preservation

LangChain updates its Anthropic integration to 1.5.4, addressing critical issues with tool handling. The release fixes support for tool schemas that use unsupported top-level composition and ensures that the caller's tool_choice setting is preserved correctly. It also introduces a convenience attribute for user_profile_id and bumps dependencies across three directories.

  • Fixes tool schema parsing for unsupported top-level compositions
  • Ensures caller-defined tool_choice is preserved in requests
  • Adds user_profile_id convenience attribute for easier access
  • Includes routine dependency bumps across multiple directories
AWS What's New awsdatabase ↺ since 08-08

AWS IAM Identity Center adds one-click multi-Region setup for new org instances

AWS IAM Identity Center now allows users to enable multi-Region support with a single click when creating a new organization instance. This feature automatically provisions a customer-managed multi-Region KMS key and replicates the instance to an additional Region. The update replaces the previous manual workflow that required creating keys, configuring policies, and adding Regions individually. Users can now choose between single-Region, multi-Region, or custom configurations during instance creation.

  • New org instances can now be deployed as multi-Region with one click, reducing setup complexity.
  • The service automatically creates a customer-managed multi-Region KMS key for encryption.
  • Instance replication to a secondary Region is handled automatically to improve access resilience.
  • Manual steps for KMS key creation and policy configuration are no longer required for this option.
  • Three configuration options are available: single-Region, multi-Region, or custom.
TRADE-OFFMulti-Region Setup EvolutionOld Manual WayCreate KMS keys manuallyConfigure policies individuallyAdd Regions one by oneNew One-Click WayAutomatic key creationInstant instance replicationReduced setup complexityvs

AWS 8

roundup ↗

A Cloudflare executive has forecasted that machine-generated internet traffic will increase by a factor of 1000 over the next five years. This massive shift implies that human-driven web activity will become statistically negligible, described as a 'rounding error' relative to bot and automated traffic. The prediction highlights the accelerating dominance of non-human interactions on the global network.

  • Prepare for extreme scaling of bot management and WAF rulesets
  • Human-centric analytics will lose statistical significance quickly
  • Infrastructure must handle 1000x growth in synthetic traffic patterns
  • Identity verification needs to distinguish bots from legitimate services
AWS What's New awsdatabase ↺ since 08-07

ElastiCache adds Graviton4 M8g, R8g, C8gn nodes for Valkey and Memcached

Amazon ElastiCache now supports Graviton4-based M8g, R8g, and C8gn node families for both Valkey and Memcached engines. These new nodes deliver up to 47% higher throughput and 43% lower P99 latency compared to Graviton3 equivalents, with up to 31% better price-performance on on-demand pricing. The M8g family also provides up to 20% more memory per node size, while C8gn nodes offer 200 Gbps network bandwidth for network-intensive workloads.

  • Graviton4 nodes boost throughput by 47% and cut P99 latency by 43% vs Graviton3.
  • M8g nodes provide up to 20% more memory at the same instance size.
  • C8gn nodes deliver 200 Gbps bandwidth for high-network throughput workloads.
  • Supported engines include both Valkey and Memcached on ElastiCache.
COMPARISONGraviton4 Node Performance GainsThroughput47%Price-Performance31%Memory Increase20%
AWS What's New awsdatabase ↺ since 08-06

DynamoDB GA: Real-time vector search with single-digit ms latency

Amazon DynamoDB has generally available vector search, enabling real-time indexing and querying of vector embeddings at scale. The service promises single-digit millisecond latency with 99%+ recall, addressing the traditional trade-offs between speed, scale, and accuracy for datasets reaching trillions of vectors. Developers can store embeddings alongside standard attributes and use approximate nearest neighbor searches with indexes of their choice.

  • Native vector index supports approximate nearest neighbor searches in DynamoDB.
  • Latency targets single-digit milliseconds with 99%+ recall at any scale.
  • Embeddings can be generated via custom models or Amazon Bedrock.
  • Vectors are stored alongside standard DynamoDB attributes in the same table.
BY THE NUMBERSDynamoDB Vector Search Performance99%Recall rate at any scaleSingle-digit ms latency for real-time search
AWS What's New awsdatabase ↺ since 08-07

ECS adds fractional GPU scheduling for G6f instances starting at 1/8 GPU

Amazon ECS now allows task definitions to request fractional GPU resources, supporting partitions as small as one-eighth of an NVIDIA L4 Tensor Core GPU. This feature targets G6f instances and enables right-sizing for workloads like small-model inference or experimentation that do not require full GPU capacity. Users specify these allocations directly in container definitions using values such as 0.125, 0.25, or 0.5 to optimize cost and resource utilization.

  • Right-size containers for AI inference or graphics without paying for full GPUs.
  • Request 1/8, 1/4, or 1/2 GPU allocations in ECS task definitions.
  • Reduces infrastructure costs for small-model experimentation workloads.
  • Requires Amazon EC2 G6f instances with NVIDIA L4 Tensor Core GPUs.
CHECKLISTWhat matters hereRight-size containers for AI inference or graphics without paying for…Request 1/8, 1/4, or 1/2 GPU allocations in ECS task definitions.Reduces infrastructure costs for small-model experimentation…Requires Amazon EC2 G6f instances with NVIDIA L4 Tensor Core GPUs.
AWS What's New awsdatabase ↺ since 08-06

AWS Lambda scales network bandwidth up to 3 Gbps for non-VPC functions

AWS Lambda now offers scalable egress and ingress bandwidth for functions running outside a VPC, scaling linearly with memory from 625 Mbps at 2 GB to 3,000 Mbps at 10 GB. This eliminates the previous hard cap that constrained latency-sensitive workloads transferring large datasets. The update allows higher memory allocations to directly yield proportional network throughput improvements.

  • Non-VPC Lambda functions now scale network bandwidth proportionally with memory allocation.
  • Egress/ingress speeds range from 625 Mbps (2 GB) to 3 Gbps (10 GB).
  • Removes previous 625 Mbps bottleneck for data-intensive, latency-sensitive workloads.
  • No VPC configuration required to access increased throughput capabilities.
COMPARISONLambda Non-VPC Bandwidth Scaling2 GB Memory625 Mbps10 GB Memory3,000 Mbps
AWS What's New awsdatabase ↺ since 08-08

AWS IAM Identity Center now supports app-only access management for new orgs

AWS has updated IAM Identity Center to allow optional management of AWS account access during the initial configuration of new organization instances. This enables organizations to use the service solely for workforce identity federation and application single sign-on, decoupling it from native AWS account permission management. The change applies only to newly created instances and does not alter existing deployments.

  • New org instances can now skip AWS account access management, focusing only on application SSO.
  • Decouple workforce identity federation from native AWS account permissioning for new setups.
  • Existing IAM Identity Center instances remain unaffected by this configuration option.
  • Streamlines access management for app owners and end users via consistent SSO experiences.
TRADE-OFFIAM Identity Center OptionsNew Org SetupSkip account access managementFocus on app SSODecouple workforce identityExisting InstancesNo configuration changesStandard behavior continuesUnaffected by updatevs
InfoQ generaldevops ↺ since 08-07

Azure API Management launches dedicated AI Gateway tier in preview

Microsoft has introduced a public preview tier for Azure API Management designed specifically for AI workloads. The new control plane organizes governance around models, MCP servers, and tools rather than traditional API endpoints. It unifies access to major providers like Foundry, Bedrock, Vertex AI, and OpenAI through a single interface using policy cards instead of XML.

  • Governance shifts from API-centric to model and tool-centric controls.
  • Single endpoint consolidates traffic for Foundry, Bedrock, Vertex, and OpenAI.
  • Policy configuration uses cards instead of legacy XML definitions.
  • Architects are evaluating the new governance boundaries for compliance.
AWS What's New awsdatabase ↺ since 08-07

AWS EC2 G7 instances with Blackwell GPUs now live in Spain

Amazon EC2 G7 instances powered by NVIDIA RTX PRO 4500 Blackwell Server Edition GPUs are now available in the Europe (Spain) Region. These instances offer up to 4.6x AI inference performance and 2.1x graphics performance compared to the previous G6 generation. The new hardware accelerates workloads including AI inference, real-time graphics rendering, and GPU-accelerated data analytics.

  • G7 instances in EU (Spain) use NVIDIA RTX PRO 4500 Blackwell Server Edition GPUs.
  • AI inference performance improves up to 4.6x over G6 instances.
  • Graphics performance increases up to 2.1x compared to G6.
  • Suitable for LLM inference, video transcoding, and spatial computing.
  • Enables local deployment of AI models without data residency constraints.
COMPARISONG7 vs G6 Performance GainsAI Inference4.6xGraphics2.1x

Trending on GitHub 2

roundup ↗
GitHub Trending (daily) githubrepos ⚠ unverified date/source

Open Source Repository Aggregates Chinese K-12 and University Textbooks

The TapXWorld/ChinaTextbook repository consolidates PDF versions of primary, secondary, and university-level textbooks, with a specific focus on mathematics. The project aims to democratize access to educational materials and support overseas Chinese families by providing free, centralized resources. Due to GitHub's file size limits, larger PDFs are split into smaller chunks, requiring users to merge them using a provided utility.

  • Aggregates K-12 and university math textbooks in PDF format for free access.
  • Addresses GitHub's 100MB limit by splitting large files into 35MB chunks.
  • Provides a Windows executable utility to merge split PDF files automatically.
  • Targets domestic accessibility and overseas Chinese education continuity.
  • No database or cloud infrastructure impact for engineering teams.
GitHub Trending (daily) githubrepos ↺ since 08-06 ⚠ unverified date/source

Deno's celld: Self-hosted Distributed Durable Objects with SQLite and S3

celld is an open-source daemon that enables self-hosted execution of Cloudflare Workers and Durable Objects. It treats each durable object as an independent SQLite database, coordinating state across nodes via a shared S3-compatible bucket without requiring a control plane or consensus protocol. This architecture naturally shards data, eliminating the contention and blast-radius risks associated with shared database instances.

  • Each Durable Object is an isolated SQLite DB, removing shared contention and blast-radius risks.
  • Nodes coordinate solely through an S3-compatible bucket, avoiding complex consensus or control planes.
  • Embeds V8 to execute Wrangler bundles, allowing Cloudflare Workers logic to run on your own infrastructure.
  • Idle cells hibernate to near-zero resource usage, optimizing cost for sporadic workloads.
TRADE-OFFCelld Architecture ChoicesShared Database ModelHigh contention risksLarge blast radiusComplex consensus requiredCelld Distributed ModelIsolated SQLite instancesS3-based coordination onlyNo control plane neededvs

Emerging Tech & Research 1

roundup ↗
The Register general ↺ since 08-08

MIT TONTOU bypasses Spectre defenses on Intel and AMD via timer interrupts

Researchers from MIT have demonstrated the TONTOU attack, which exploits timer interrupts to reopen branch predictor poisoning windows on both Intel and AMD processors. The study provides a working exploit targeting Zen 2 architecture, showing that existing Spectre mitigations can be circumvented by leveraging interrupt timing. This finding challenges the current efficacy of standard hardware-level countermeasures against side-channel attacks.

  • Timer interrupts can reset branch predictor states, enabling new Spectre variants.
  • Both Intel and AMD CPUs are vulnerable to this specific branch predictor poisoning method.
  • A functional exploit for Zen 2 proves the theoretical vulnerability is practical.
  • Existing Spectre mitigations may be insufficient against interrupt-timing attacks.
  • Firmware and kernel updates may need to address interrupt handling security.