[
https://issues.apache.org/jira/browse/TAJO-2116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15231855#comment-15231855
]
ASF GitHub Bot commented on TAJO-2116:
--------------------------------------
GitHub user jinossy opened a pull request:
https://github.com/apache/tajo/pull/997
TAJO-2116: Simplify rpc address in default configuration.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/jinossy/tajo TAJO-2116
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tajo/pull/997.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #997
----
commit 94b8aa8e43051e9508fbc35f36b89cc7a435c370
Author: Jinho Kim <[email protected]>
Date: 2016-04-08T08:23:26Z
TAJO-2116: Simplify rpc address in default configuration.
----
> Simplify rpc address in default configuration
> ---------------------------------------------
>
> Key: TAJO-2116
> URL: https://issues.apache.org/jira/browse/TAJO-2116
> Project: Tajo
> Issue Type: Improvement
> Components: conf and scripts, Documentation, RPC
> Reporter: Jinho Kim
> Assignee: Jinho Kim
> Priority: Minor
>
> The cluster mode have to set binding address as following configuration.
> {{tajo.catalog.client-rpc.address}} and {{tajo.resource-tracker.rpc.address}}
> is same server with {{tajo.master.umbilical-rpc.address}}.
> So if these configuration is not set, we can use
> {{tajo.master.umbilical-rpc.address}} to default connecting hostname
> {code:xml}
> <property>
> <name>tajo.master.umbilical-rpc.address</name>
> <value>hostname:26001</value>
> </property>
> <property>
> <name>tajo.master.client-rpc.address</name>
> <value>hostname:26002</value>
> </property>
> <property>
> <name>tajo.resource-tracker.rpc.address</name>
> <value>hostname:26003</value>
> </property>
> <property>
> <name>tajo.catalog.client-rpc.address</name>
> <value>hostname:26005</value>
> </property>
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)