You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
Metrictank will compress the data into chunks in RAM, a configurable number of the most recent data
21
21
is kept in RAM, but the chunks are being saved to Cassandra as well. You can use a single Cassandra
22
22
instance or a cluster. Metrictank will also respond to queries: if the data is recent, it'll come out of
23
23
RAM, and older data is fetched from cassandra. This happens transparantly.
24
-
Metrictank maintains an index of metrics metadata, for all series it sees.
24
+
Metrictank maintains an index of metrics metadata, for all series it sees.
25
25
You can use an index entirely in memory, or backed by Cassandra for persistence.
26
26
You can query metrictank directly (it has fast, but limited built-in processing and will fallback to graphite when needed)
27
27
or you can also just query graphite which will always use graphite's processing but use metrictank as a datastore.
@@ -215,16 +215,16 @@ EOF
215
215
216
216
### Kafka
217
217
218
-
Kafka 0.10.0.1 is highly recommended. 0.10.0.0 and 0.9 should work too, with some caveats [explained here](https://github.com/grafana/metrictank/blob/master/docs/kafka.md)
218
+
Kafka 2.0.0 is highly recommended, though older versions work too. [more info](https://github.com/grafana/metrictank/blob/master/docs/kafka.md)
219
219
220
-
* Download kafka. Find a mirror at https://www.apache.org/dyn/closer.cgi?path=/kafka/0.10.0.1/kafka_2.11-0.10.0.1.tgz, and download kafka to your server.
220
+
* Download kafka. Find a mirror at https://archive.apache.org/dist/kafka/2.0.0/kafka_2.12-2.0.0.tgz, and download kafka to your server.
221
221
222
222
* Unpack kafka. Like zookeeper, we'll do so in `/opt`.
223
223
224
224
```
225
225
cd /opt
226
-
tar -zxvf /root/kafka_2.11-0.10.0.1.tgz # update path if you downloaded elsewhere
227
-
ln -s /opt/kafka_2.11-0.10.0.1 /opt/kafka
226
+
tar -zxvf /root/kafka_2.12-2.0.0.tgz # update path if you downloaded elsewhere
Metrictank will compress the data into chunks in RAM, a configurable number of the most recent data
21
21
is kept in RAM, but the chunks are being saved to Cassandra as well. You can use a single Cassandra
22
22
instance or a cluster. Metrictank will also respond to queries: if the data is recent, it'll come out of
23
23
RAM, and older data is fetched from cassandra. This happens transparantly.
24
-
Metrictank maintains an index of metrics metadata, for all series it sees.
24
+
Metrictank maintains an index of metrics metadata, for all series it sees.
25
25
You can use an index entirely in memory, or backed by Cassandra for persistence.
26
26
You can query metrictank directly (it has fast, but limited built-in processing and will fallback to graphite when needed)
27
27
or you can also just query graphite which will always use graphite's processing but use metrictank as a datastore.
@@ -221,16 +221,16 @@ EOF
221
221
222
222
### Kafka
223
223
224
-
Kafka 0.10.0.1 is highly recommended. 0.10.0.0 and 0.9 should work too, with some caveats [explained here](https://github.com/grafana/metrictank/blob/master/docs/kafka.md)
224
+
Kafka 2.0.0 is highly recommended, though older versions work too. [more info](https://github.com/grafana/metrictank/blob/master/docs/kafka.md)
225
225
226
-
* Download kafka. Find a mirror at https://www.apache.org/dyn/closer.cgi?path=/kafka/0.10.0.1/kafka_2.11-0.10.0.1.tgz, and download kafka to your server.
226
+
* Download kafka. Find a mirror at https://archive.apache.org/dist/kafka/2.0.0/kafka_2.12-2.0.0.tgz, and download kafka to your server.
227
227
228
228
* Unpack kafka. Like zookeeper, we'll do so in `/opt`.
229
229
230
230
```
231
231
cd /opt
232
-
tar -zxvf /root/kafka_2.11-0.10.0.1.tgz # update path if you downloaded elsewhere
233
-
ln -s /opt/kafka_2.11-0.10.0.1 /opt/kafka
232
+
tar -zxvf /root/kafka_2.12-2.0.0.tgz # update path if you downloaded elsewhere
Copy file name to clipboardexpand all lines: docs/kafka.md
+2-3
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,7 @@ Kafka can be used as an [ingestion option](https://github.com/grafana/metrictank
4
4
5
5
# Kafka version
6
6
7
-
We recommend 0.10.0.1 or higher.
7
+
Kafka v2.0.0 or newer is recommended.
8
+
Older versions should still work
8
9
9
10
If you use 0.10.0.0 and want snappy compression, watch out for [kafka-3789](https://issues.apache.org/jira/browse/KAFKA-3789) as you'll need to do a hack [like this](https://github.com/raintank/raintank-docker/commit/e98883b08f343d896a3333801f16c7a603e89422)
10
-
11
-
0.9 should work too (we used to use it), but we don't support it.
0 commit comments