blob: b616eb2c297a3d6b4cccb94dcc01cff1dd55e067 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.metamodel.elasticsearch.nativeclient;
import java.util.List;
import org.apache.metamodel.data.DataSet;
import org.apache.metamodel.elasticsearch.AbstractElasticSearchDataSet;
import org.apache.metamodel.query.SelectItem;
import org.elasticsearch.action.search.ClearScrollAction;
import org.elasticsearch.action.search.ClearScrollRequestBuilder;
import org.elasticsearch.action.search.SearchResponse;
import org.elasticsearch.client.Client;
/**
* {@link DataSet} implementation for ElasticSearch
*/
final class ElasticSearchDataSet extends AbstractElasticSearchDataSet {
private final Client _client;
public ElasticSearchDataSet(final Client client, final SearchResponse searchResponse,
final List<SelectItem> selectItems) {
super(searchResponse, selectItems);
_client = client;
}
@Override
public void closeNow() {
ClearScrollRequestBuilder scrollRequestBuilder = new ClearScrollRequestBuilder(_client,
ClearScrollAction.INSTANCE).addScrollId(_searchResponse.getScrollId());
scrollRequestBuilder.execute();
}
@Override
protected SearchResponse scrollSearchResponse(final String scrollId) {
return _client.prepareSearchScroll(scrollId).setScroll(ElasticSearchDataContext.TIMEOUT_SCROLL)
.execute().actionGet();
}
}