From d00e9b1d54d554663005475ffbb69a8d82893788 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Mon, 13 Jan 2025 07:31:40 -0700 Subject: [PATCH 1/3] Add alpha notification (#5757) --- data/notifications.yaml | 53 ++++++++++++++++------------------------- 1 file changed, 20 insertions(+), 33 deletions(-) diff --git a/data/notifications.yaml b/data/notifications.yaml index 35d8bef68..40b73d97b 100644 --- a/data/notifications.yaml +++ b/data/notifications.yaml @@ -39,39 +39,26 @@ # - [The plan for InfluxDB 3.0 Open Source](https://influxdata.com/blog/the-plan-for-influxdb-3-0-open-source) # - [InfluxDB 3.0 benchmarks](https://influxdata.com/blog/influxdb-3-0-is-2.5x-45x-faster-compared-to-influxdb-open-source/) -# - id: v3-enhancements-clustered-ga -# level: note -# scope: -# - / -# exclude: -# - /influxdb/cloud/ -# - /influxdb/v1/ -# - /influxdb/v2/ -# - /flux/v0/ -# - /telegraf/ -# - /kapacitor/ -# - /chronograf/ -# title: InfluxDB v3 enhancements and InfluxDB Clustered is now generally available -# slug: | -# New capabilities, including faster query performance and management -# tooling advance the InfluxDB v3 product line. -# InfluxDB Clustered is now generally available. -# message: | -# ### InfluxDB v3 performance and features +- id: influxdb3-alpha + level: note + scope: + - / + title: InfluxDB 3 Open Source Now in Public Alpha -# The InfluxDB v3 product line has seen significant enhancements in query -# performance and has made new management tooling available. These enhancements -# include an operational dashboard to monitor the health of your InfluxDB cluster, -# single sign-on (SSO) support in InfluxDB Cloud Dedicated, and new management -# APIs for tokens and databases. + slug: | + InfluxDB 3 Open Source is now available for alpha testing, licensed under MIT or Apache 2 licensing. + message: | + We are releasing two products as part of the alpha. -# [Learn about the new v3 enhancements](https://www.influxdata.com/blog/scaling-time-series-workloads-influxdb) + InfluxDB 3 Core, is our new open source product. + It is a recent-data engine for time series and event data. + InfluxDB 3 Enterprise is a commercial version that builds on Core’s + foundation, adding historical query capability, read replicas, high + availability, scalability, and fine-grained security. -# --- - -# ### InfluxDB Clustered general availability - -# InfluxDB Clustered is now generally available and gives you the power of -# InfluxDB v3 in your self-managed stack. - -# [Talk to us about InfluxDB Clustered](https://www.influxdata.com/products/influxdb-clustered/) + For more information on how to get started, check out: + + - [Announcement blog from InfluxData Founder & CTO Paul Dix](https://www.influxdata.com/blog/influxdb3-open-source-public-alpha) + - Getting Started guides for + [InfluxDB 3 Core](https://docs.influxdata.com/influxdb3/core/get-started/) + and [InfluxDB 3 Enterprise](https://docs.influxdata.com/influxdb3/enterprise/get-started/) From d9ba71c58acf4dde7165da28e297da36fbf24174 Mon Sep 17 00:00:00 2001 From: peterbarnett03 Date: Mon, 13 Jan 2025 09:37:47 -0500 Subject: [PATCH 2/3] chore: add clarity on Windows (#5761) Co-authored-by: Scott Anderson --- content/shared/v3-core-get-started/_index.md | 4 ++-- content/shared/v3-enterprise-get-started/_index.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/shared/v3-core-get-started/_index.md b/content/shared/v3-core-get-started/_index.md index baef3f237..9ab44eb64 100644 --- a/content/shared/v3-core-get-started/_index.md +++ b/content/shared/v3-core-get-started/_index.md @@ -55,7 +55,7 @@ Or, if you prefer, you can download and install {{% product-name %}} from [build #### Run the install script -Enter the following command to use [curl](https://curl.se/download.html)to download the script and install {{% product-name %}}, regardless of your operating system: +Enter the following command to use [curl](https://curl.se/download.html) to download the script and install {{% product-name %}} for MacOS and Linux operating systems: ```bash curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh @@ -75,7 +75,7 @@ source ~/.zshrc #### Optional: Download build artifacts and Docker images -Download the latest build artifacts and Docker images from the links below. These are updated with every merge into `main`. +Download the latest build artifacts — including Windows — and Docker images from the links below. These are updated with every merge into `main`. ##### {{% product-name %}} (latest): * Docker: [quay.io/influxdb/influxdb3-core:latest](https://quay.io/influxdb/influxdb3-core:latest) diff --git a/content/shared/v3-enterprise-get-started/_index.md b/content/shared/v3-enterprise-get-started/_index.md index 340d0838c..8d0ba03f5 100644 --- a/content/shared/v3-enterprise-get-started/_index.md +++ b/content/shared/v3-enterprise-get-started/_index.md @@ -55,7 +55,7 @@ Or, if you prefer, you can download and install {{% product-name %}} from [build #### Run the install script -Enter the following command to use [curl](https://curl.se/download.html)to download the script and install {{% product-name %}}, regardless of your operating system: +Enter the following command to use [curl](https://curl.se/download.html) to download the script and install {{% product-name %}}, for MacOS and Linux operating systems: ```bash curl -O https://www.influxdata.com/d/install_influxdb3.sh && sh install_influxdb3.sh enterprise @@ -75,7 +75,7 @@ source ~/.zshrc #### Optional: Download build artifacts and Docker images -Download the latest build artifacts and Docker images from the links below. These are updated with every merge into `main`. +Download the latest build artifacts — including Windows — and Docker images from the links below. These are updated with every merge into `main`. ##### {{% product-name %}} (latest): From 81e11c52880c161f011a3c26a9ef16094ab08e81 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Mon, 13 Jan 2025 07:41:15 -0700 Subject: [PATCH 3/3] hotfix: update core and enterprise install instructions --- content/influxdb3/core/install.md | 6 ++++++ content/influxdb3/enterprise/install.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/content/influxdb3/core/install.md b/content/influxdb3/core/install.md index c16442716..951c1910c 100644 --- a/content/influxdb3/core/install.md +++ b/content/influxdb3/core/install.md @@ -33,6 +33,12 @@ S3-compatible API, such as [Minio](https://min.io/). ## Quick install +Use the InfluxDB 3 quick install script to install {{< product-name >}} on +**Linux** and **macOS**. + +> [!Important] +> If using Windows, [download the InfluxDB 3 Core Windows binary](?t=Windows#download-influxdb-3-core-binaries). + 1. Use the following command to download and install the appropriate {{< product-name >}} package on your local machine: diff --git a/content/influxdb3/enterprise/install.md b/content/influxdb3/enterprise/install.md index 8edbf4636..8c63ffe0e 100644 --- a/content/influxdb3/enterprise/install.md +++ b/content/influxdb3/enterprise/install.md @@ -33,6 +33,12 @@ S3-compatible API, such as [Minio](https://min.io/). ## Quick install +Use the InfluxDB 3 quick install script to install {{< product-name >}} on +**Linux** and **macOS**. + +> [!Important] +> If using Windows, [download the InfluxDB 3 Enterprise Windows binary](?t=Windows#download-influxdb-3-enterprise-binaries). + 1. Use the following command to download and install the appropriate {{< product-name >}} package on your local machine: