You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Jinho Kim (JIRA)" <ji...@apache.org> on 2016/04/08 09:58:25 UTC

[jira] [Updated] (TAJO-2116) Simplify rpc address in default configuration

     [ https://issues.apache.org/jira/browse/TAJO-2116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jinho Kim updated TAJO-2116:
----------------------------
    Description: 
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}

  was:
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}


> 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}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)