Merge pull request #5615 from influxdata/ross-statik-documentation-link-fix
Fixed incorrect documentation link in admin UIpull/5633/head
commit
66672e787f
|
@ -22,11 +22,11 @@ name, a port and the cluster user credentials if applicable. The default port is
|
|||
8086. You can customize these settings to your specific installation via the
|
||||
**InfluxDB** configuration file.
|
||||
|
||||
Thought not necessary for experimentation, you may want to create a new user
|
||||
Though not necessary for experimentation, you may want to create a new user
|
||||
and authenticate the connection to your database.
|
||||
|
||||
For more information please check out the
|
||||
[Cluster Admin Docs](http://influxdb.com/docs/v0.9/query_language/database_administration.html).
|
||||
[Admin Docs](https://docs.influxdata.com/influxdb/v0.10/administration).
|
||||
|
||||
For the impatient, you can create a new admin user _bubba_ by firing off the
|
||||
[InfluxDB CLI](https://github.com/influxdata/influxdb/blob/master/cmd/influx/main.go).
|
||||
|
|
|
@ -748,7 +748,7 @@ func (c *CommandLine) help() {
|
|||
show field keys show field key information
|
||||
|
||||
A full list of influxql commands can be found at:
|
||||
https://influxdb.com/docs/v0.9/query_language/spec.html
|
||||
https://docs.influxdata.com/influxdb/v0.10/query_language/spec
|
||||
`)
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ http://get.influxdb.org.s3.amazonaws.com/influxdb-0.8.9-1.x86_64.rpm
|
|||
|
||||
`0.8.9` exports raw data to a flat file that includes two sections, `DDL` and `DML`. You can choose to export them independently (see below).
|
||||
|
||||
The `DDL` section contains the sql commands to create databases and retention policies. the `DML` section is [line protocol](https://github.com/influxdata/influxdb/blob/master/tsdb/README.md) and can be directly posted to the [http endpoint](https://influxdb.com/docs/v0.9/guides/writing_data.html) in `0.9`. Remember that batching is important and we don't recommend batch sizes over 5k.
|
||||
The `DDL` section contains the sql commands to create databases and retention policies. the `DML` section is [line protocol](https://github.com/influxdata/influxdb/blob/master/tsdb/README.md) and can be directly posted to the [http endpoint](https://docs.influxdata.com/influxdb/v0.10/guides/writing_data) in `0.10`. Remember that batching is important and we don't recommend batch sizes over 5k without further testing.
|
||||
|
||||
You need to specify a database and shard group when you export.
|
||||
|
||||
|
@ -55,18 +55,18 @@ curl -o export.dml.gz --compressed http://username:password@http://localhost:808
|
|||
|
||||
### Assumptions
|
||||
|
||||
- Series name mapping follows these [guidelines](https://influxdb.com/docs/v0.8/advanced_topics/schema_design.html)
|
||||
- Database name will map directly from `0.8` to `0.9`
|
||||
- Series name mapping follows these [guidelines](https://docs.influxdata.com/influxdb/v0.8/advanced_topics/schema_design/)
|
||||
- Database name will map directly from `0.8` to `0.10`
|
||||
- Shard Spaces map to Retention Policies
|
||||
- Shard Space Duration is ignored, as in `0.9` we determine shard size automatically
|
||||
- Shard Space Duration is ignored, as in `0.10` we determine shard size automatically
|
||||
- Regex is used to match the correct series names and only exports that data for the database
|
||||
- Duration becomes the new Retention Policy duration
|
||||
|
||||
- Users are not migrated due to inability to get passwords. Anyone using users will need to manually set these back up in `0.9`
|
||||
- Users are not migrated due to inability to get passwords. Anyone using users will need to manually set these back up in `0.10`
|
||||
|
||||
### Upgrade Recommendations
|
||||
|
||||
It's recommended that you upgrade to `0.9.3` first and have all your writes going there. Then, on the `0.8.X` instances, upgrade to `0.8.9`.
|
||||
It's recommended that you upgrade to `0.9.3` or later first and have all your writes going there. Then, on the `0.8.X` instances, upgrade to `0.8.9`.
|
||||
|
||||
It is important that when exporting you change your config to allow for the http endpoints not timing out. To do so, make this change in your config:
|
||||
|
||||
|
@ -190,4 +190,4 @@ During the import, a status message will write out for every 100,000 points impo
|
|||
2015/07/29 22:18:28 error writing batch: write failed: field type conflict: input field "value" on measurement "metric" is type float64, already exists as type integer
|
||||
```
|
||||
|
||||
This is due to the fact that in `0.8` a field could get created and saved as int or float types for independent writes. In `0.9` the field has to have a consistent type.
|
||||
This is due to the fact that in `0.8` a field could get created and saved as int or float types for independent writes. In `0.9` and greater the field has to have a consistent type.
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
<a href="#" data-toggle="modal" data-target="#myModal">Write Data</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://influxdb.com/docs/v0.9/introduction/getting_started.html" target="_blank">Documentation</a>
|
||||
<a href="https://docs.influxdata.com/influxdb/v0.10/introduction/getting_started" target="_blank">Documentation</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Please note that this file is automatically generated by the
|
||||
[statik](https://github.com/rakyll/statik) tool, and should not be
|
||||
updated directly. For more information, please see the Admin UI readme
|
||||
available at `/shared/admin/README.md`.
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue