일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 차트
- ELASTIC
- TensorFlow
- Elasticsearch
- springboot
- license delete
- Java
- high level client
- query
- licence delete curl
- 파이썬
- zip 암호화
- flask
- License
- Python
- sort
- plugin
- Kafka
- aggs
- MySQL
- docker
- zip 파일 암호화
- token filter test
- 900gle
- analyzer test
- aggregation
- matplotlib
- Mac
- API
- Test
Archives
- Today
- Total
개발잡부
[es8] Elasticsearch Plugin 8.6.2 본문
반응형
base 는 아래 프로젝트에서 버전업을 하고 디벨롭 한다.
https://ldh-6019.tistory.com/394?category=1096525
build.gradle
에서 8.6.2로 버전을 올리고 빌드 해보자.
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.elasticsearch.gradle:build-tools:8.6.2"
}
}
plugins {
id 'java'
}
apply plugin: 'elasticsearch.esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'
esplugin {
name 'rest-handler'
description 'An example plugin showing how to register a REST handler'
classname 'org.elasticsearch.dooplugin.resthandler.DooRestHandlerPlugin'
licenseFile rootProject.file('SSPL-1.0+ELASTIC-LICENSE-2.0.txt')
noticeFile rootProject.file('NOTICE.txt')
}
group = 'com.dooplugin'
version = '8.6'
sourceCompatibility = '18'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.elasticsearch', name: 'elasticsearch', version: '8.6.2'
// yamlRestTestRuntimeOnly "org.apache.logging.log4j:log4j-core:${log4jVersion}"
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.7.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.7.0'
}
test {
useJUnitPlatform()
}
빌드해보자
#gradlew 경로로 이동
cd /Users/doo/project/dooplugin
#build
./gradlew clean assemble
결과물은 아래의 경로에
// output to build/distribtions/rest-handler.zip
cp -af rest-handler-8.6.zip ~/docker/es8.6.2/elasticsearch/plugin
Dockerfile
ARG ELASTIC_VERSION
# https://www.docker.elastic.co/
FROM docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu
COPY plugin/rest-handler-8.6.zip plugin/rest-handler-8.6.zip
RUN elasticsearch-plugin install file:///usr/share/elasticsearch/plugin/rest-handler-8.6.zip
컨테이너 실행
#
docker compose down
#
docker compose up -d --build
확인
http://localhost:9200/_cat/900gle
반응형
'ElasticStack8 > Elasticsearch' 카테고리의 다른 글
[es8] aggregation - Pipeline Aggregations (0) | 2023.06.14 |
---|---|
[es8] elasticsearch stable-esplugin (0) | 2023.05.21 |
[es8] similarity modules (0) | 2023.05.16 |
[es] _explain (0) | 2023.05.09 |
[es8] ignore_malformed (0) | 2023.01.23 |
Comments