일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- License
- matplotlib
- API
- 900gle
- Python
- licence delete curl
- aggs
- Elasticsearch
- zip 암호화
- 파이썬
- token filter test
- docker
- 차트
- plugin
- high level client
- TensorFlow
- sort
- flask
- Mac
- ELASTIC
- aggregation
- Test
- query
- MySQL
- license delete
- Kafka
- analyzer test
- zip 파일 암호화
- Java
- Today
- Total
목록분류 전체보기 (477)
개발잡부

https://github.com/900gle/900gle-elk GitHub - 900gle/900gle-elk Contribute to 900gle/900gle-elk development by creating an account on GitHub. github.com 여윽시 난 조빱이였어 누군가는 8.4.1 만들어서 올려놨구나.. local project path : /Users/doo/docker/900gle-elk docker images 이미지만 수십 GB 라서 일부는 정리 하고 docker rmi {IMAGE ID} .env 파일에 패스워드 변경해주고 chageme 에서 dlengus 으로 ELASTIC_VERSION=8.4.1 ## Passwords for stack users # # Us..
sudo systemctl daemon-reload sudo systemctl enable elasticsearch.service sudo systemctl start elasticsearch.servic curl -fsSL https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - echo "deb https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-8.x.list sudo apt update sudo apt install elasticsearch sudo vi /etc/elasticsearch/e..

이전글에서 버전만 올려서 날로 먹으려 했으나.. 역시나 호락호락 하지 않았다. Start a multi-node cluster with Docker Compose 우선 .env 파일 작성 # Password for the 'elastic' user (at least 6 characters) ELASTIC_PASSWORD= # Password for the 'kibana_system' user (at least 6 characters) KIBANA_PASSWORD= # Version of Elastic products STACK_VERSION=8.4.1 # Set the cluster name CLUSTER_NAME=docker-cluster # Set to 'basic' or 'trial' to aut..

https://github.com/900gle/900gle-elk/tree/8.4.1 GitHub - 900gle/900gle-elk Contribute to 900gle/900gle-elk development by creating an account on GitHub. github.com 기존에 사용하던 docker 파일을 버전만 올려서 사용했더니 아래와 같은 에러가 FATAL Error: [config validation of [elasticsearch].username]: value of "elastic" is forbidden. This is a superuser account that cannot write to system indices that Kibana needs to function...

원인좀 파악해주세요. 라고 빡치게 한다면 Search Profiler 를 사용해보자. 이유를 설명해주면 근거를 대라고 하는 얼토당토 않은 사람도 많으니.. 걀걀 Kibana Dev Tools 에 가면 가장많이 쓰는 Console 옆에 Search Profiler 라는 탭(?) 이 있다. 눌러보자 이런화면인데 왼쪽은 쿼리를 넣고 오른쪽에서는 Query 와 Aggregation 의 프로파일링된 내용을 확인 할 수 있다. 자.. 쿼리를 넣고 파란버튼 Profile 클릭 하면 아래와 같이 프로파일된 내용을 확인 할 수 있다. 디테일을 봐볼까? View details 를 클릭해보면 상세 내용을 확인할 수 있다. 눌러보자 Lucene 구문 으로 바뀐 structure 쿼리를 볼 수 있다. 놀라운 사실.. match..

새로 생긴 놀이기구는 인기가 매우 많아 줄이 끊이질 않습니다. 이 놀이기구의 원래 이용료는 price원 인데, 놀이기구를 N 번 째 이용한다면 원래 이용료의 N배를 받기로 하였습니다. 즉, 처음 이용료가 100이었다면 2번째에는 200, 3번째에는 300으로 요금이 인상됩니다. 놀이기구를 count번 타게 되면 현재 자신이 가지고 있는 금액에서 얼마가 모자라는지를 return 하도록 solution 함수를 완성하세요. 단, 금액이 부족하지 않으면 0을 return 하세요.제한사항 놀이기구의 이용료 price : 1 ≤ price ≤ 2,500, price는 자연수 처음 가지고 있던 금액 money : 1 ≤ money ≤ 1,000,000,000, money는 자연수 놀이기구의 이용 횟수 count : ..

큐/스택 이래서 큐랑 스택으로 풀었으나 public static int[] solution(int[] arr) { Stack stack = new Stack(); Queue queue = new LinkedList(); for (int i = 0; i 0 && stack.peek() != arr[i]) { stack.push(arr[i]); queue.add(arr[i]); } } int k = 0; int[] answer = new int[queue.size()]; while (!queue.isEmpty()) { answer[k] = queue.poll(..

(base) ➜ kafka docker compose -f kafka-full.yml up -d --build http://localhost:8080 https://github.com/900gle/docker-compose-kafka GitHub - 900gle/docker-compose-kafka Contribute to 900gle/docker-compose-kafka development by creating an account on GitHub. github.com