Package com.pannous.es.reindex

Source Code of com.pannous.es.reindex.ReIndexActionESTest

package com.pannous.es.reindex;

import org.elasticsearch.action.search.SearchRequestBuilder;

public class ReIndexActionESTest extends ReIndexActionTester {

    @Override
    protected MySearchResponse scrollSearch(String index, String type, String query, int hits,
            boolean withVersion, int keepMinutes) {
        SearchRequestBuilder srb = action.createScrollSearch(index, type, query, hits, withVersion, keepMinutes);
        return new MySearchResponseES(client, srb.execute().actionGet(), keepMinutes);
    }
}
TOP

Related Classes of com.pannous.es.reindex.ReIndexActionESTest

TOP
Copyright © 2018 www.massapi.com. 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.