Package org.elasticsearch.search.fetch.explain

Examples of org.elasticsearch.search.fetch.explain.ExplainParseElement


        Map<String, SearchParseElement> elementParsers = new HashMap<String,
                SearchParseElement>();
        elementParsers.putAll(queryPhase.parseElements());
        elementParsers.put("fields", new FieldsParseElement());
        elementParsers.put("targetNodes", new TargetNodesParseElement());
        elementParsers.put("explain", new ExplainParseElement());
        this.elementParsers = ImmutableMap.copyOf(elementParsers);
    }
View Full Code Here


        elementParsers.put("fields", new FieldsParseElement());
        elementParsers.put("output_cmd", new ExportOutputCmdParseElement());
        elementParsers.put("output_file", new ExportOutputFileParseElement());
        elementParsers.put("force_overwrite", new ExportForceOverwriteParseElement());
        elementParsers.put("compression", new ExportCompressionParseElement());
        elementParsers.put("explain", new ExplainParseElement());
        elementParsers.put("mappings", new ExportMappingsParseElement());
        elementParsers.put("settings", new ExportSettingsParseElement());
        this.elementParsers = ImmutableMap.copyOf(elementParsers);
    }
View Full Code Here

    @Inject
    public ReindexParser(QueryPhase queryPhase, FetchPhase fetchPhase) {
        Map<String, SearchParseElement> elementParsers = new HashMap<String,
                SearchParseElement>();
        elementParsers.putAll(queryPhase.parseElements());
        elementParsers.put("explain", new ExplainParseElement());
        this.elementParsers = ImmutableMap.copyOf(elementParsers);
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.search.fetch.explain.ExplainParseElement

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.