Skip to content

Commit

Permalink
Merge pull request apache#1334 from himanshug/fix_default_indexing_se…
Browse files Browse the repository at this point in the history
…rvice_name

fix doc for druid.[host,port,service] etc
  • Loading branch information
xvrl committed May 3, 2015
2 parents f734471 + fd3b230 commit 592ba56
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions docs/content/Broker-Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ The broker node uses several of the global configs in [Configuration](Configurat

|Property|Description|Default|
|--------|-----------|-------|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|none|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|none|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|none|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|InetAddress.getLocalHost().getCanonicalHostName()|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|8082|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|druid/broker|

### Query Configs

Expand Down
2 changes: 1 addition & 1 deletion docs/content/Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ This config is used to find the [Indexing Service](Indexing-Service.html) using

|Property|Description|Default|
|--------|-----------|-------|
|`druid.selectors.indexing.serviceName`|The druid.service name of the indexing service Overlord node. To start the Overlord with a different name, set it with this property. |overlord|
|`druid.selectors.indexing.serviceName`|The druid.service name of the indexing service Overlord node. To start the Overlord with a different name, set it with this property. |druid/overlord|

### Announcing Segments

Expand Down
6 changes: 3 additions & 3 deletions docs/content/Coordinator-Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ The coordinator node uses several of the global configs in [Configuration](Confi

|Property|Description|Default|
|--------|-----------|-------|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|none|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|none|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|none|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|InetAddress.getLocalHost().getCanonicalHostName()|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|8081|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|druid/coordinator|

### Coordinator Operation

Expand Down
6 changes: 3 additions & 3 deletions docs/content/Historical-Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ The historical node uses several of the global configs in [Configuration](Config

|Property|Description|Default|
|--------|-----------|-------|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|none|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|none|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|none|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|InetAddress.getLocalHost().getCanonicalHostName()|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|8083|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|druid/historical|

### General Configuration

Expand Down
6 changes: 3 additions & 3 deletions docs/content/Indexing-Service-Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ The indexing service uses several of the global configs in [Configuration](Confi

|Property|Description|Default|
|--------|-----------|-------|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|none|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|none|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|none|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|InetAddress.getLocalHost().getCanonicalHostName()|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|8090|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|druid/overlord|

#### Task Logging

Expand Down
10 changes: 5 additions & 5 deletions docs/content/Production-Cluster-Configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ JVM Configuration:
Runtime.properties:

```
druid.host=#{IP_ADDR}:8080
druid.host=#{IP_ADDR}
druid.port=8080
druid.service=druid/prod/overlord
Expand Down Expand Up @@ -155,7 +155,7 @@ JVM Configuration:
Runtime.properties:

```
druid.host=#{IP_ADDR}:8080
druid.host=#{IP_ADDR}
druid.port=8080
druid.service=druid/prod/middlemanager
Expand Down Expand Up @@ -219,7 +219,7 @@ JVM Configuration:
Runtime.properties:

```
druid.host=#{IP_ADDR}:8080
druid.host=#{IP_ADDR}
druid.port=8080
druid.service=druid/prod/coordinator
```
Expand Down Expand Up @@ -259,7 +259,7 @@ JVM Configuration:
Runtime.properties:

```
druid.host=#{IP_ADDR}:8080
druid.host=#{IP_ADDR}
druid.port=8080
druid.service=druid/prod/historical
Expand Down Expand Up @@ -316,7 +316,7 @@ JVM Configuration:
Runtime.properties:

```
druid.host=#{IP_ADDR}:8080
druid.host=#{IP_ADDR}
druid.port=8080
druid.service=druid/prod/broker
Expand Down
6 changes: 3 additions & 3 deletions docs/content/Realtime-Config.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ The realtime node uses several of the global configs in [Configuration](Configur

|Property|Description|Default|
|--------|-----------|-------|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|none|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|none|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|none|
|`druid.host`|The host for the current node. This is used to advertise the current processes location as reachable from another node and should generally be specified such that `http://${druid.host}/` could actually talk to this process|InetAddress.getLocalHost().getCanonicalHostName()|
|`druid.port`|This is the port to actually listen on; unless port mapping is used, this will be the same port as is on `druid.host`|8084|
|`druid.service`|The name of the service. This is used as a dimension when emitting metrics and alerts to differentiate between the various services|druid/realtime|

### Realtime Operation

Expand Down

0 comments on commit 592ba56

Please sign in to comment.