chore(README): updates for beta (#16364)
* feat(docs): updates for beta * fix(readme): addressing pr feedback * chore(readme): addressing feedback from paulpull/16453/head
parent
1af245a649
commit
3a84d5011f
|
@ -113,7 +113,7 @@ jobs:
|
|||
timeout 300 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:9999)" != "200" ]]; do sleep 5; done' || false
|
||||
- run:
|
||||
name: Checkout Tests
|
||||
command: git clone --single-branch --branch 2.0-Alpha https://github.com/bonitoo-io/selenium-accept-infl2.git
|
||||
command: git clone --single-branch --branch 2.0-Beta https://github.com/bonitoo-io/selenium-accept-infl2.git
|
||||
- run:
|
||||
name: Selenium tests
|
||||
command: |
|
||||
|
@ -384,7 +384,7 @@ jobs:
|
|||
environment:
|
||||
GOCACHE: /tmp/go-cache
|
||||
GOFLAGS: "-mod=readonly -p=4" # Go on Circle thinks 32 CPUs are available, but there aren't.
|
||||
DOCKER_VERSION: 2.0.0-alpha
|
||||
DOCKER_VERSION: 2.0.0-beta
|
||||
working_directory: /go/src/github.com/influxdata/influxdb
|
||||
steps:
|
||||
- checkout
|
||||
|
@ -461,25 +461,25 @@ workflows:
|
|||
branches:
|
||||
ignore: /.*/
|
||||
tags:
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+$/
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta)\.[0-9]+$/
|
||||
- golint:
|
||||
filters:
|
||||
branches:
|
||||
ignore: /.*/
|
||||
tags:
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+$/
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta)\.[0-9]+$/
|
||||
- jstest:
|
||||
filters:
|
||||
branches:
|
||||
ignore: /.*/
|
||||
tags:
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+$/
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta)\.[0-9]+$/
|
||||
- jslint:
|
||||
filters:
|
||||
branches:
|
||||
ignore: /.*/
|
||||
tags:
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+$/
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta)\.[0-9]+$/
|
||||
- release:
|
||||
requires:
|
||||
- gotest
|
||||
|
@ -490,4 +490,4 @@ workflows:
|
|||
branches:
|
||||
ignore: /.*/
|
||||
tags:
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-alpha\.[0-9]+$/
|
||||
only: /^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta)\.[0-9]+$/
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## v2.0.0-alpha.22 [unreleased]
|
||||
## v2.0.0-beta.1 [unreleased]
|
||||
|
||||
### Features
|
||||
|
||||
|
|
99
README.md
99
README.md
|
@ -1,37 +1,38 @@
|
|||
# InfluxDB [![CircleCI](https://circleci.com/gh/influxdata/influxdb.svg?style=svg)](https://circleci.com/gh/influxdata/influxdb)
|
||||
|
||||
InfluxDB is an open source time series platform. This includes APIs for storing and querying data, processing it in the background for ETL or monitoring and alerting purposes, user dashboards, and visualizing and exploring the data and more. The master branch on this repo now represents InfluxDB 2.0, which includes functionality for Kapacitor (background processing) and Chronograf (the UI). If you are looking for the 1.x line of releases, there are branches for each of those. InfluxDB 1.8 will be the next (and likely last) release in the 1.x line and the [working branch is here](https://github.com/influxdata/influxdb/tree/1.8).
|
||||
InfluxDB is an open source time series platform. This includes APIs for storing and querying data, processing it in the background for ETL or monitoring and alerting purposes, user dashboards, and visualizing and exploring the data and more. The master branch on this repo now represents the latest InfluxDB, which now includes functionality for Kapacitor (background processing) and Chronograf (the UI) all in a single binary.
|
||||
|
||||
If you are looking for the [InfluxDB 1.x Go Client, we've created a new repo](https://github.com/influxdata/influxdb1-client) for that. There will be a Go client for the 2.0 API coming very soon.
|
||||
The list of InfluxDB Client Libraries that are compatible with the latest version can be found in [our documentation](https://v2.docs.influxdata.com/v2.0/reference/api/client-libraries/).
|
||||
|
||||
If you are looking for the 1.x line of releases, there are branches for each of those. InfluxDB 1.8 will be the next (and likely last) release in the 1.x line and the [working branch is here](https://github.com/influxdata/influxdb/tree/1.8). The [InfluxDB 1.x Go Client can be found here](https://github.com/influxdata/influxdb1-client).
|
||||
|
||||
## State of the Project
|
||||
|
||||
The latest InfluxDB 1.x is the stable release and recommended for production use. InfluxDB 2.0 (what's in the master branch) is currently in the alpha stage. This means that it is **not** recommended for production usage. There may be breaking API changes, breaking changes in the [Flux language](https://github.com/influxdata/flux), changes in the underlying storage format that will require you to delete all your data, and significant changes to the UI. The alpha is intended for feature exploration and gathering feedback on the available feature set. It **should not** be used for performance testing, benchmarks, or other stress tests.
|
||||
The latest InfluxDB 1.x is the stable release and recommended for production use. The InfluxDB that is on the master branch is currently in the beta stage. This means that it is still **NOT** recommended for production usage. There may be breaking API changes, breaking changes in the [Flux language](https://github.com/influxdata/flux), changes in the underlying storage format that will require you to delete all your data, and significant changes to the UI. The beta is intended for feature exploration and gathering feedback on the available feature set. It **SHOULD NOT** be used for performance testing, benchmarks, or other stress tests.
|
||||
|
||||
Additional features will arrive during the weekly alpha updates. We will be cutting versioned releases every week starting in the first week of February. There will also be nightly builds.
|
||||
Additional features will arrive during the beta period until we reach general availability (GA). We will be cutting versioned releases at least every two weeks starting in the first release. There will also be nightly builds based off the latest code in master.
|
||||
|
||||
Once we close on the final feature set of what will be in the first release of InfluxDB in the 2.x line, we will move into the beta phase. At that point, our intention is to avoid making breaking changes to the API or the Flux language. However, it still may be necessary to do so. We will do our best to keep this to an absolute minimum and clearly communicate ANY and ALL changes in this regard via the changelog.
|
||||
Once we close on the final feature set of what will be in the first GA release of InfluxDB in the 2.x line, we will move into the release candidate (RC) phase. At that point, we do not expect there to be breaking changes to the API or Flux language. We may still need to make a breaking change prior to GA due to some unforseen circumstance, but it would need to be extremely important and will be clearly communicated via the changelog and all available channels.
|
||||
|
||||
The beta will still not be recommended for production usage. During the beta period we will focus on bug fixes, performance, and additive features (where time permits).
|
||||
Our current plans are to release RCs suitable for production usage, but we will re-evaluate in consultation with the community as the cycle progresses. During the RC period, we will focus on feedback from users, bug fixes, performance, and additive features (where time permits).
|
||||
|
||||
### What you can expect Alpha and Beta Phases
|
||||
|
||||
#### Alpha
|
||||
**Weekly alpha releases with incremental feature additions and changes to the user interface**
|
||||
|
||||
Planned additions include:
|
||||
- Initial alpha release only supports a single user through the UI and the permission assigned via the security token are "full access". This restriction will be relaxed delivering the ability to define multiple users and change the access permissions provided via the token.
|
||||
- Compatibility layer with 1.x including: 1.x HTTP Write API and HTTP Read API support for InfluxQL
|
||||
- Import Bulk Data from 1.x - convert TSM from 1.x to 2.x
|
||||
- Delete API w/ predicates for time (and other)
|
||||
### What you can expect in the Beta and RC Phases
|
||||
|
||||
#### Beta
|
||||
**Releases every 2 - 3 weeks or as needed**
|
||||
**Releases every two weeks or as needed**
|
||||
|
||||
Planned activities include:
|
||||
Planned additions include:
|
||||
- Compatibility layer with 1.x including: 1.x HTTP Write API and HTTP Read API support for InfluxQL
|
||||
- Import Bulk Data from 1.x - convert TSM from 1.x to 2.x
|
||||
- Performance tuning, stability improvements, and fine tuning based on community feedback.
|
||||
- Finalization of supported client libraries starting with JavaScript and Go.
|
||||
|
||||
#### RC
|
||||
**As needed**
|
||||
|
||||
Planned activities include:
|
||||
- Performance tuning, stability improvements, and fine-tuning based on community feedback.
|
||||
|
||||
### What is **NOT** planned?
|
||||
- Migration of users/security permissions from InfluxDB v1.x to 2.x. ACTION REQUIRED: Re-establish users and permissions within the new unified security model which now spans the underlying database and user interface.
|
||||
- Migration of Continuous Queries. ACTION REQUIRED: These will need to be re-implemented as Flux tasks.
|
||||
|
@ -39,7 +40,7 @@ Planned activities include:
|
|||
|
||||
## Installing from Source
|
||||
|
||||
We have nightly and weekly versioned Docker images, Debian packages, RPM packages, and tarballs of InfluxDB 2.0 available at the [InfluxData downloads page](https://portal.influxdata.com/downloads/).
|
||||
We have nightly and weekly versioned Docker images, Debian packages, RPM packages, and tarballs of InfluxDB available at the [InfluxData downloads page](https://portal.influxdata.com/downloads/).
|
||||
|
||||
## Building From Source
|
||||
|
||||
|
@ -81,16 +82,18 @@ $ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influxd
|
|||
|
||||
## Getting Started
|
||||
|
||||
For a complete getting started guide, please see our full [online documentation site](https://v2.docs.influxdata.com/v2.0/).
|
||||
|
||||
To write and query data or use the API in any way, you'll need to first create a user, credentials, organization and bucket.
|
||||
Everything in InfluxDB 2.0 is organized under a concept of an organization. The API is designed to be multi-tenant.
|
||||
Everything in InfluxDB is organized under a concept of an organization. The API is designed to be multi-tenant.
|
||||
Buckets represent where you store time series data.
|
||||
They're synonymous with what was previously in InfluxDB 1.x a database and retention policy.
|
||||
|
||||
The simplest way to get set up is to point your browser to [http://localhost:9999](http://localhost:9999) and go through the prompts.
|
||||
|
||||
**Note**: Port 9999 will be used by the API server during the alpha and beta phases of development of InfluxDB v2.0.
|
||||
This should allow a v2.0-alpha instance to be run alongside a v1.x instance without interfering on port 8086.
|
||||
InfluxDB v2.0 will thereafter continue to use 8086.
|
||||
**Note**: Port 9999 will be used during the beta phases of development of InfluxDB v2.0.
|
||||
This should allow a v2.0-beta instance to be run alongside a v1.x instance without interfering on port 8086.
|
||||
InfluxDB will thereafter continue to use 8086.
|
||||
|
||||
You can also get set up from the CLI using the subcommands `influx user`, `influx auth`, `influx org` and `influx bucket`,
|
||||
or do it all in one breath with `influx setup`:
|
||||
|
@ -99,36 +102,36 @@ or do it all in one breath with `influx setup`:
|
|||
```
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx setup
|
||||
Welcome to InfluxDB 2.0!
|
||||
Please type your primary username: user
|
||||
Please type your primary username: marty
|
||||
|
||||
Please type your password: my-password
|
||||
Please type your password:
|
||||
|
||||
Please type your password again: my-password
|
||||
Please type your password again:
|
||||
|
||||
Please type your primary organization name.: my-org
|
||||
Please type your primary organization name.: InfluxData
|
||||
|
||||
Please type your primary bucket name.: my-bucket
|
||||
Please type your primary bucket name.: telegraf
|
||||
|
||||
Please type your retention period in hours.
|
||||
Or press ENTER for infinite.: 72
|
||||
|
||||
|
||||
You have entered:
|
||||
Username: user
|
||||
Organization: my-org
|
||||
Bucket: my-bucket
|
||||
Username: marty
|
||||
Organization: InfluxData
|
||||
Bucket: telegraf
|
||||
Retention Period: 72 hrs
|
||||
Confirm? (y/n): y
|
||||
|
||||
UserID Username Organization Bucket
|
||||
033a3f2c5ccaa000 user my-org my-bucket
|
||||
Your token has been stored in /Users/you/.influxdbv2/credentials
|
||||
033a3f2c5ccaa000 marty InfluxData Telegraf
|
||||
Your token has been stored in /Users/marty/.influxdbv2/credentials
|
||||
```
|
||||
|
||||
You may get into a development loop where `influx setup` becomes tedious.
|
||||
Some added flags can help:
|
||||
```
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx setup --username user --password my-password --org my-org --bucket my-bucket --retention 168 --token my-token --force
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx setup --username marty --password F1uxKapacit0r85 --org InfluxData --bucket telegraf --retention 168 --token where-were-going-we-dont-need-roads --force
|
||||
```
|
||||
|
||||
`~/.influxdbv2/credentials` contains your auth token.
|
||||
|
@ -139,54 +142,58 @@ You may need the organization ID and bucket ID later:
|
|||
```
|
||||
$ influx org find
|
||||
ID Name
|
||||
033a3f2c708aa000 my-org
|
||||
033a3f2c708aa000 InfluxData
|
||||
```
|
||||
|
||||
```
|
||||
$ influx bucket find
|
||||
ID Name Retention Organization OrganizationID
|
||||
033a3f2c710aa000 my-bucket 72h0m0s my-org 033a3f2c708aa000
|
||||
033a3f2c710aa000 telegraf 72h0m0s InfluxData 033a3f2c708aa000
|
||||
```
|
||||
|
||||
Write to measurement `m`, with tag `v=2`, in bucket `my-bucket`, which belongs to organization `my-org`:
|
||||
Write to measurement `m`, with tag `v=2`, in bucket `telegraf`, which belongs to organization `InfluxData`:
|
||||
|
||||
```
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx write --org my-org --bucket my-bucket --precision s "m v=2 $(date +%s)"
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx write --org InfluxData --bucket telegraf --precision s "m v=2 $(date +%s)"
|
||||
```
|
||||
|
||||
Write the same point using `curl`:
|
||||
|
||||
```
|
||||
curl --header "Authorization: Token $(cat ~/.influxdbv2/credentials)" --data-raw "m v=2 $(date +%s)" "http://localhost:9999/api/v2/write?org=033a3f2c708aa000&bucket=033a3f2c710aa000&precision=s"
|
||||
curl --header "Authorization: Token $(cat ~/.influxdbv2/credentials)" --data-raw "m v=2 $(date +%s)" "http://localhost:9999/api/v2/write?org=InfluxData&bucket=telegraf&precision=s"
|
||||
```
|
||||
|
||||
Read that back with a simple Flux query (currently, the `query` subcommand does not have a `--org` flag):
|
||||
Read that back with a simple Flux query:
|
||||
|
||||
```
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx query --org-id 033a3f2c708aa000 'from(bucket:"my-bucket") |> range(start:-1h)'
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx query -o InfluxData 'from(bucket:"telegraf") |> range(start:-1h)'
|
||||
Result: _result
|
||||
Table: keys: [_start, _stop, _field, _measurement]
|
||||
_start:time _stop:time _field:string _measurement:string _time:time _value:float
|
||||
------------------------------ ------------------------------ ---------------------- ---------------------- ------------------------------ ----------------------------
|
||||
2019-01-10T19:24:06.806244000Z 2019-01-10T20:24:06.806244000Z v m 2019-01-10T20:04:09.000000000Z 2
|
||||
2019-12-30T22:19:39.043918000Z 2019-12-30T23:19:39.043918000Z v m 2019-12-30T23:17:02.000000000Z 2
|
||||
```
|
||||
|
||||
Use the fancy REPL:
|
||||
|
||||
```
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx repl --org my-org
|
||||
> from(bucket:"my-bucket") |> range(start:-1h)
|
||||
$ bin/$(uname -s | tr '[:upper:]' '[:lower:]')/influx repl -o InfluxData
|
||||
> from(bucket:"telegraf") |> range(start:-1h)
|
||||
Result: _result
|
||||
Table: keys: [_start, _stop, _field, _measurement]
|
||||
_start:time _stop:time _field:string _measurement:string _time:time _value:float
|
||||
------------------------------ ------------------------------ ---------------------- ---------------------- ------------------------------ ----------------------------
|
||||
2019-01-10T19:36:23.361220000Z 2019-01-10T20:36:23.361220000Z v m 2019-01-10T20:04:09.000000000Z 2
|
||||
2019-12-30T22:22:44.776351000Z 2019-12-30T23:22:44.776351000Z v m 2019-12-30T23:17:02.000000000Z 2
|
||||
>
|
||||
```
|
||||
|
||||
## Introducing Flux
|
||||
|
||||
We recently announced Flux, the MIT-licensed data scripting language (previously named IFQL). The source for Flux is [available on GitHub](https://github.com/influxdata/flux). Learn more about Flux from [CTO Paul Dix's presentation](https://speakerdeck.com/pauldix/flux-number-fluxlang-a-new-time-series-data-scripting-language).
|
||||
Flux is an MIT-licensed data scripting language (previously named IFQL) used for querying time series data from InfluxDB. The source for Flux is [available on GitHub](https://github.com/influxdata/flux). Learn more about Flux from [CTO Paul Dix's presentation](https://speakerdeck.com/pauldix/flux-number-fluxlang-a-new-time-series-data-scripting-language).
|
||||
|
||||
## Contributing to the Project
|
||||
|
||||
InfluxDB is an [MIT licensed](LICENSE) open source project and we love our community. The fastest way to get something fixed is to open a PR. Check out our [contributing](CONTRIBUTING.md) guide if you're interested in helping out. Also, join us on our [Community Slack Workspace](https://influxdata.com/slack) if you have questions or comments for our engineering teams.
|
||||
|
||||
## CI and Static Analysis
|
||||
|
||||
|
|
Loading…
Reference in New Issue