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

집에서 개발 하다보면 이 에러를 자주 만나는데.. 그냥 검색해보기 귀찮아서.. 삽을 떴는데 도저히 안되겠어서 검색해봄 Process 'command '/Library/Java/JavaVirtualMachines/adoptopenjdk-15.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1 이럴 경우 [File > Settings] 메뉴 클릭 (맥 기준 단축키 : Command + ,) [Build, Excution, Deployment > Build Tools > Gradle] 클릭 Build and run using과 Run tests using이 아마도 Gradle(Default)로 되어있을텐데, 이것을 Intellij IDEA로 바꿔..

아래와 같은 에러가 난다면 SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation. Multiple bindings were found on the class path configurations.all { // 캐시하지 않음 resolutionStrategy.cacheChangingModulesFor 0, "seconds" exclude group: "org.slf4j", module: "slf4j-log4j12" } implementation("org.apache.spark:spark-sql_2.11:${sparkVersion}"){ exclude group: "org.slf4j", module: "slf4j-log..

https://sparkbyexamples.com/spark/install-apache-spark-on-mac/ Install Apache Spark Latest Version on Mac - Spark by {Examples} Five easy steps to install the latest version of Apache Spark on Mac (macOS) – In recent days Apache Spark installation on Mac OS has become very easy using Homebrew. You can install it and start running examples in just 5 mins. There are multiple ways t sparkbyexamples..

import numpy as np import matplotlib.pyplot as plt import random param1 = random.randint(1,5) #기울기 param2 = random.randint(20,40) #편향 data = [[3,24], [6,48], [9,40], [12, 52]] x = np.array([i[0] for i in data]) y = np.array([i[1] for i in data]) plt.plot(x,y,"b.") def model(x): y = param1 * x + param2 return y def rmse(predict, true): return np.sqrt(((predict - true) ** 2).mean()) predict = [] f..
LOAD DATA LOCAL INFILE 로 넣으려고 했으나 1. local_infile 옵션을 수정할 수 가 없다 . 2. vdesk 를 통해서 파일을 옮기니 한글이 깨진다. 그래서 sql 문을 만들어서 컨트롤 씨부이를 해야겠다 . 재활용 파일 # -*- coding: utf-8 -*- import time import json from elasticsearch import Elasticsearch from elasticsearch.helpers import bulk import tensorflow_hub as hub import tensorflow_text import kss, numpy ##### INDEXING ##### def csv_data(): f_v = open("stopword_prd.s..
금칙어 리스트를 받았다.. 전수 검사를 요구하네.. 음.. 로컬에서는 운영계 검색 api. 호출이 불가능 한 상황 프론트에서 검색을 호출하는 api url 을 추출한 후 금칙어 리스트를 순회 하면서 검색결과를 파일에 기록함 # -*- coding: utf-8 -*- import time import json from elasticsearch import Elasticsearch from elasticsearch.helpers import bulk import tensorflow_hub as hub import tensorflow_text import kss, numpy import requests import ssl import urllib3 from time import sleep print(ssl.O..
requests 를 사용해서 데이터좀 가저오려는데 SSL 어쩌고 하면서 안될때.. import requests import ssl print(ssl.OPENSSL_VERSION) response = requests.get(url, verify=False)
에러는 아니고 경고 인데.. 지저분해보여서 import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) /Users/doo/opt/anaconda3/envs/doo/lib/python3.7/site-packages/urllib3/connectionpool.py:1050: InsecureRequestWarning: Unverified HTTPS request is being made to host 'front.homeplus.co.kr'. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/1.26.x/adv..

이것저것 근들여 놓은게 많아서 뭘 쓸지 몰겠지만 900gle 에서는 이걸 사용하는 것으로.. payload score plugin 을 만들어 보자 https://www.elastic.co/guide/en/elasticsearch/reference/7.15/analysis-delimited-payload-tokenfilter.html#analysis-delimited-payload-tokenfilter java 11 elasticsearch7.15.1 gradle Plugin local path /Users/doo/plugin/payload-dscore project 생성 후 빌드 ./gradlew clean build 생성된 zip 파일을 900gle shopping 프로젝트가 모여있는 디렉토리로 이동시..

docker 이미지를 삭제하려고 하는데 아래와 같은 에러가 난다면.. Error response from daemon: conflict: unable to delete df2448c78780 (must be forced) - image is referenced in multiple repositories Error response from daemon: conflict: unable to delete df2448c78780 (must be forced) - image is referenced in multiple repositories -f 옵션을 추가해 준다 #이미지 확인 $> docker images 이미지를 삭제 해버리자 $> docker rmi 132e68488f03 df2448c78780 df2..