From 6d18382fb220b6187f14108849c76f1158bb1d55 Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Fri, 25 Mar 2016 09:32:40 -0700 Subject: [PATCH] Fix broken link in datasketches-aggregators.md. --- .../development/extensions-core/datasketches-aggregators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/development/extensions-core/datasketches-aggregators.md b/docs/content/development/extensions-core/datasketches-aggregators.md index ab65103ff02..af86f3bffc1 100644 --- a/docs/content/development/extensions-core/datasketches-aggregators.md +++ b/docs/content/development/extensions-core/datasketches-aggregators.md @@ -8,7 +8,7 @@ Druid aggregators based on [datasketches](http://datasketches.github.io/) librar At ingestion time, this aggregator creates the theta sketch objects which get stored in Druid segments. Logically speaking, a theta sketch object can be thought of as a Set data structure. At query time, sketches are read and aggregated (set unioned) together. In the end, by default, you receive the estimate of the number of unique entries in the sketch object. Also, you can use post aggregators to do union, intersection or difference on sketch columns in the same row. Note that you can use `thetaSketch` aggregator on columns which were not ingested using same, it will return estimated cardinality of the column. It is recommended to use it at ingestion time as well to make querying faster. -To use the datasketch aggregators, make sure you [include](../operations/including-extensions.html) the extension in your config file: +To use the datasketch aggregators, make sure you [include](../../operations/including-extensions.html) the extension in your config file: ``` druid.extensions.loadList=["druid-datasketches"]