當前位置: 首頁>>代碼示例>>Java>>正文


Java DiscoveryNode.address方法代碼示例

本文整理匯總了Java中org.elasticsearch.cluster.node.DiscoveryNode.address方法的典型用法代碼示例。如果您正苦於以下問題:Java DiscoveryNode.address方法的具體用法?Java DiscoveryNode.address怎麽用?Java DiscoveryNode.address使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.elasticsearch.cluster.node.DiscoveryNode的用法示例。


在下文中一共展示了DiscoveryNode.address方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: buildTable

import org.elasticsearch.cluster.node.DiscoveryNode; //導入方法依賴的package包/類
private Table buildTable(RestRequest req, ClusterStateResponse state, NodesInfoResponse nodesInfo, NodesStatsResponse nodesStats) {
    boolean fullId = req.paramAsBoolean("full_id", false);

    DiscoveryNodes nodes = state.getState().nodes();
    Table table = getTableWithHeader(req);

    for (DiscoveryNode node : nodes) {
        NodeInfo info = nodesInfo.getNodesMap().get(node.id());
        ImmutableMap<String, String> attrs = node.getAttributes();
        for(String att : attrs.keySet()) {
            table.startRow();
            table.addCell(node.name());
            table.addCell(fullId ? node.id() : Strings.substring(node.getId(), 0, 4));
            table.addCell(info == null ? null : info.getProcess().getId());
            table.addCell(node.getHostName());
            table.addCell(node.getHostAddress());
            if (node.address() instanceof InetSocketTransportAddress) {
                table.addCell(((InetSocketTransportAddress) node.address()).address().getPort());
            } else {
                table.addCell("-");
            }
            table.addCell(att);
            table.addCell(attrs.containsKey(att) ? attrs.get(att) : null);
            table.endRow();
        }
    }

    return table;
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:30,代碼來源:RestNodeAttrsAction.java

示例2: SendRequestTransportException

import org.elasticsearch.cluster.node.DiscoveryNode; //導入方法依賴的package包/類
public SendRequestTransportException(DiscoveryNode node, String action, Throwable cause) {
    super(node == null ? null : node.name(), node == null ? null : node.address(), action, cause);
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:4,代碼來源:SendRequestTransportException.java

示例3: ConnectTransportException

import org.elasticsearch.cluster.node.DiscoveryNode; //導入方法依賴的package包/類
public ConnectTransportException(DiscoveryNode node, String msg, String action, Throwable cause) {
    super(node == null ? null : node.name(), node == null ? null : node.address(), action, msg, cause);
    this.node = node;
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:5,代碼來源:ConnectTransportException.java

示例4: ReceiveTimeoutTransportException

import org.elasticsearch.cluster.node.DiscoveryNode; //導入方法依賴的package包/類
public ReceiveTimeoutTransportException(DiscoveryNode node, String action, String msg) {
    super(node.name(), node.address(), action, msg, null);
}
 
開發者ID:baidu,項目名稱:Elasticsearch,代碼行數:4,代碼來源:ReceiveTimeoutTransportException.java


注:本文中的org.elasticsearch.cluster.node.DiscoveryNode.address方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。