ElasticSearch Query builder
ElasticSearch Query Builder
ElasticSearch Query builder란 무엇입니까?
ElasticSearch Query builder은(는) Xavient Information Systems에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ElasticSearch Query Builder"입니다.
확장 프로그램 스크린샷
ElasticSearch Query builder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This chrome extension provides easy to use interface to configure different weightage and dynamically boost the search results for a selected fields.This will reduce the learning curve by giving Index settings and document mappings required to obtain the desired search results.It also builds the query for you to reduce the development time by running the same query in the ES and show you the result in the Result panel. One can change the settings at run time to fine-tune the search results and save all the setting under favorite for later use. Connecting to ElasticSearch Server : Mention the host and port (10.240.0.251:9200) on which the ES is running and press the connect button . Building the Query : Once it is connects to the server, it will list all the Indexes and their corresponding document under the available Indexes and documents drop-down. Select the document for which you want to build the query.Now,under the configure tab you can see list of all the fields of the selected document. options under Configure Tab Dynamic Score: It is used to boost a particular record from multiple matching records that has the value defined in the booster field in addition to the search keyword. Search In Same order : This will give priority to the words that are found in the same order as oppose to be found in the same line in different order. Special Characters : This will allow the search of a alpha numeric, camelCase, and words separated with special characters like (_,- etc). Generate Query : Based on the selected options,it will dynamically generate the required Index setting,document mappings and build query. Options under Configure Tab Weightage: This is used to give a priority to a field ,if same word is found in multiple fields. The record having higher score for the given field will be given more priority and come at the top. Filter: This is used to filter out the results received from query.If any filter is selected along with value ,only those records will be shown which fulfills filter criteria . Filters like (must, range) can be added/deleted on different numeric fields by pressing on the +/- button Show in the Results: This allow to configure the fields that ,one wants to see in the results You can choose number of result to be displayed along with the field that you want to see by default first five fields are shown. You can select any fields as per your requirement. The results of the query will be shown in a table. Search in the Fields : This allow the user to select the document fields which should be searched for the given query. Show Results: This button will take the words to be searched along with the maximum size of the results to be shown and build a dynamic query ,which is fired against the select document Index and it will fetch the result and show under the results panel.
확장 프로그램 기본 정보
이름 | |
ID | cioobgbmiehdijndbmjkbjlkdeijdibp |
공식 URL | https://chrome.google.com/webstore/detail/elasticsearch-query-build/cioobgbmiehdijndbmjkbjlkdeijdibp |
설명 | ElasticSearch Query Builder |
파일 크기 | 590 KB |
설치 횟수 | 4,000 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2016-12-06 |
출시 날짜 | 2016-12-05 |
평점 | 1.82/5 총 17 개의 평점 |
개발자 | Xavient Information Systems |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ElasticSearch Query builder", "description": "ElasticSearch Query Builder", "version": "0.0.2", "icons": { "16": "icons\/icon.png" }, "permissions": [ "https:\/\/*\/", "http:\/\/*\/", "tabs", "clipboardWrite" ], "browser_action": { "default_icon": { "19": "icons\/icon.png", "38": "icons\/icon.png" } }, "background": { "scripts": [ "js\/background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src 'self' data: chrome-extension-resource: 'unsafe-inline'; " } |