Package org.elasticsearch.action.get

Examples of org.elasticsearch.action.get.GetResponse$Fields


      throw new IllegalStateException("Jira River must be stopped to reconfigure it!");

    logger.info("reconfiguring JIRA River");
    String riverIndexName = getRiverIndexName();
    refreshSearchIndex(riverIndexName);
    GetResponse resp = client.prepareGet(riverIndexName, riverName().name(), "_meta").execute().actionGet();
    if (resp.isExists()) {
      if (logger.isDebugEnabled()) {
        logger.debug("Configuration document: {}", resp.getSourceAsString());
      }
      Map<String, Object> newset = resp.getSource();
      configure(newset);
    } else {
      throw new IllegalStateException("Configuration document not found to reconfigure jira river "
          + riverName().name());
    }
View Full Code Here


    if (logger.isDebugEnabled())
      logger.debug("Going to read datetime value from {} property for project {}. Document name is {}.", propertyName,
          projectKey, documentName);

    refreshSearchIndex(getRiverIndexName());
    GetResponse lastSeqGetResponse = client.prepareGet(getRiverIndexName(), riverName.name(), documentName).execute()
        .actionGet();
    if (lastSeqGetResponse.isExists()) {
      Object timestamp = lastSeqGetResponse.getSourceAsMap().get(STORE_FIELD_VALUE);
      if (timestamp != null) {
        lastDate = DateTimeUtils.parseISODateTime(timestamp.toString());
      }
    } else {
      if (logger.isDebugEnabled())
View Full Code Here

    }
    try {
      SearchHits hits = null;
      MultiGetResponse response = client().prepareMultiGet().add(appid, null, ids).execute().actionGet();
      for (MultiGetItemResponse multiGetItemResponse : response.getResponses()) {
        GetResponse res = multiGetItemResponse.getResponse();
        if (res.isExists() && !res.isSourceEmpty()) {
          list.add(Utils.setAnnotatedFields(res.getSource()));
        }
      }
    } catch (Exception e) {
      logger.warn(null, e);
    }
View Full Code Here

    }
    if (StringUtils.isBlank(type)) {
      type = "_all";
    }
    try {
      GetResponse resp = client().prepareGet().setIndex(appid).
          setId(key).setType(type).execute().actionGet();
      map = resp.getSource();
    } catch (Exception e) {
      logger.warn(null, e);
    }
    return map;
  }
View Full Code Here

    // Action
    entityDao.save(node);
    refresh(INDEX_NAME);

    // Assert
    GetResponse response = client().prepareGet(INDEX_NAME, "node", "1").execute().actionGet();
    Assert.assertTrue(response.isExists());
    String expected = "{\"centroid\":[2.0,1.0],\"shape\":{\"type\":\"point\",\"coordinates\":[2.0,1.0]},\"tags\":{\"highway\":\"traffic_signals\"}}";
    String actual = response.getSourceAsString();
    Assert.assertEquals(expected, actual);
  }
View Full Code Here

    // Action
    entityDao.save(way);
    refresh(INDEX_NAME);

    // Assert
    GetResponse response = client().prepareGet(INDEX_NAME, "way", "1").execute().actionGet();
    Assert.assertTrue(response.isExists());
    String expected = "{\"centroid\":[2.3333333333333335,2.0],\"lengthKm\":536.8973391277414," +
        "\"areaKm2\":12364.345757132623,\"shape\":{\"type\":\"polygon\",\"coordinates\":" +
        "[[[2.0,1.0],[3.0,2.0],[2.0,3.0],[2.0,1.0]]]},\"tags\":{\"highway\":\"residential\"}}";
    String actual = response.getSourceAsString();
    Assert.assertEquals(expected, actual);
  }
View Full Code Here

    // Action
    entityDao.save(way);
    refresh(INDEX_NAME);

    // Assert
    GetResponse response = client().prepareGet(INDEX_NAME, "way", "1").execute().actionGet();
    Assert.assertTrue(response.isExists());
    String expected = "{\"centroid\":[2.1666666666666665,2.5],\"lengthKm\":471.76076948850596," +
        "\"areaKm2\":0.0,\"shape\":{\"type\":\"linestring\",\"coordinates\":" +
        "[[2.0,1.0],[3.0,2.0],[2.0,3.0],[1.0,4.0]]},\"tags\":{\"highway\":\"residential\"}}";
    String actual = response.getSourceAsString();
    Assert.assertEquals(expected, actual);
  }
View Full Code Here

    // Assert
    String expected = "{\"centroid\":[2.0,1.0],\"shape\":{\"type\":\"point\",\"coordinates\":[2.0,1.0]}," +
        "\"tags\":{\"highway\":\"traffic_signals\"}}";

    GetResponse response1 = client().prepareGet(INDEX_NAME, "node", "1").execute().actionGet();
    Assert.assertTrue(response1.isExists());
    String actual1 = response1.getSourceAsString();
    Assert.assertEquals(expected, actual1);

    GetResponse response2 = client().prepareGet(INDEX_NAME, "node", "2").execute().actionGet();
    Assert.assertTrue(response2.isExists());
    String actual2 = response2.getSourceAsString();
    Assert.assertEquals(expected, actual2);
  }
View Full Code Here

  }

  @Test
  public void buildFromGetReponse() {
    // Setup
    GetResponse response = mock(GetResponse.class, Mockito.RETURNS_DEEP_STUBS);
    when(response.getType()).thenReturn(ESEntityType.NODE.getIndiceName());
    when(response.getId()).thenReturn("1");
    Map<String, String> tags = new HashMap<String, String>();
    tags.put("highway", "primary");
    when(response.getField("tags").getValue()).thenReturn(tags);
    List<Double> location = Arrays.asList(new Double[] { 2.0, 1.0 });
    @SuppressWarnings("unchecked")
    Map<String, Object> shape = mock(Map.class);
    when(shape.get("coordinates")).thenReturn(location);
    when(response.getField("shape").getValue()).thenReturn(shape);

    ESNode expected = ESNode.Builder.create().id(1l).location(1.0, 2.0)
        .addTag("highway", "primary").build();

    // Action
View Full Code Here

    @Override
    protected List<ColumnDefinition> getElements0() throws SQLException {
        List<ColumnDefinition> result = new ArrayList<ColumnDefinition>();

        Rdb$relationFields r = RDB$RELATION_FIELDS.as("r");
        Rdb$fields f = RDB$FIELDS.as("f");

        // Inspiration for the below query was taken from jaybird's
        // DatabaseMetaData implementation
        for (Record record : create().select(
                r.RDB$FIELD_NAME.trim(),
View Full Code Here

TOP

Related Classes of org.elasticsearch.action.get.GetResponse$Fields

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.