Jinho Kim created TAJO-2116:
-------------------------------
Summary: 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, default hostname is hostname of
tajo.master.umbilical-rpc.address
{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:xml}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)