Merge pull request #1571 from influxdata/RC-0-release-notes

RC updates
pull/1572/head
kelseiv 2020-09-30 12:15:31 -07:00 committed by GitHub
commit eb700250a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 71 additions and 9 deletions

View File

@ -9,7 +9,6 @@ menu:
influxdb_2_0:
name: Query with InfluxQL
parent: Query data
products: [cloud]
related:
- /influxdb/v2.0/reference/api/influxdb-1x/
- /influxdb/v2.0/reference/api/influxdb-1x/query
@ -43,6 +42,7 @@ By default, the `/query` compatibility endpoint returns results in **JSON**.
To return results as **CSV**, include the `Accept: application/csv` header.
## Database and retention policy mapping
InfluxDB 2.0 combines the 1.x concept of [databases](/influxdb/v1.8/concepts/glossary/#database)
and [retention policies](/influxdb/v1.8/concepts/glossary/#retention-policy-rp)
into [buckets](/influxdb/v2.0/reference/glossary/#bucket).
@ -51,6 +51,7 @@ policies are mapped to buckets using the **database and retention policy (DBRP)
_See [DBRP mapping](/influxdb/v2.0/reference/api/influxdb-1x/dbrp/) for more information._
## InfluxQL support
InfluxQL in InfluxDB 2.0 supports **read-only** queries (with two exceptions shown below).
{{< flex >}}

View File

@ -8,7 +8,6 @@ menu:
parent: InfluxDB v2 API
weight: 104
influxdb/v2.0/tags: [influxql, query, write]
products: [cloud]
related:
- /influxdb/v2.0/query-data/influxql
---

View File

@ -8,7 +8,6 @@ menu:
name: DBRP mapping
parent: 1.x compatibility
weight: 302
products: [cloud]
related:
- /influxdb/v2.0/reference/api/influxdb-1x/query
- /influxdb/v2.0/reference/api/influxdb-1x/write

View File

@ -9,7 +9,6 @@ menu:
parent: 1.x compatibility
weight: 301
influxdb/v2.0/tags: [influxql, query]
products: [cloud]
list_code_example: |
<pre>
<span class="api get">GET</span> https://cloud2.influxdata.com/query

View File

@ -2,7 +2,7 @@
title: /write 1.x compatibility API
list_title: /write
description: >
The `/write` 1.x compatibilty endpoint writes data to InfluxDB 2.0 using patterns from the
The `/write` 1.x compatibility endpoint writes data to InfluxDB 2.0 using patterns from the
InfluxDB 1.x `/write` API endpoint.
menu:
influxdb_2_0_ref:
@ -10,7 +10,6 @@ menu:
parent: 1.x compatibility
weight: 301
influxdb/v2.0/tags: [write]
products: [cloud]
list_code_example: |
<pre>
<span class="api post">POST</span> https://cloud2.influxdata.com/write
@ -19,7 +18,7 @@ related:
- /influxdb/v2.0/reference/syntax/line-protocol
---
The `/write` 1.x compatibilty endpoint writes data to InfluxDB 2.0 using patterns from the
The `/write` 1.x compatibility endpoint writes data to InfluxDB 2.0 using patterns from the
InfluxDB 1.x `/write` API endpoint.
Use the `POST` request method to write [line protocol](/influxdb/v2.0/reference/syntax/line-protocol/)
to the `/write` endpoint.

View File

@ -206,7 +206,7 @@ Active Name URL Org
* influx_old http://localhost:9999 InfluxData
```
You can now send commands to each of them as needed using the [`-c, --active-config`]() option in the CLI.
You can now send commands to each of them as needed using the [`-c, --active-config`](/influxdb/v2.0/reference/cli/influx/#commands) option in the CLI.
## 7. Copy all resources from old instance to the new one

View File

@ -8,6 +8,72 @@ menu:
weight: 101
---
## v2.0.0-rc.0 [2020-09-29]
{{% warn %}}
#### Manual upgrade required
To simplify the migration for existing users of InfluxDB 1.x, this release includes significant breaking changes that require a manual upgrade from all alpha and beta versions. For more information, see [Upgrade to InfluxDB OSS 2.0rc0](/influxdb/v2.0/reference/rc0-upgrade-guide/),
{{% /warn %}}
### Breaking changes
#### Manual upgrade
- To continue using data from InfluxDB 2.0 beta 16 or earlier, you must move all existing data out of the `~/.influxdbv2` (or equivalent) path, including `influxd.bolt`. All existing dashboards, tasks, integrations, alerts, users, and tokens must be recreated. For information on how to migrate your data, see [Upgrade to InfluxDB OSS 2.0rc0](/influxdb/v2.0/reference/rc0-upgrade-guide/).
#### Port update to 8086
- Change the default port of InfluxDB from 9999 back to 8086. If you would still like to run on port 9999, you can start `influxd` with the `--http-bind-address` option. You must also [update any InfluxDB CLI configuration profiles](/influxdb/v2.0/reference/cli/influx/config/set/) with the new port number.
#### Support for 1.x storage engine and InfluxDB 1.x compatibility API
- Port the TSM1 storage engine. This change supports a multi-shared storage engine and InfluxQL writes and queries using the InfluxDB 1.x API compatibility [`/write`](/influxdb/v2.0/reference/api/influxdb-1x/write/) and [`/query`](/influxdb/v2.0/reference/api/influxdb-1x/query/) endpoints.
#### Disable delete with predicate API
- Disable the delete with predicate API (`/api/v2/delete`). This API now returns a `501 Not implemented` message.
### Features
#### Load Data redesign
- Update the Load Data page to increase discovery and ease of use. Now, you can [load data from sources in the InfluxDB user interface](/influxdb/v2.0/write-data/load-data/).
#### Community templates added to InfluxDB UI
- Add [InfluxDB community templates](/influxdb/v2.0/influxdb-templates/) directly in the InfluxDB user interface (UI).
#### New data sources
- Add InfluxDB v2 Listener, NSD, OPC-UA, and Windows Event Log to the Sources page.
#### CLI updates
- Add option to print raw query results in [`influx query`](/influxdb/v2.0/reference/cli/influx/query/).
- Add ability to export resources by name using [`influx export`](/influxdb/v2.0/reference/cli/influx/export/).
- Add new processing options and enhancements to [`influx write`](/influxdb/v2.0/reference/cli/influx/write/).
- Add `--active-config` flag to [`influx` commands](/influxdb/v2.0/reference/cli/influx/#commands) to set the configuration for a single command.
- Add `influxd`[configuration options](/influxdb/v2.0/reference/config-options/#configuration-options) for storage options and InfluxQL coordinator tuning.
- Add `max-line-length` switch to the [`influx write`](/influxdb/v2.0/reference/cli/influx/write/) command to address `token too long errors` for large inputs.
#### API updates
- List buckets in the API now supports the `after` (ID) parameter as an alternative to `offset`.
#### Task updates
- Record last success and failure run times in the task.
- Inject the task option `latestSuccessTime` in Flux `Extern`.
### Bug Fixes
- Add description to [`influx auth`](influxdb/v2.0/reference/cli/influx/auth/) command outputs.
- Resolve issues with check triggers in notification tasks by including the edge of the observed boundary.
- Detect and provide warning about duplicate tag names when writing CSV data using `influx write`.
- Ensure the group annotation does not override the existing line part (measurement, field, tag, time) in a CSV group annotation.
- Added `PATCH` to the list of allowed methods.
## v2.0.0-beta.16 [2020-08-06]
{{% warn %}}
@ -37,7 +103,6 @@ This release includes breaking changes:
- Alerts page filter inputs now have tab indices for keyboard navigation.
## v2.0.0-beta.15 [2020-07-23]
### Features