<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>InfluxData Blog - Peter Barnett</title>
    <description>Posts by Peter Barnett on the InfluxData Blog</description>
    <link>https://www.influxdata.com/blog/author/peter-barnett/</link>
    <language>en-us</language>
    <lastBuildDate>Wed, 17 Jun 2026 12:00:00 +0000</lastBuildDate>
    <pubDate>Wed, 17 Jun 2026 12:00:00 +0000</pubDate>
    <ttl>1800</ttl>
    <item>
      <title>What’s New in InfluxDB 3.10: Performance Beta Expanded with New Enterprise Features </title>
      <description>&lt;p&gt;In our last release, we introduced a beta of performance updates designed for heavier, more complex time series workloads. InfluxDB 3.10 expands that beta to include enterprise features that give teams more control as they scale and manage larger workloads in InfluxDB 3.&lt;/p&gt;

&lt;p&gt;This release adds end-to-end backup and restore, row-level deletes, bulk import from Parquet, user management, and an RBAC preview to the previous performance beta. It also includes cross-database plugin queries, a new readiness endpoint, and compaction improvements for InfluxDB 3 Enterprise. Together, these updates help teams evaluate the next phase of InfluxDB 3 performance and scale with more of the operational tooling they need to manage real workloads.&lt;/p&gt;

&lt;p&gt;We’re inviting customers to test this next phase of InfluxDB 3 performance and scale, share feedback, and help shape the path to general availability.&lt;/p&gt;

&lt;h2 id="expanded-capabilities-for-the-performance-beta"&gt;Expanded capabilities for the performance beta&lt;/h2&gt;

&lt;p&gt;The performance improvements &lt;a href="https://www.influxdata.com/blog/influxdb-3-9/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_10_expanded_beta&amp;amp;utm_content=blog"&gt;we previewed in InfluxDB 3.9&lt;/a&gt; continue to mature in beta. These updates are designed for teams testing heavier time series workloads, including higher ingest, wider schemas, sparse data, and more demanding recent-data queries.&lt;/p&gt;

&lt;p&gt;The beta remains opt-in and is not yet the default, so existing deployments continue running unaffected unless teams explicitly enable it with the &lt;code class="language-markup"&gt;--use-pacha-tree&lt;/code&gt; flag.&lt;/p&gt;

&lt;p&gt;Once users opt in to the beta, InfluxDB 3.10 adds operational capabilities, so teams can do more than test raw performance. They can protect data, recover from known-good states, remove bad or unnecessary rows, and bring existing Parquet datasets into InfluxDB 3 for evaluation. That matters for teams working with real production patterns, where data rarely arrives perfectly clean and workloads rarely stay fixed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The following capabilities are available only when using the performance beta, enabled with the -&lt;code class="language-markup"&gt;-use-pacha-tree&lt;/code&gt; flag&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;End-to-end backup and restore&lt;/strong&gt;: You can now run full backups that capture cluster state and compacted data for easy rollbacks. Restores run asynchronously, allowing you to recover data into a fresh store for disaster recovery or roll a live cluster back to an earlier point in time. We’ll soon be adding incremental restores to give you even more control over your restore points.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Row-level deletes&lt;/strong&gt;: Teams can now remove specific rows based on time ranges or tag predicates rather than dropping entire tables when data needs to be purged. The compactor applies these changes asynchronously in the background, allowing teams to clean up production data without interrupting operations.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Bulk import from Parquet&lt;/strong&gt;: A new bulk-import function makes it easier to bring historical or external data into InfluxDB 3. Teams can point InfluxDB at a generic Parquet file or an entire directory, use simple column mappings, and ingest each file as an independent import job.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id="user-authentication-and-rbac-preview"&gt;User authentication and RBAC preview&lt;/h2&gt;

&lt;p&gt;As time series workloads become more central to production systems, access control becomes increasingly important. The same database may support operators monitoring live systems, developers building applications, analysts exploring historical data, and automated services writing or transforming telemetry.&lt;/p&gt;

&lt;p&gt;InfluxDB 3.10 Enterprise introduces a preview of multi-user authentication and role-based access control (RBAC). This feature is turned off by default for this release.&lt;/p&gt;

&lt;p&gt;When enabled, operators can configure traditional username and password logins that issue JWTs, or opt for external identity management through OAuth and OIDC. 3.10 also introduces built-in roles, including Admin, Auditor, and Member, to enforce proper boundaries across your teams. Best of all, your existing token workflows will continue to work exactly as they do today without any breaking changes.&lt;/p&gt;

&lt;h2 id="general-updates-and-improvements"&gt;General updates and improvements&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.10 also includes several capabilities that work across all deployments to streamline data pipelines and improve cluster management.&lt;/p&gt;

&lt;h4 id="cross-database-plugin-queries"&gt;Cross-Database Plugin Queries&lt;/h4&gt;

&lt;p&gt;Time series data often moves through stages: raw telemetry, cleaned data, downsampled rollups, forecasts, anomaly scores, and application-ready views. Those stages may live in different databases, but teams still need to connect them without building unnecessary external pipelines.&lt;/p&gt;

&lt;p&gt;In 3.10, Processing Engine plugins are no longer restricted to querying their own database. Now, a plugin can query any database residing on that node. This unlocks read-from-one, write-to-another data pipelines, such as reading raw telemetry from a staging database and writing compacted rollups or machine learning forecasts to a production database.&lt;/p&gt;

&lt;h4 id="readiness-endpoint"&gt;Readiness Endpoint&lt;/h4&gt;

&lt;p&gt;Production deployments need health checks that reflect whether a node can actually serve traffic, not just whether a process is running. InfluxDB 3.10 adds a new /ready endpoint. Instead of a basic uptime check, this endpoint verifies whether the node can successfully reach its underlying object store, giving operators a more reliable signal for traffic routing.&lt;/p&gt;

&lt;h4 id="improved-compaction"&gt;Improved Compaction&lt;/h4&gt;

&lt;p&gt;Under heavy ingest, compaction needs to keep pace with incoming writes so query nodes can access optimized data. When compaction stalls, the path from raw writes to efficient queries slows down. InfluxDB 3.10 introduces parallel compaction, ensuring that query nodes access fully compacted data more quickly and serve queries faster.&lt;/p&gt;

&lt;h2 id="get-started-with-influxdb-310"&gt;Get started with InfluxDB 3.10&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.10 is available now. To get started, download the latest version or pull the newest Docker image for Core or Enterprise.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_10_expanded_beta&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; remains free and open source under MIT and Apache 2 licenses, optimized for recent data and local workloads. &lt;a href="https://www.influxdata.com/products/influxdb3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_10_expanded_beta&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; adds long-range querying, clustering, advanced security, and full operational tooling for production deployments.&lt;/p&gt;

&lt;p&gt;Check out the docs (&lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_10_expanded_beta&amp;amp;utm_content=blog"&gt;Core&lt;/a&gt;, &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_10_expanded_beta&amp;amp;utm_content=blog"&gt;Enterprise&lt;/a&gt;), try the release in your environment, and share your feedback in Discord or the Community Slack. We want your feedback as the performance beta continues to mature.&lt;/p&gt;
</description>
      <pubDate>Wed, 17 Jun 2026 12:00:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-10/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-10/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.9: More Operational Control and a New Performance Preview</title>
      <description>&lt;p&gt;We’ve spent the last few months listening to how teams are running InfluxDB 3 in the wild. The feedback was clear: as you scale, you need less “guesswork” and more control. Today’s release of InfluxDB 3.9 is our answer to that.&lt;/p&gt;

&lt;p&gt;As more teams move InfluxDB 3 into production, our focus has shifted toward the operational experience: how you manage the database at scale, how you ensure it remains secure, and how you provide a seamless experience for users. This release is packed with a host of quality-of-life improvements and a beta of the key features we have planned for upcoming releases.&lt;/p&gt;

&lt;p&gt;Whether you’re using the open source &lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_9&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; for recent data and local workloads or scaling with &lt;a href="https://www.influxdata.com/products/influxdb-3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_9&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; for the full clustering and security suite, these 3.9 updates are designed to make your stack more predictable.&lt;/p&gt;

&lt;h2 id="operational-maturity-and-system-transparency"&gt;Operational maturity and system transparency&lt;/h2&gt;

&lt;p&gt;In 3.9, we’ve focused on making the database more predictable and transparent for operators. We have organized these refinements into three key areas:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Advanced CLI &amp;amp; Automation&lt;/strong&gt;: We’ve expanded the CLI to better support complex, headless environments. This includes new flags for non-interactive automation and data validation, alongside support for unique host overrides to target specific node types in a cluster. We’ve also improved how Parquet query outputs are piped, making it easier to integrate InfluxDB into automated data pipelines.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;System Reliability &amp;amp; Resource Management&lt;/strong&gt;: We’ve refined how the database handles resources and large-scale schemas. To better support complex data, we’ve increased the default string field limit to 1MB. We’ve also hardened the database lifecycle; administrative controls are now more rigorous, and we’ve ensured that background resources, such as triggers, are cleanly decommissioned whenever a database is removed.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Visibility &amp;amp; Under-the-Hood Infrastructure&lt;/strong&gt;: We’ve upgraded our core infrastructure to improve both security and operational clarity. This includes upgrading DataFusion and the bundled Python for more efficient query execution and plugin security. Additionally, the system now provides better visibility into access control and product identity, updating metrics, headers, and metadata access to clearly distinguish between Core and Enterprise builds across your stack.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Collectively, these refinements remove the subtle points of friction that can accumulate as a system scales in production. By hardening resource management and streamlining automation, we’re ensuring that InfluxDB 3 remains a predictable, “set-it-and-forget-it” core for your infrastructure.&lt;/p&gt;

&lt;h2 id="now-in-beta-a-new-performance-preview"&gt;Now in beta: A new performance preview&lt;/h2&gt;

&lt;p&gt;Behind the scenes, we’ve been working on performance updates to InfluxDB 3. These improvements support large-scale time series workloads without sacrificing predictability or operational simplicity. This work lays the foundation for what’s coming in 3.10 and 3.11, specifically focusing on smoothing behavior under load and expanding the range of schemas InfluxDB 3 can handle.&lt;/p&gt;

&lt;p&gt;Because performance in time series is highly dependent on specific workloads and cardinality, we are introducing these updates as a beta in InfluxDB 3 Enterprise. The beta is intended for testing in staging or development environments only. It allows you to explore and provide feedback on:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Optimized single-series queries&lt;/strong&gt;: Targeting reduced latency when fetching single-series data over long time windows.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Resource smoothing&lt;/strong&gt;: Testing reduced CPU and memory spikes during heavy compaction or ingestion bursts.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Wide-and-sparse table support&lt;/strong&gt;: For handling schemas ranging from extreme column counts to ultra-sparse data tables (or any combination).&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Automatic distinct value caches&lt;/strong&gt;: Early-stage, auto-creation of caches designed to reduce friction and eliminate metadata query latency.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These updates are available as an optional, flag-gated preview in InfluxDB 3.9 Enterprise. &lt;strong&gt;They are not recommended for production workloads&lt;/strong&gt;. We encourage Enterprise users to test these capabilities against their specific use cases to help us refine the features for GA. InfluxDB 3 Core will also support many of these new features in the coming releases.&lt;/p&gt;

&lt;p&gt;For instructions on how to enable these preview flags and to view the full technical requirements, visit our &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_9&amp;amp;utm_content=blog"&gt;official Enterprise documentation&lt;/a&gt;.&lt;/p&gt;

&lt;h5 id="get-started-and-share-your-feedback"&gt;Get started and share your feedback:&lt;/h5&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Download InfluxDB 3.9&lt;/strong&gt;: Available now via our &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_9&amp;amp;utm_content=blog"&gt;downloads page&lt;/a&gt; or latest Docker images.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Join the beta&lt;/strong&gt;: If you are an InfluxDB 3 Enterprise Trial user, reach out to me in our &lt;a href="https://discord.com/invite/9zaNCW2PRT"&gt;Discord&lt;/a&gt; or &lt;a href="https://influxcommunity.slack.com/join/shared_invite/zt-3hevuqtxs-3d1sSfGbbQgMw2Fj66rZsA#/shared-invite/email"&gt;Community Slack&lt;/a&gt; to learn how to enable these beta features.&lt;/li&gt;
&lt;/ul&gt;
</description>
      <pubDate>Thu, 02 Apr 2026 12:00:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-9/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-9/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.8: Linux Service Management, Kubernetes Helm Chart, and Smarter Ask AI </title>
      <description>&lt;p&gt;InfluxDB 3.8 is now available for both Core and Enterprise, alongside the 1.6 release of the InfluxDB 3 Explorer UI. This release is focused on operational maturity and making InfluxDB easier to deploy, manage, and run reliably in production.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; remains free and open source under MIT and Apache 2 licenses, optimized for recent data. &lt;a href="https://www.influxdata.com/products/influxdb-3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; builds on that foundation with long-range querying, clustering, security, and full operational tooling.&lt;/p&gt;

&lt;h2 id="linux-service-management-for-core-and-enterprise"&gt;Linux service management for Core and Enterprise&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.8 introduces Linux service management across our deb and rpm packages, so InfluxDB installs and runs like a standard Linux service without manual setup.&lt;/p&gt;

&lt;p&gt;Packages now register systemd units on modern distributions and provide SysV support for older environments. Services install cleanly, enable automatically, and respond to the same lifecycle commands operators already use. Configurability is centralized in a TOML file and a launcher that translates those settings into the server’s current configuration model.&lt;/p&gt;

&lt;p&gt;Upgrading from Core to Enterprise is straightforward. Both use the same data and plugin locations, so you simply install Enterprise over Core and restart. There’s no data migration or juggling directories.&lt;/p&gt;

&lt;h2 id="helm-chart-for-influxdb-3-enterprise-beta"&gt;Helm chart for InfluxDB 3 Enterprise (beta)&lt;/h2&gt;

&lt;p&gt;For teams running InfluxDB on Kubernetes, 3.8 introduces an &lt;a href="https://github.com/influxdata/helm-charts/tree/master/charts/influxdb3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;official Helm chart&lt;/a&gt; for Enterprise, currently in beta. This makes deployments more predictable, repeatable, and aligned with production best practices.&lt;/p&gt;

&lt;p&gt;The Helm chart packages our recommended deployment patterns into a single chart so you don’t have to maintain custom manifests or piece together a configuration from scratch. It supports common production needs like object storage configuration, cluster settings, and environment-specific overrides, and uses standard Helm mechanisms for installs, upgrades, and rollouts.&lt;/p&gt;

&lt;p&gt;During the beta, we’re focused on refining defaults and ensuring upgrades behave the way operators expect.&lt;/p&gt;

&lt;h2 id="custom-instructions-for-ask-ai-in-explorer"&gt;Custom instructions for Ask AI in Explorer&lt;/h2&gt;

&lt;p&gt;Version 1.6 of our &lt;a href="https://docs.influxdata.com/influxdb3/explorer/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;Explorer UI&lt;/a&gt; expands Ask AI with Custom Instructions, giving users more control over how the AI behaves and what context it uses when generating responses. You can teach Ask AI naming conventions, call out which measurements or tags matter most, or specify how you want results formatted. This makes Ask AI more consistent across sessions, users, and shared environments.&lt;/p&gt;

&lt;p&gt;This is especially useful when multiple teams work against different datasets, but want Ask AI to stay grounded in their specific workflows.&lt;/p&gt;

&lt;p&gt;&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/2eEO8xv8QUIBVGpwhRc6Mu/828b32496ed834c4ecbfd683a1e20c35/image__2___1_.png" alt="influx 3.8 internal image" /&gt;&lt;/p&gt;

&lt;h2 id="other-improvements"&gt;Other improvements&lt;/h2&gt;

&lt;ul&gt;
  &lt;li&gt;Explorer’s line protocol experience is smoother and easier to work with, with clearer validation and more helpful feedback.&lt;/li&gt;
  &lt;li&gt;The Processing Engine includes refinements to write buffering and query handling for sparse datasets, improving stability under uneven workloads.&lt;/li&gt;
  &lt;li&gt;New internal metrics give operators better visibility into ingestion, Processing Engine execution, and storage activity.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id="get-started"&gt;Get started&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.8 is available now. &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;Download the latest release&lt;/a&gt; or pull the newest Docker image for Core or Enterprise.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/explorer/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blogg"&gt;Explorer 1.6&lt;/a&gt; is also available with Ask AI Custom Instructions and improvements across both writing and querying.
Check out the docs (&lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;Core&lt;/a&gt;, &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_8&amp;amp;utm_content=blog"&gt;Enterprise&lt;/a&gt; for more details, and join the conversation in &lt;a href="https://discord.com/invite/9zaNCW2PRT"&gt;Discord&lt;/a&gt; or the &lt;a href="https://influxcommunity.slack.com/join/shared_invite/zt-3hevuqtxs-3d1sSfGbbQgMw2Fj66rZsA#/shared-invite/email"&gt;Community Slack&lt;/a&gt;. Your feedback continues to shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Thu, 18 Dec 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-8/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-8/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.7: One-Click Monitoring, Faster Configuration, and Better Operational Clarity</title>
      <description>&lt;p&gt;InfluxDB 3.7 is now available for both Core and Enterprise, landing alongside version 1.5 of the InfluxDB 3 Explorer UI. This release focuses on giving developers faster visibility into what their system is doing with one-click monitoring, a streamlined installation pathway, and broader updates that simplify day-to-day operations.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is free and open source, optimized for recent data, and licensed under MIT and Apache 2. &lt;a href="https://www.influxdata.com/products/influxdb-3-enterprise/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; extends Core with long-term data retention, clustering, fine-grained security, and advanced management capabilities.&lt;/p&gt;

&lt;h2 id="one-click-system-monitoring-in-explorer-15"&gt;One-click system monitoring in Explorer 1.5&lt;/h2&gt;

&lt;p&gt;Version 1.5 of our &lt;a href="https://docs.influxdata.com/influxdb3/explorer/get-started/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;Explorer UI&lt;/a&gt; introduces a new way to understand how your environment is performing. A single “Enable Monitoring” action configures your system appropriately and begins collecting host-level metrics for the infrastructure running InfluxDB.&lt;/p&gt;

&lt;p&gt;A built-in dashboard tracks these metrics alongside database activity over time, making it easy to see how the system responds under load. The most relevant signals also surface directly in the System Overview, so you can spot issues before they turn into problems.&lt;/p&gt;

&lt;p&gt;This provides an immediate, built-in way to understand the operational health of your running infrastructure. It’s particularly helpful for local development, on-prem deployments, and setups where full monitoring infrastructure isn’t available.
&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/5e4f912a4b3649c8bbc21e3a28425ad4/fae9807f3a749b88b533ba41d08cee96/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;h2 id="faster-installation-and-configuration"&gt;Faster installation and configuration&lt;/h2&gt;

&lt;p&gt;This update also introduces a new Docker Compose installation that starts InfluxDB 3 and Explorer together in one step. The Compose file installs both services, generates the Explorer configuration automatically using a new operator token, and brings everything online immediately. Once the stack is running, you can write data, run queries, and use Explorer without manual setup or additional staging.&lt;/p&gt;

&lt;p&gt;This cuts down the time between installation and first interaction with the system and gives teams a consistent starting point for deployment and testing.&lt;/p&gt;

&lt;h2 id="other-improvements"&gt;Other improvements&lt;/h2&gt;

&lt;p&gt;Finally, this release includes updates focused on operational clarity and system behavior:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;More control over Processing Engine triggers&lt;/li&gt;
  &lt;li&gt;Improved data management when shutting down nodes&lt;/li&gt;
  &lt;li&gt;Enhanced response headers for cleaner integration with secondary services&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Together, these changes improve system reliability and make it easier to understand what’s happening during maintenance and troubleshooting.&lt;/p&gt;

&lt;h2 id="get-started"&gt;&lt;strong&gt;Get started&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.7 is available now. To get started, &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;download the latest version&lt;/a&gt; or pull the newest Docker image for Core or Enterprise.&lt;/p&gt;

&lt;p&gt;Explorer 1.5 is also available with one-click monitoring. Try it in your environment and let us know how it works for you.&lt;/p&gt;

&lt;p&gt;Check out the docs (&lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;Core&lt;/a&gt;, &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/release-notes/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;Enterprise&lt;/a&gt;), and join the conversation in &lt;a href="https://discord.com/invite/9zaNCW2PRT"&gt;Discord&lt;/a&gt; or the &lt;a href="http://influxdata.com/slack/?utm_source=website&amp;amp;utm_medium=influxdb_3_7&amp;amp;utm_content=blog"&gt;Community Slack.&lt;/a&gt; Your feedback continues to shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Thu, 20 Nov 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-7/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-7/</guid>
      <category>Developer</category>
      <category>Product</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.6: Ask AI, Simple Quick Start, and Smarter Automation</title>
      <description>&lt;p&gt;InfluxDB 3.6 is now available for both Core and Enterprise. This release introduces the 1.4 update to InfluxDB 3 Explorer, featuring the beta launch of Ask AI, along with new capabilities for simple startup and expanded functionality in the Processing Engine.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_6&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is free and open source, optimized for recent data, and licensed under MIT and Apache 2. &lt;a href="https://www.influxdata.com/products/influxdb-3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_6&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; extends Core with long-term data retention, clustering, fine-grained security, and management capabilities.&lt;/p&gt;

&lt;h2 id="ask-ai-now-in-beta-for-influxdb-3-explorer"&gt;&lt;strong&gt;Ask AI now in beta for InfluxDB 3 Explorer&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;Version 1.4 of our &lt;a href="https://docs.influxdata.com/influxdb3/explorer/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_6&amp;amp;utm_content=blog"&gt;Explorer UI&lt;/a&gt; includes Ask AI, a new beta feature that brings natural language to time series analysis. Plug in your API key, and Ask AI lets you query your data, documentation, and system operations conversationally, with no SQL required.&lt;/p&gt;

&lt;p&gt;You can say, “show CPU usage by region over the last hour” or “give me a chart of average temperature this week,” and InfluxDB will return the results you need in the format you want. Ask AI can also perform operational tasks like creating databases, generating tokens, or adjusting settings, all with a single prompt.&lt;/p&gt;

&lt;p&gt;Ask AI lowers the barrier for new users and keeps advanced users fast and productive. It’s available now in beta through Explorer 1.4 for both Core and Enterprise.
&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/1c66b027de8a476690a0c9f0c40d5762/c4ff4a75a3a0999e9bb6766792bbf070/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;h2 id="shareable-dashboards"&gt;&lt;strong&gt;Shareable dashboards&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;Explorer 1.4 also adds support for importing and exporting dashboards. You can now share dashboards between environments or move them between Explorer and Grafana using compatible JSON files. This makes it easier to standardize visualizations, collaborate across teams, and back up your dashboards with version control.&lt;/p&gt;

&lt;h2 id="quick-start"&gt;Quick start&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.6 can now start by simply running &lt;code class="language-markup"&gt;influxdb3&lt;/code&gt;. For development or local environments, you no longer need to configure instance or storage information before running the database. IDs and data directories are created automatically, lowering initialization complexity, so you can get started in just a few seconds after download completes.&lt;/p&gt;

&lt;p&gt;Quick start is for developers who want to test or prototype InfluxDB without setup overhead, or want to run in a simple local environment. Environment variables and CLI flags still override defaults, so production deployments remain fully explicit and configurable. This makes it easy to switch from local testing to production without changing workflows.&lt;/p&gt;

&lt;h2 id="a-major-processing-engine-upgrade"&gt;&lt;strong&gt;A major Processing Engine upgrade&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;The Processing Engine in InfluxDB 3 Enterprise enables you to execute custom Python code within the database to automate workflows, transform data, and create API endpoints. InfluxDB 3.6 expands the Processing Engine into a full extensibility layer. It now supports multifile Python plugins, direct uploads and updates, built-in observability, and tighter security controls.&lt;/p&gt;

&lt;p&gt;Plugins can now include multiple files organized as proper Python modules, making code easier to maintain and reuse, with support for both single-file and directory-based plugins. Plugins can be uploaded or updated directly from your local environment without manual file transfers or server restarts, so users can iterate faster on complex data processing logic. All active plugins will continue to work without changes, with full backward compatibility.&lt;/p&gt;

&lt;p&gt;To make management more transparent, InfluxDB now exposes all plugin files through a new plugin files table and a corresponding CLI command. Administrators can monitor which plugins are loaded, their size, and when they were last modified.&lt;/p&gt;

&lt;p&gt;For production environments, new controls manage extensibility and governance together. Custom plugin repositories let organizations define trusted sources for plugins, while package management can now be fully disabled in locked-down environments, ensuring compliance without losing flexibility.&lt;/p&gt;

&lt;h2 id="get-started"&gt;&lt;strong&gt;Get started&lt;/strong&gt;&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.6 is available now. To get started, &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_6&amp;amp;utm_content=blog"&gt;download the latest version&lt;/a&gt; or pull the latest Docker image for Core or Enterprise.&lt;/p&gt;

&lt;p&gt;Ask AI (Beta) is now available in Explorer 1.4. Try it in your environment and share feedback as we expand its capabilities.&lt;/p&gt;

&lt;p&gt;Check out the docs (&lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/"&gt;Core&lt;/a&gt;, &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/release-notes/"&gt;Enterprise&lt;/a&gt;) for details, and let us know what you think in &lt;a href="https://discord.com/invite/9zaNCW2PRT"&gt;Discord&lt;/a&gt; or the &lt;a href="https://influxcommunity.slack.com/join/shared_invite/zt-3hevuqtxs-3d1sSfGbbQgMw2Fj66rZsA#/shared-invite/email"&gt;Community Slack&lt;/a&gt;. Your feedback helps shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Thu, 30 Oct 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-6/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-6/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.5: Explorer Dashboards, Cache Querying, and Expanded Control</title>
      <description>&lt;p&gt;InfluxDB 3.5 is now available for both Core and Enterprise, along with updates to the new Explorer UI that make it easier to save, organize, and query your data. This release highlights the biggest updates since our 3.4 release, including Explorer Dashboards in beta, new cache querying capabilities, and stronger operational tools for managing clusters.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.influxdata.com/products/influxdb/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is free and open source, optimized for recent data, and licensed under MIT and Apache 2. &lt;a href="https://www.influxdata.com/products/influxdb-3-enterprise/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; builds on that foundation with support for longer-term historical queries, high availability, enhanced security, and multi-node deployments.&lt;/p&gt;

&lt;h2 id="explorer-dashboards-beta"&gt;Explorer Dashboards (beta)&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/explorer/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;InfluxDB 3 Explorer&lt;/a&gt; is designed for visualizing, querying, and managing your data stored in InfluxDB 3 Core and Enterprise. Explorer now supports Dashboards, giving you the ability to save and revisit your preferred queries in one place. Whether you’re tracking ongoing metrics or running repeat analyses, Dashboards make Explorer a more powerful workspace for time series monitoring and analysis.
&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/99d2dda6f0894ca49493f49388e5030b/a17fd52a0f9c1cbac951ad6eb8a84e39/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;h2 id="cache-querying-in-explorer"&gt;Cache querying in Explorer&lt;/h2&gt;

&lt;p&gt;InfluxDB 3’s built-in Last Value and Distinct Value Caches eliminate costly full-table scans by providing immediate access to a time series’s most recent or unique values. With the release of 3.5, you can perform ad hoc queries against these caches from Explorer to support exploratory analysis and everyday workflows.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Last Values Cache:&lt;/strong&gt; Pull the most recent values for each series with millisecond latency, ideal for “current state” dashboards or alerting.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Distinct Values Cache:&lt;/strong&gt; Instantly query unique tag and field values, perfect for powering filters, dropdowns, or doing fast metadata lookups.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/fe49f14c6b64413db965abc721ab6952/c917ed78075432c6594dcebb914c85ac/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;h2 id="smarter-operational-visibility-and-performance-improvements"&gt;Smarter operational visibility and performance improvements&lt;/h2&gt;

&lt;p&gt;We’ve also introduced new features to simplify cluster management and improve oversight, and rolled out general improvements for production deployments:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;CLI parameters in system tables&lt;/strong&gt;: Startup parameters for each node are now queryable, giving operators direct visibility into configurations without chasing logs or flags.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Manual node management (Enterprise)&lt;/strong&gt;: Admins can stop cluster nodes in a controlled way, freeing up licensed cores and enabling smoother maintenance workflows.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Tightened security:&lt;/strong&gt; Stronger token permissions prevent unintended access to the internal system database, and configurable TLS verification enables safe object store connections.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id="get-started"&gt;Get started&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.5 is available today. To get started, &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;download InfluxDB 3.5&lt;/a&gt; or pull the latest Docker image for Core and Enterprise.&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;docs&lt;/a&gt; for details, and let us know what you think in &lt;a href="https://discord.com/invite/9zaNCW2PRT"&gt;Discord&lt;/a&gt; or our &lt;a href="http://influxdata.com/slack/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_5&amp;amp;utm_content=blog"&gt;Community Slack&lt;/a&gt;. Your feedback helps shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Tue, 30 Sep 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-5/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-5/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.4: Simpler Cache Management, Provisioned Tokens, and More</title>
      <description>&lt;p&gt;Today, we’re releasing InfluxDB 3.4 for Core and Enterprise, as well as our 1.2 update for the Explorer UI. This release focuses on developer efficiency, operational automation, and targeted security enhancements, giving teams faster setup, smoother workflows, and stronger guardrails for production use.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/core/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_4&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is free and open source, optimized for recent data, and licensed under MIT and Apache 2. &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_4&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; builds on that foundation with support for longer-term historical queries, high availability, enhanced security, and multi-node deployments.&lt;/p&gt;

&lt;h2 id="simpler-cache-creation-and-management"&gt;Simpler cache creation and management&lt;/h2&gt;

&lt;p&gt;We introduced the Last Value and Distinct Value caches to accelerate metadata queries and deliver near real-time access to current values. With 3.4, these caches can now be managed directly in the Explorer UI:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Last Value Cache:&lt;/strong&gt; Instantly fetch the most recent measurements with millisecond latency. You can now configure caches through Explorer with dropdown selectors for databases and fields.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Distinct Value Cache:&lt;/strong&gt; Rapidly retrieve unique tag/field values, ideal for powering dropdowns, metadata queries, or building clean user interfaces. Now, these too can be created and managed via Explorer.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Both cache types are available in the sidebar under &lt;strong&gt;Configure → Caches&lt;/strong&gt; in Explorer, making it easy for users to optimize queries without touching config files. 
&lt;img src="//images.ctfassets.net/o7xu9whrs0u9/c6624999709f4f5792dd000ac1f740c3/aa458225b8602b42c78e8f60ca3908b1/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;h2 id="operational--workflow-improvements"&gt;Operational &amp;amp; workflow improvements&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.4 simplifies setup with automation that removes repetitive steps and gives teams more control. From token provisioning and license management to Homebrew installs, it’s easier to run InfluxDB consistently across Docker Compose, CI/CD, and local development.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Token Provisioning&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;You can now predefine and provision your tokens instead of creating them manually in InfluxDB. This is especially useful for non-interactive workflows, such as Docker Compose and CI/CD, or when you need to generate many tokens at once. Both operator and admin tokens are supported, along with resource tokens in Enterprise.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Automated Licensing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instances can now automatically select a trial or at-home license on first start. This removes a manual step and simplifies complex workflows, including Docker Compose setups.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Security, Bug Fixes, and More&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;InfluxDB 3.4 includes 15+ additional updates and improvements, including suppressing a noisy TableIndexCache log that you may have been seeing a bit too much of recently. Across catalog validations, plugin directory requirements, and InfluxQL updates, this is our most robust release to date. We’ve also added support for a new Azure endpoint and expanded options for token customization. Full details are available in the &lt;a href="https://docs.influxdata.com/influxdb3/core/release-notes/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_4&amp;amp;utm_content=blog"&gt;changelog&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id="getting-started"&gt;Getting started&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.4 is available now. To get started, &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_4&amp;amp;utm_content=blog"&gt;download InfluxDB 3.4&lt;/a&gt; or pull the latest Docker image for &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-core/Dockerfile/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_2&amp;amp;utm_content=blog"&gt;Core&lt;/a&gt; and &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-enterprise/Dockerfile"&gt;Enterprise&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Check out the docs for details, and let us know what you think in &lt;a href="https://discord.gg/vZe2w2Ds8B"&gt;Discord&lt;/a&gt; or our &lt;a href="https://influxdata.com/slack/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_oss_ga&amp;amp;utm_content=blog" target="_blank"&gt;Community Slack&lt;/a&gt;. Your feedback helps shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Wed, 27 Aug 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-4/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-4/</guid>
      <category>Product</category>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s New in InfluxDB 3.3: Managed Plugins, Explorer Updates, and More</title>
      <description>&lt;p&gt;InfluxDB 3.3 is now available for both Core and Enterprise, which introduces new managed plugins for the Processing Engine, making it easier to address common time series tasks with just a plugin. On top of that, 3.3 includes a wide range of performance improvements, feature updates, and bug fixes.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/core/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is free and open source, optimized for recent data, and licensed under MIT and Apache 2. &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; builds on that foundation with support for longer-term historical queries, high availability, enhanced security, and multi-node deployments.&lt;/p&gt;

&lt;h2 id="new-managed-plugins-beta"&gt;New managed plugins (beta)&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.3 introduces a new set of managed plugins via the &lt;a href="https://github.com/influxdata/influxdb3_plugins/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;InfluxDB Plugin Library&lt;/a&gt;, available in beta for both Core and Enterprise. These plugins run inside the Processing Engine and handle common time series tasks (transformation, alerting, downsampling, etc.) right alongside your queries and transformations without extra code, or external services. Install what you need and get on with building.&lt;/p&gt;

&lt;p&gt;The new plugins include:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Monitoring and Notification:&lt;/strong&gt; Define conditions and receive alerts when something important happens.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Downsample:&lt;/strong&gt; Lower resolution where you don’t need high precision. Save space and speed things up.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Anomaly Detection:&lt;/strong&gt; Catch outliers and irregular patterns in real-time.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Forecasting:&lt;/strong&gt; Predict future values based on historical trends.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Metrics Gathering:&lt;/strong&gt; Instantly gather metrics on your host machine’s activity and performance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can use these plugins as is or customize them to your needs. They’re designed to give you building blocks so you can move faster.&lt;/p&gt;

&lt;h2 id="influxdb-3-explorer-11-update"&gt;InfluxDB 3 Explorer 1.1 Update&lt;/h2&gt;

&lt;p&gt;We &lt;a href="https://www.influxdata.com/blog/influxdb-3-2/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;introduced&lt;/a&gt; InfluxDB 3 Explorer last month with its first official release. Today, we’re launching its first major update, which introduces a new way to discover, install, and manage plugins.&lt;/p&gt;

&lt;p&gt;With 1.1, you can now discover new plugins and install them in seconds. You can inspect output logs, edit arguments for fine-tuning, and maintain operational oversight for both plugins from the Plugin Library and your self-created plugins.&lt;/p&gt;

&lt;p&gt;&lt;img class="border-grey my-5" src="//images.ctfassets.net/o7xu9whrs0u9/6e49540e98e84c26afdda6e100f1a1ae/44c80df0672ed31025d6b49ba0149224/unnamed.png" alt="" /&gt;&lt;/p&gt;

&lt;p&gt;Additionally, with the 1.1 update of InfluxDB 3 Explorer, you now get a high-level view of your entire system. From memory pressure to query and write performance, Explorer surfaces detailed insights into the health of your server and all active instances. You can also quickly review the latest queries to identify which ones are putting the most strain on your system’s resources.&lt;/p&gt;

&lt;p&gt;&lt;img class="border-grey my-5" src="//images.ctfassets.net/o7xu9whrs0u9/JqCRkj8fDOixXj8cWhDYI/6f71c1c52fac77de3f010ea075fa56dd/system-overview.png" alt="system-overview" /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/explorer/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;Download InfluxDB 3 Explorer&lt;/a&gt; to get started.&lt;/p&gt;

&lt;h2 id="more-operational-control"&gt;More operational control&lt;/h2&gt;

&lt;p&gt;With InfluxDB 3.3, we’re introducing new features that make it easier to operate and maintain your deployment.&lt;/p&gt;

&lt;p&gt;First, we’ve added a secure Operator token recovery mechanism. If an Operator token is lost, you can now start a dedicated recovery server using a single flag. It allows regeneration of a new token without prior credentials and automatically shuts down after use to prevent misuse. It’s a small, but critical safety net that solves a longstanding operational pain point.&lt;/p&gt;

&lt;p&gt;We’ve also expanded observability to help you better understand system behavior. Write path logs now include database and IP metadata to provide more clarity on ingestion. A new system table for your Processing Engine triggers provides real-time visibility into plugin configurations, making it easier to audit and validate how your Processing Engine is running.&lt;/p&gt;

&lt;p&gt;Together, these enhancements give you more control and insight into your system’s operation.&lt;/p&gt;

&lt;h2 id="get-started"&gt;Get started&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.3 is available today. To get started, &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;download InfluxDB 3.3&lt;/a&gt; or pull the latest Docker image for &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-core/Dockerfile/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;Core&lt;/a&gt; and &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-enterprise/Dockerfile"&gt;Enterprise&lt;/a&gt;. Additionally, you can discover and contribute new plugins to the &lt;a href="https://github.com/influxdata/influxdb3_plugins/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb-3-3&amp;amp;utm_content=blog"&gt;Plugin Library&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Check out the docs for details, and let us know what you think in &lt;a href="https://discord.gg/vZe2w2Ds8B"&gt;Discord&lt;/a&gt; or our &lt;a href="https://influxdata.com/slack/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_oss_ga&amp;amp;utm_content=blog"&gt;Community Slack&lt;/a&gt;. Your feedback helps shape where we go next.&lt;/p&gt;
</description>
      <pubDate>Wed, 30 Jul 2025 06:00:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/influxdb-3-3/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/influxdb-3-3/</guid>
      <category>Product</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
    <item>
      <title>What’s Inside InfluxDB 3.1: New Features for Security, Performance, and Visibility</title>
      <description>&lt;p&gt;&lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=inside_influxdb_3.1&amp;amp;utm_content=blog"&gt;InfluxDB 3.1&lt;/a&gt; is now available for both Core and Enterprise editions, bringing significant improvements that make managing high-volume, high-velocity time series data even easier, faster, and more secure.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/core/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=inside_influxdb_3.1&amp;amp;utm_content=blog"&gt;InfluxDB 3 Core&lt;/a&gt; is the free, open source edition of InfluxDB 3—a high-speed, recent-data engine licensed under MIT and Apache 2. &lt;a href="https://docs.influxdata.com/influxdb3/enterprise/get-started/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=inside_influxdb_3.1&amp;amp;utm_content=blog"&gt;InfluxDB 3 Enterprise&lt;/a&gt; is the commercial version of Core, adding support for longer-term historical queries, high availability, enhanced security, and more.&lt;/p&gt;

&lt;p&gt;This release tightens security, accelerates performance, and gives you better visibility into what’s happening in your database while keeping operational overhead low.&lt;/p&gt;

&lt;h2 id="expanded-token-support"&gt;Expanded token support&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.1 includes expanded token support to give you greater control over access, expiration, and privilege boundaries. This significantly enhances security and administrative flexibility, particularly for Enterprise deployments. Enterprise now supports four distinct types of tokens:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;Operator Token&lt;/strong&gt;: A special, non-removable admin token (_admin) with full system privileges.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Admin Tokens:&lt;/strong&gt; Named tokens with configurable expiration for safe, auditable administration.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Database Tokens:&lt;/strong&gt; Grant precise read/write access to individual databases.&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;System Resource Tokens&lt;/strong&gt;: Allow secure, read-only access to runtime stats and health checks (ideal for monitoring without exposing sensitive internals).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Automatic expiration, regeneration, and resource-based permissions mean you can enforce best practices by default. You can set tokens to automatically expire after specified durations, ensuring your access management remains fresh and secure without manual intervention.&lt;/p&gt;

&lt;p&gt;InfluxDB 3 Core also now supports named tokens, making it easier to implement token rotations for lighter deployments.&lt;/p&gt;

&lt;h2 id="cache-reloading-for-enterprise"&gt;Cache reloading for Enterprise&lt;/h2&gt;

&lt;p&gt;With 3.1, we’ve upgraded both the Last Value Cache and the Distinct Value Cache for Enterprise. They now automatically reload on initial creation and restart, backfilling from historical data. That means:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Your dashboard dropdowns load instantly, even after a restart, for great user experience&lt;/li&gt;
  &lt;li&gt;The most recent values are always available for real-time dashboards and alerting&lt;/li&gt;
  &lt;li&gt;Less planning around when you decide to create a cache&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For anyone running critical monitoring workflows, these changes improve continuity across restarts, maintenance windows, and scaling events.&lt;/p&gt;

&lt;h2 id="enhanced-database-metrics"&gt;Enhanced database metrics&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.1 now gives you more visibility into how your database is running with expanded metrics for catalog operations, query performance, and data ingestion. You can track growth at a granular level, identify slow queries before they become issues, and monitor ingestion in real-time to keep data flowing smoothly. These metrics make it easier to spot inefficiencies early, optimize where it counts, and operate confidently at scale.&lt;/p&gt;

&lt;h2 id="and-50-more-improvements"&gt;And 50+ more improvements&lt;/h2&gt;

&lt;p&gt;InfluxDB 3.1 includes more than 50 enhancements across Core and Enterprise that get into the finer details of the database. Key highlights include improved memory management for more stable workloads and faster HTTP queries, making operations safer and smoother.&lt;/p&gt;

&lt;h2 id="plus-influxdb-3-explorer-beta-2"&gt;Plus: InfluxDB 3 Explorer Beta 2&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://docs.influxdata.com/influxdb3/explorer/"&gt;InfluxDB 3 Explorer Beta 2&lt;/a&gt; is here, which makes it easier to work with your data, manage your setup, and write queries faster than ever. Beta 2 enables streamlined database and table configuration, comprehensive token management, and substantial improvements to querying capabilities. We’ve also added support for AMD architectures to expand where and how you run it. More enhancements are already in the works, so stay tuned for updates in upcoming releases.&lt;/p&gt;

&lt;h2 id="our-path-forward-and-influxdb-32"&gt;Our path forward and InfluxDB 3.2&lt;/h2&gt;

&lt;p&gt;We’re continuing to iterate and build new features for both Core and Enterprise based on your feedback. While we launched InfluxDB 3.1 today, our update to 3.2 is just around the corner, landing in June. A main focus is data management, with built-in retention periods down to the table level and hard deletes for databases and tables. Additionally, we will continue to expand on usability, licensing, and security improvements.&lt;/p&gt;

&lt;h2 id="getting-started"&gt;Getting started&lt;/h2&gt;

&lt;p&gt;Upgrade to InfluxDB 3.1 to start using the latest performance, security, and usability improvements. You can &lt;a href="https://www.influxdata.com/downloads/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=inside_influxdb_3.1&amp;amp;utm_content=blog"&gt;download the newest update&lt;/a&gt; or pull the latest image from Docker for &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-core/Dockerfile"&gt;Core&lt;/a&gt; and &lt;a href="https://github.com/influxdata/influxdata-docker/blob/25b752346444ed1f557dd2ce5d1a834f4448a5ec/influxdb/3.0-enterprise/Dockerfile"&gt;Enterprise&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Explore the docs for full details, and share your feedback in our &lt;a href="https://discord.gg/vZe2w2Ds8B"&gt;Discord&lt;/a&gt; or &lt;a href="https://influxdata.com/slack/?utm_source=website&amp;amp;utm_medium=direct&amp;amp;utm_campaign=influxdb_3_oss_ga&amp;amp;utm_content=blog"&gt;Community Slack&lt;/a&gt; to help shape the future of InfluxDB.&lt;/p&gt;
</description>
      <pubDate>Thu, 29 May 2025 07:30:00 +0000</pubDate>
      <link>https://www.influxdata.com/blog/inside-influxdb-3.1/</link>
      <guid isPermaLink="true">https://www.influxdata.com/blog/inside-influxdb-3.1/</guid>
      <category>Developer</category>
      <author>Peter Barnett (InfluxData)</author>
    </item>
  </channel>
</rss>
