-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update install.md #15
base: master
Are you sure you want to change the base?
Conversation
@@ -159,29 +159,29 @@ CREATE TABLE graphite.metrics ( date Date DEFAULT toDate(0), name String, leve | |||
CREATE TABLE graphite.data ( metric String, value Float64, timestamp UInt32, date Date, updated UInt32) ENGINE = GraphiteMergeTree(date, (metric, timestamp), 8192, 'graphite_rollup'); | |||
``` | |||
|
|||
**Notice**: If you don't want ClickHouse to rollup data, you can use ReplacingMergeTree instead of GraphiteMergeTree. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use GraphiteMergeTree instead of GraphiteMergeTree, if Clickhouse data roll up is unnecessary
?
|
||
|
||
Graphouse | ||
--------- | ||
- Add ClickHouse debian repo. [See doc.](https://clickhouse.yandex/reference_en.html#Installing) | ||
- [Install JDK8.](https://tecadmin.net/install-oracle-java-8-ubuntu-via-ppa/) | ||
- Install Graphouse `sudo agt-get install graphouse` | ||
- Set `graphouse.clickhouse.retention-config` property in graphouse config /etc/graphouse/graphouse.properties. You can skip this step, then [default config](../src/main/java/ru/yandex/market/graphouse/retention/DefaultRetentionProvider.java#L29) will be used |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Set... otherwise ... will be used
?
See [Configuration](config.md) for more details. | ||
|
||
|
||
Graphite-web | ||
------------ | ||
- Install [graphite-web](http://graphite.readthedocs.io/en/latest/), if you don't have it already. You don't need carbon or whisper, Graphouse and ClickHouse completely replace them. | ||
- Add graphouse plugin `/opt/graphouse/bin/graphouse.py` to your graphite webapp root dir. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy into
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Я же дальше предлагаю симлинком это сделать
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ок, тогда 2 вопроса:
- ИМХО формулировка "добавь плагин в папку" немного странная. Как тебе такая формулировка:
Install Graphouse module into your Graphite directory
)? - И про симлинк - для создания симлинка
sudo
не всегда нужен. Думаю, более корректно, указывать команду без него
|
||
|
||
Graphouse | ||
--------- | ||
- Add ClickHouse debian repo. [See doc.](https://clickhouse.yandex/reference_en.html#Installing) | ||
- [Install JDK8.](https://tecadmin.net/install-oracle-java-8-ubuntu-via-ppa/) | ||
- Install Graphouse `sudo agt-get install graphouse` | ||
- Set `graphouse.clickhouse.retention-config` property in graphouse config /etc/graphouse/graphouse.properties. You can skip this step, then [default config](../src/main/java/ru/yandex/market/graphouse/retention/DefaultRetentionProvider.java#L29) will be used | ||
- Start graphouse `sudo /etc/init.d/graphouse start` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sudo service graphouse start
is also valid command.
See [Configuration](config.md) for more details. | ||
|
||
|
||
Graphite-web | ||
------------ | ||
- Install [graphite-web](http://graphite.readthedocs.io/en/latest/), if you don't have it already. You don't need carbon or whisper, Graphouse and ClickHouse completely replace them. | ||
- Add graphouse plugin `/opt/graphouse/bin/graphouse.py` to your graphite webapp root dir. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ок, тогда 2 вопроса:
- ИМХО формулировка "добавь плагин в папку" немного странная. Как тебе такая формулировка:
Install Graphouse module into your Graphite directory
)? - И про симлинк - для создания симлинка
sudo
не всегда нужен. Думаю, более корректно, указывать команду без него
|
No description provided.