일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- aggs
- docker
- aggregation
- 파이썬
- Python
- TensorFlow
- flask
- zip 암호화
- licence delete curl
- Mac
- ELASTIC
- Test
- matplotlib
- analyzer test
- token filter test
- 차트
- License
- Java
- API
- MySQL
- 900gle
- plugin
- license delete
- Kafka
- zip 파일 암호화
- springboot
- Elasticsearch
- high level client
- sort
- query
- Today
- Total
목록분류 전체보기 (475)
개발잡부
파일의 카운트를 비교하여 데이터의 일치여부를 판단. def compare_row(file_name): a = open(file_a + file_name, 'r') b = open(file_b + file_name, 'r') row_a = len(a.readlines()) row_b = len(b.readlines()) a.close() b.close() if row_a == row_b : return True else: return False myFile = open('파일명', 'r') {내용} myFile.close() {내용} 을 코딩 1. read() 라인 수를 구한다는 이야기는 줄바꿈 문자('\n') 의 갯수를 구한다는 이야기와 같으므로 print(myFile.read().count("\n")..
ssl 인증을 하지 않게하니 client = Elasticsearch("https://id:pw@host:443/", ca_certs=False, verify_certs=False) 경고가 겁나 날라온다. 모니터링 하는데 방해가 되서 메시지를 안뜨게 처리 해야겠다 아래와 같이 urllib3를 불러와서 워닝을 지워준다 import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
키워드별 속성 정보를 수정했는데.. as-is 와 to-be 의 데이터가 일치 해야 하는지 검증이 필요하다. 전체카운트를 구하고 키워드를 추출해서 키워드별 속성을 집계(aggregation) 결과를 파일로 추출 doo 의 가상환경으로 conda activate doo ed /Users/doo/doo_py/똥플러스/attribute python attr/qa_test.py 원랜 아래와 같았지만 스토어 별 전수검사로 변경 # -*- coding: utf-8 -*- import json import time import datetime as dt import urllib3 from elasticsearch import Elasticsearch urllib3.disable_warnings(urllib3.exce..
https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules-similarity.html#index-modules-similarity Similarity module | Elasticsearch Guide [8.7] | Elastic While scripted similarities provide a lot of flexibility, there is a set of rules that they need to satisfy. Failing to do so could make Elasticsearch silently return wrong top hits or fail with internal errors at search ti..
문제 An array A consisting of N integers is given. It contains daily prices of a stock share for a period of N consecutive days. If a single share was bought on day P and sold on day Q, where 0 ≤ P ≤ Q < N, then the profit of such transaction is equal to A[Q] − A[P], provided that A[Q] ≥ A[P]. Otherwise, the transaction brings loss of A[P] − A[Q]. For example, consider the following array A consis..
elasticsearch score 임계값 score에 지정된 값보다 작은 문서는 제외 시킨다. GET /_search { "min_score": 0.5, "query" : { "term" : { "user" : "kimchy" } } } 스코어 기준 노출제어는 .. 애매하다..
loop 는 1번만 돌게끔 하고 큰 숫자는 long 으로 처리 int 로 하니까 timeout 뜸.. package kr.co.doo.cote.groom; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; public class ArrayMmulti { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer streamTokenizer = new StringTokenizer..
package kr.co.doo.cote.groom; import java.io.*; import java.util.LinkedList; import java.util.Queue; import java.util.StringTokenizer; public class Queuee { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int end = Integer.parseInt(st.nextToken()); int qSiz..
package kr.co.doo.cote.groom; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Stack; import java.util.StringTokenizer; public class Stackk { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int end = Integer.parseInt(st.next..
package kr.co.doo.cote.groom; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.StringTokenizer; public class EightNumber { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String input = br.readLine(); StringTokenizer stringTokenizer = new StringTokenizer(br.readLine()); int sum = ..