Skip to content

Commit 46251e0

Browse files
dclimjihoonson
authored andcommitted
fix links to use relative references (#6697)
1 parent 8a9ef68 commit 46251e0

File tree

7 files changed

+34
-25
lines changed

7 files changed

+34
-25
lines changed

docs/_includes/site_head.html

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,30 @@
2222
<meta name="description" content="">
2323
<meta name="author" content="druid">
2424

25-
<title>Druid | {{page.title}}</title>
25+
<title>Druid | {{page.title}}</title>
26+
<link rel="alternate" type="application/atom+xml" href="/feed">
27+
<link rel="shortcut icon" href="/img/favicon.png">
2628

27-
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
29+
<link rel="stylesheet" href="//use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
2830

29-
<link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic|Open+Sans:300italic,400italic,600italic,400,300,600' rel='stylesheet' type='text/css'>
30-
<link rel="alternate" type="application/atom+xml" href="http://druid.io/feed">
31+
<link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700,300italic|Open+Sans:300italic,400italic,600italic,400,300,600,700' rel='stylesheet' type='text/css'>
3132

32-
<link rel="stylesheet" href="//druid.io/css/main.css">
33-
<link rel="stylesheet" href="//druid.io/css/header.css">
34-
<link rel="stylesheet" href="//druid.io/css/footer.css">
35-
<link rel="stylesheet" href="//druid.io/css/syntax.css">
36-
<link rel="stylesheet" href="//druid.io/css/docs.css">
33+
<link rel="stylesheet" href="/css/bootstrap-pure.css?v=1.0">
34+
<link rel="stylesheet" href="/css/main.css?v=1.0">
35+
<link rel="stylesheet" href="/css/header.css?v=1.0">
36+
<link rel="stylesheet" href="/css/footer.css?v=1.0">
37+
<link rel="stylesheet" href="/css/syntax.css?v=1.0">
38+
<link rel="stylesheet" href="/css/docs.css?v=1.0">
39+
40+
<script>
41+
(function() {
42+
var cx = '000162378814775985090:molvbm0vggm';
43+
var gcse = document.createElement('script');
44+
gcse.type = 'text/javascript';
45+
gcse.async = true;
46+
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
47+
'//cse.google.com/cse.js?cx=' + cx;
48+
var s = document.getElementsByTagName('script')[0];
49+
s.parentNode.insertBefore(gcse, s);
50+
})();
51+
</script>

docs/content/development/extensions-contrib/graphite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ All the configuration parameters for graphite emitter are under `druid.emitter.g
5151

5252
### Supported event types
5353

54-
The graphite emitter only emits service metric events to graphite (See http://druid.io/docs/latest/operations/metrics.html for a list of metrics).
54+
The graphite emitter only emits service metric events to graphite (See [Druid Metrics](../../operations/metrics.html) for a list of metrics).
5555

5656
Alerts and request logs are not sent to graphite. These event types are not well represented in Graphite, which is more suited for timeseries views on numeric metrics, vs. storing non-numeric log events.
5757

docs/content/development/extensions-contrib/materialized-view.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ A sample derivativeDataSource supervisor spec is shown below:
6868

6969
|Field|Description|Required|
7070
|--------|-----------|---------|
71-
|Type |The supervisor type. This should always be derivativeDataSource |yes|
72-
|baseDataSource |The name of base dataSource. This dataSource data should be already stored inside Druid, and the dataSource will be used as input data. See [dataSource inputSpec](http://druid.io/docs/latest/ingestion/update-existing-data.html#datasource "dataSource inputSpec"). |yes|
73-
|dimensionsSpec |Specifies the dimensions of the data. These dimensions must be the subset of baseDataSource's dimensions. |yes|
74-
|metricsSpec |A list of aggregators. These metrics must be the subset of baseDataSource's metrics. See [aggregations](http://druid.io/docs/latest/querying/aggregations.html "aggregations") |yes|
75-
|tuningConfig |TuningConfig must be HadoopTuningConfig. See [hadoop tuning config]( http://druid.io/docs/latest/ingestion/batch-ingestion.html#tuningconfig "hadoop tuning config") |yes|
71+
|Type |The supervisor type. This should always be `derivativeDataSource`.|yes|
72+
|baseDataSource |The name of base dataSource. This dataSource data should be already stored inside Druid, and the dataSource will be used as input data.|yes|
73+
|dimensionsSpec |Specifies the dimensions of the data. These dimensions must be the subset of baseDataSource's dimensions.|yes|
74+
|metricsSpec |A list of aggregators. These metrics must be the subset of baseDataSource's metrics. See [aggregations](../../querying/aggregations.html).|yes|
75+
|tuningConfig |TuningConfig must be HadoopTuningConfig. See [Hadoop tuning config](../../ingestion/hadoop.html#tuningconfig).|yes|
7676
|dataSource |The name of this derived dataSource. |no(default=baseDataSource-hashCode of supervisor)|
7777
|hadoopDependencyCoordinates |A JSON array of Hadoop dependency coordinates that Druid will use, this property will override the default Hadoop coordinates. Once specified, Druid will look for those Hadoop dependencies from the location specified by druid.extensions.hadoopDependenciesDir |no|
7878
|classpathPrefix |Classpath that will be pre-appended for the peon process. |no|
@@ -128,6 +128,6 @@ There are 2 parts in a view query:
128128
|Field|Description|Required|
129129
|--------|-----------|---------|
130130
|queryType |The query type. This should always be view |yes|
131-
|query |The real query of this `view` query. The real query must be [groupby](http://druid.io/docs/latest/querying/groupbyquery.html "groupby")/[topn](http://druid.io/docs/latest/querying/topnquery.html "topn")/[timeseries](http://druid.io/docs/latest/querying/timeseriesquery.html "timeseries") type. |yes|
131+
|query |The real query of this `view` query. The real query must be [groupBy](../../querying/groupbyquery.html), [topN](../../querying/topnquery.html), or [timeseries](../../querying/timeseriesquery.html) type.|yes|
132132

133133
**Note that Materialized View is currently designated as experimental. Please make sure the time of all nodes are the same and increase monotonically. Otherwise, some unexpected errors may happen on query results.**

docs/content/development/extensions-contrib/opentsdb-emitter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To use this extension, make sure to [include](../../operations/including-extensi
2727

2828
## Introduction
2929

30-
This extension emits druid metrics to [OpenTSDB](https://github.com/OpenTSDB/opentsdb) over HTTP (Using `Jersey client`). And this emitter only emits service metric events to OpenTSDB (See http://druid.io/docs/latest/operations/metrics.html for a list of metrics).
30+
This extension emits druid metrics to [OpenTSDB](https://github.com/OpenTSDB/opentsdb) over HTTP (Using `Jersey client`). And this emitter only emits service metric events to OpenTSDB (See [Druid metrics](../../operations/metrics.html) for a list of metrics).
3131

3232
## Configuration
3333

docs/content/development/extensions-core/mysql.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,6 @@ Copy or symlink this file to `extensions/mysql-metadata-storage` under the distr
8686
druid.metadata.storage.connector.password=diurd
8787
```
8888

89-
Note: the metadata storage extension is not packaged within the main Druid tarball; it is
90-
packaged in a separate tarball that can be downloaded from [here](http://druid.io/downloads.html).
91-
You can also get it using [pull-deps](../../operations/pull-deps.html), or you can build
92-
it from source code; see [Build from Source](../build.html).
93-
94-
9589
## Encrypting MySQL connections
9690
This extension provides support for encrypting MySQL connections. To get more information about encrypting MySQL connections using TLS/SSL in general, please refer to this [guide](https://dev.mysql.com/doc/refman/5.7/en/using-encrypted-connections.html).
9791

docs/content/operations/insert-segment-to-db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ of them in a runtime.properites file and include it in the Druid classpath. Note
127127
and `druid-hdfs-storage` in the extension list.
128128

129129
After running this command, the segments table in `mysql` should store the new location for each segment we just inserted.
130-
Note that for segments stored in HDFS, druid config must contain core-site.xml as described in [Druid Docs](http://druid.io/docs/latest/tutorials/cluster.html), as this new location is stored with relative path.
130+
Note that for segments stored in HDFS, druid config must contain core-site.xml as described in [Druid Docs](../tutorials/cluster.html), as this new location is stored with relative path.
131131

132132
It is also possible to use `s3` as deep storage. In order to work with it, specify `s3` as deep storage type and load
133133
[`druid-s3-extensions`](../development/extensions-core/s3.html) as an extension.

docs/content/tutorials/cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ In `conf/druid/_common/common.runtime.properties`, replace
223223
<div class="note caution">
224224
In production, we recommend running 2 servers, each running a Druid Coordinator
225225
and a Druid Overlord. We also recommend running a ZooKeeper cluster on its own dedicated hardware,
226-
as well as replicated <a href = "http://druid.io/docs/latest/dependencies/metadata-storage.html">metadata storage</a>
226+
as well as replicated <a href = "../dependencies/metadata-storage.html">metadata storage</a>
227227
such as MySQL or PostgreSQL, on its own dedicated hardware.
228228
</div>
229229

0 commit comments

Comments
 (0)