Search in sources :

Example 1 with Roles

use of org.opensearch.client.Node.Roles in project OpenSearch by opensearch-project.

the class NodeTests method testToString.

public void testToString() {
    Map<String, List<String>> attributes = new HashMap<>();
    attributes.put("foo", singletonList("bar"));
    attributes.put("baz", Arrays.asList("bort", "zoom"));
    assertEquals("[host=http://1]", new Node(new HttpHost("1")).toString());
    assertEquals("[host=http://1, attributes={foo=[bar], baz=[bort, zoom]}]", new Node(new HttpHost("1"), null, null, null, null, attributes).toString());
    assertEquals("[host=http://1, roles=data,ingest,master]", new Node(new HttpHost("1"), null, null, null, new Roles(new TreeSet<>(Arrays.asList("master", "data", "ingest"))), null).toString());
    assertEquals("[host=http://1, version=ver]", new Node(new HttpHost("1"), null, null, "ver", null, null).toString());
    assertEquals("[host=http://1, name=nam]", new Node(new HttpHost("1"), null, "nam", null, null, null).toString());
    assertEquals("[host=http://1, bound=[http://1, http://2]]", new Node(new HttpHost("1"), new HashSet<>(Arrays.asList(new HttpHost("1"), new HttpHost("2"))), null, null, null, null).toString());
    assertEquals("[host=http://1, bound=[http://1, http://2], " + "name=nam, version=ver, roles=master, attributes={foo=[bar], baz=[bort, zoom]}]", new Node(new HttpHost("1"), new HashSet<>(Arrays.asList(new HttpHost("1"), new HttpHost("2"))), "nam", "ver", new Roles(Collections.singleton("master")), attributes).toString());
}
Also used : HashMap(java.util.HashMap) HttpHost(org.apache.http.HttpHost) TreeSet(java.util.TreeSet) Collections.singletonList(java.util.Collections.singletonList) List(java.util.List) Roles(org.opensearch.client.Node.Roles)

Example 2 with Roles

use of org.opensearch.client.Node.Roles in project OpenSearch by opensearch-project.

the class OpenSearchNodesSniffer method readNode.

private static Node readNode(String nodeId, JsonParser parser, Scheme scheme) throws IOException {
    HttpHost publishedHost = null;
    /*
         * We sniff the bound hosts so we can look up the node based on any
         * address on which it is listening. This is useful in OpenSearch's
         * test framework where we sometimes publish ipv6 addresses but the
         * tests contact the node on ipv4.
         */
    Set<HttpHost> boundHosts = new HashSet<>();
    String name = null;
    String version = null;
    /*
         * Multi-valued attributes come with key = `real_key.index` and we
         * unflip them after reading them because we can't rely on the order
         * that they arive.
         */
    final Map<String, String> protoAttributes = new HashMap<String, String>();
    boolean sawRoles = false;
    final Set<String> roles = new TreeSet<>();
    String fieldName = null;
    while (parser.nextToken() != JsonToken.END_OBJECT) {
        if (parser.getCurrentToken() == JsonToken.FIELD_NAME) {
            fieldName = parser.getCurrentName();
        } else if (parser.getCurrentToken() == JsonToken.START_OBJECT) {
            if ("http".equals(fieldName)) {
                while (parser.nextToken() != JsonToken.END_OBJECT) {
                    if (parser.getCurrentToken() == JsonToken.VALUE_STRING && "publish_address".equals(parser.getCurrentName())) {
                        String address = parser.getValueAsString();
                        String host;
                        URI publishAddressAsURI;
                        // ES7 cname/ip:port format
                        if (address.contains("/")) {
                            String[] cnameAndURI = address.split("/", 2);
                            publishAddressAsURI = URI.create(scheme + "://" + cnameAndURI[1]);
                            host = cnameAndURI[0];
                        } else {
                            publishAddressAsURI = URI.create(scheme + "://" + address);
                            host = publishAddressAsURI.getHost();
                        }
                        publishedHost = new HttpHost(host, publishAddressAsURI.getPort(), publishAddressAsURI.getScheme());
                    } else if (parser.currentToken() == JsonToken.START_ARRAY && "bound_address".equals(parser.getCurrentName())) {
                        while (parser.nextToken() != JsonToken.END_ARRAY) {
                            URI boundAddressAsURI = URI.create(scheme + "://" + parser.getValueAsString());
                            boundHosts.add(new HttpHost(boundAddressAsURI.getHost(), boundAddressAsURI.getPort(), boundAddressAsURI.getScheme()));
                        }
                    } else if (parser.getCurrentToken() == JsonToken.START_OBJECT) {
                        parser.skipChildren();
                    }
                }
            } else if ("attributes".equals(fieldName)) {
                while (parser.nextToken() != JsonToken.END_OBJECT) {
                    if (parser.getCurrentToken() == JsonToken.VALUE_STRING) {
                        String oldValue = protoAttributes.put(parser.getCurrentName(), parser.getValueAsString());
                        if (oldValue != null) {
                            throw new IOException("repeated attribute key [" + parser.getCurrentName() + "]");
                        }
                    } else {
                        parser.skipChildren();
                    }
                }
            } else {
                parser.skipChildren();
            }
        } else if (parser.currentToken() == JsonToken.START_ARRAY) {
            if ("roles".equals(fieldName)) {
                sawRoles = true;
                while (parser.nextToken() != JsonToken.END_ARRAY) {
                    roles.add(parser.getText());
                }
            } else {
                parser.skipChildren();
            }
        } else if (parser.currentToken().isScalarValue()) {
            if ("version".equals(fieldName)) {
                version = parser.getText();
            } else if ("name".equals(fieldName)) {
                name = parser.getText();
            }
        }
    }
    // http section is not present if http is not enabled on the node, ignore such nodes
    if (publishedHost == null) {
        logger.debug("skipping node [" + nodeId + "] with http disabled");
        return null;
    }
    Map<String, List<String>> realAttributes = new HashMap<>(protoAttributes.size());
    List<String> keys = new ArrayList<>(protoAttributes.keySet());
    for (String key : keys) {
        if (key.endsWith(".0")) {
            String realKey = key.substring(0, key.length() - 2);
            List<String> values = new ArrayList<>();
            int i = 0;
            while (true) {
                String value = protoAttributes.remove(realKey + "." + i);
                if (value == null) {
                    break;
                }
                values.add(value);
                i++;
            }
            realAttributes.put(realKey, unmodifiableList(values));
        }
    }
    for (Map.Entry<String, String> entry : protoAttributes.entrySet()) {
        realAttributes.put(entry.getKey(), singletonList(entry.getValue()));
    }
    if (version.startsWith("2.")) {
        /*
             * 2.x doesn't send roles, instead we try to read them from
             * attributes.
             */
        boolean clientAttribute = v2RoleAttributeValue(realAttributes, "client", false);
        Boolean masterAttribute = v2RoleAttributeValue(realAttributes, "master", null);
        Boolean dataAttribute = v2RoleAttributeValue(realAttributes, "data", null);
        if ((masterAttribute == null && false == clientAttribute) || masterAttribute) {
            roles.add("master");
        }
        if ((dataAttribute == null && false == clientAttribute) || dataAttribute) {
            roles.add("data");
        }
    } else {
        assert sawRoles : "didn't see roles for [" + nodeId + "]";
    }
    assert boundHosts.contains(publishedHost) : "[" + nodeId + "] doesn't make sense! publishedHost should be in boundHosts";
    logger.trace("adding node [" + nodeId + "]");
    return new Node(publishedHost, boundHosts, name, version, new Roles(roles), unmodifiableMap(realAttributes));
}
Also used : HashMap(java.util.HashMap) Node(org.opensearch.client.Node) ArrayList(java.util.ArrayList) Roles(org.opensearch.client.Node.Roles) IOException(java.io.IOException) URI(java.net.URI) HttpHost(org.apache.http.HttpHost) TreeSet(java.util.TreeSet) Collections.unmodifiableList(java.util.Collections.unmodifiableList) ArrayList(java.util.ArrayList) Collections.singletonList(java.util.Collections.singletonList) List(java.util.List) HashMap(java.util.HashMap) Map(java.util.Map) Collections.unmodifiableMap(java.util.Collections.unmodifiableMap) HashSet(java.util.HashSet)

Example 3 with Roles

use of org.opensearch.client.Node.Roles in project OpenSearch by opensearch-project.

the class OpenSearchNodesSnifferParseTests method node.

private Node node(int port, String name, String version, Set<String> roles) {
    HttpHost host = new HttpHost("127.0.0.1", port);
    Set<HttpHost> boundHosts = new HashSet<>(2);
    boundHosts.add(host);
    boundHosts.add(new HttpHost("[::1]", port));
    Map<String, List<String>> attributes = new HashMap<>();
    attributes.put("dummy", singletonList("everyone_has_me"));
    attributes.put("number", singletonList(name.substring(1)));
    attributes.put("array", Arrays.asList(name.substring(0, 1), name.substring(1)));
    return new Node(host, boundHosts, name, version, new Roles(new TreeSet<>(roles)), attributes);
}
Also used : HashMap(java.util.HashMap) HttpHost(org.apache.http.HttpHost) TreeSet(java.util.TreeSet) Node(org.opensearch.client.Node) Collections.singletonList(java.util.Collections.singletonList) List(java.util.List) Roles(org.opensearch.client.Node.Roles) HashSet(java.util.HashSet)

Example 4 with Roles

use of org.opensearch.client.Node.Roles in project OpenSearch by opensearch-project.

the class NodeTests method testEqualsAndHashCode.

public void testEqualsAndHashCode() {
    HttpHost host = new HttpHost(randomAsciiAlphanumOfLength(5));
    Node node = new Node(host, randomBoolean() ? null : singleton(host), randomBoolean() ? null : randomAsciiAlphanumOfLength(5), randomBoolean() ? null : randomAsciiAlphanumOfLength(5), randomBoolean() ? null : new Roles(new TreeSet<>(Arrays.asList("master", "data", "ingest"))), randomBoolean() ? null : singletonMap("foo", singletonList("bar")));
    assertFalse(node.equals(null));
    assertTrue(node.equals(node));
    assertEquals(node.hashCode(), node.hashCode());
    Node copy = new Node(host, node.getBoundHosts(), node.getName(), node.getVersion(), node.getRoles(), node.getAttributes());
    assertTrue(node.equals(copy));
    assertEquals(node.hashCode(), copy.hashCode());
    assertFalse(node.equals(new Node(new HttpHost(host.toHostString() + "changed"), node.getBoundHosts(), node.getName(), node.getVersion(), node.getRoles(), node.getAttributes())));
    assertFalse(node.equals(new Node(host, new HashSet<>(Arrays.asList(host, new HttpHost(host.toHostString() + "changed"))), node.getName(), node.getVersion(), node.getRoles(), node.getAttributes())));
    assertFalse(node.equals(new Node(host, node.getBoundHosts(), node.getName() + "changed", node.getVersion(), node.getRoles(), node.getAttributes())));
    assertFalse(node.equals(new Node(host, node.getBoundHosts(), node.getName(), node.getVersion() + "changed", node.getRoles(), node.getAttributes())));
    assertFalse(node.equals(new Node(host, node.getBoundHosts(), node.getName(), node.getVersion(), new Roles(Collections.emptySet()), node.getAttributes())));
    assertFalse(node.equals(new Node(host, node.getBoundHosts(), node.getName(), node.getVersion(), node.getRoles(), singletonMap("bort", singletonList("bing")))));
}
Also used : HttpHost(org.apache.http.HttpHost) Roles(org.opensearch.client.Node.Roles)

Aggregations

HttpHost (org.apache.http.HttpHost)4 Roles (org.opensearch.client.Node.Roles)4 Collections.singletonList (java.util.Collections.singletonList)3 HashMap (java.util.HashMap)3 List (java.util.List)3 TreeSet (java.util.TreeSet)3 HashSet (java.util.HashSet)2 Node (org.opensearch.client.Node)2 IOException (java.io.IOException)1 URI (java.net.URI)1 ArrayList (java.util.ArrayList)1 Collections.unmodifiableList (java.util.Collections.unmodifiableList)1 Collections.unmodifiableMap (java.util.Collections.unmodifiableMap)1 Map (java.util.Map)1