From b418ba558fc7fbcf19d172b216d2dab1bc9afe16 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 23 Jul 2025 12:57:26 -0500 Subject: [PATCH 1/2] hotfix: InfluxDB 3 Enterprise nodes don't need to connect to each other --- content/influxdb3/enterprise/get-started/multi-server.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/influxdb3/enterprise/get-started/multi-server.md b/content/influxdb3/enterprise/get-started/multi-server.md index 56da9360d..130986759 100644 --- a/content/influxdb3/enterprise/get-started/multi-server.md +++ b/content/influxdb3/enterprise/get-started/multi-server.md @@ -19,7 +19,6 @@ Configure nodes with specific _modes_ (ingest, query, process, compact) to optim ## Prerequisites - Shared object store -- Network connectivity between nodes ## Basic multi-node setup @@ -525,4 +524,4 @@ Replace the following placeholders with your values: prevText="Set up InfluxDB" next="/influxdb3/enterprise/get-started/write/" nextText="Write data" -%}} \ No newline at end of file +%}} From f4309d7e2113b0c1bab0e7289fbe048a3935915b Mon Sep 17 00:00:00 2001 From: meelahme Date: Wed, 23 Jul 2025 14:25:56 -0700 Subject: [PATCH 2/2] fix: trying to correct POST request body property names in query SQL API docs --- api-docs/influxdb3/core/v3/ref.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/api-docs/influxdb3/core/v3/ref.yml b/api-docs/influxdb3/core/v3/ref.yml index c27355b9c..b905792d6 100644 --- a/api-docs/influxdb3/core/v3/ref.yml +++ b/api-docs/influxdb3/core/v3/ref.yml @@ -1844,12 +1844,12 @@ components: QueryRequestObject: type: object properties: - database: + db: description: | The name of the database to query. - Required if the query (`query_str`) doesn't specify the database. + Required if the query (`q`) doesn't specify the database. type: string - query_str: + q: description: The query to execute. type: string format: @@ -1868,11 +1868,11 @@ components: type: object additionalProperties: true required: - - database - - query_str + - db + - q example: - database: mydb - query_str: SELECT * FROM mytable + db: mydb + q: SELECT * FROM mytable format: json params: {} CreateDatabaseRequest: