I have used elasticsearch library in node js and build a simple app which can fetch any key from elastic index .
Example:
API POST End Point: http://localhost:8000/serach/index_name/doc_type
data:
{
"_source": ["user","email"],
"query": ...,
"size": ...
}
I want to know which class i will use in java to achieve same thing.
dadoonet
(David Pilato)
April 29, 2019, 1:47pm
2
Have a look at
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch 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 fr.pilato.demo.legacysearch.dao;
This file has been truncated. show original
This will give you an example.
system
(system)
Closed
May 27, 2019, 1:47pm
3
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.