일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- License
- analyzer test
- TensorFlow
- aggs
- flask
- license delete
- 차트
- 파이썬
- licence delete curl
- ELASTIC
- API
- Test
- springboot
- query
- Java
- MySQL
- 900gle
- Kafka
- sort
- plugin
- zip 파일 암호화
- docker
- zip 암호화
- Mac
- high level client
- aggregation
- Elasticsearch
- matplotlib
- Python
- token filter test
- Today
- Total
목록JAVA/etc. (9)
개발잡부
https://blog.doosikbae.com/entry/IntelliJ%EB%A1%9C-Spark-%EA%B0%9C%EB%B0%9C-%ED%99%98%EA%B2%BD-%EA%B5%AC%EC%B6%95%ED%95%98%EA%B8%B0 IntelliJ로 Spark 개발 환경 구축하기 Introduction 여러 클라우드 환경이나 컨테이너 환경에서 간단하게 Spark를 사용할 수 있지만 local 환경에서도 Spark를 실행시킬수 있는 환경을 만들어두면 가볍게 테스트 할 수 있는 것들이 많아서 Loc blog.doosikbae.com (base) ➜ elastic-stack git:(master) ✗ brew install scala:2.13.7 Running `brew update --auto-updat..
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..
drop table if exists rooms; drop table if exists room_members; drop table if exists user_account; drop table if exists users; drop table if exists balance_send; drop table if exists balance_receive; CREATE TABLE `rooms` ( `id` bigint NOT NULL AUTO_INCREMENT, `room_id` varchar(3) NOT NULL, `room_name` varchar(100) NOT NULL, `category1` varchar(100) DEFAULT NULL, `category2` varchar(100) DEFAULT N..
homebrew 설치가 되지 않아 다운 받아서 설치 https://maven.apache.org/download.cgi Maven – Download Apache Maven Downloading Apache Maven 3.8.4 Apache Maven 3.8.4 is the latest release and recommended version for all users. The currently selected download mirror is https://dlcdn.apache.org/. If you encounter a problem with this mirror, please select another mirror. I maven.apache.org 접속해서 Binary tar.gz archive ..
https://help.sonatype.com/repomanager3/product-information/download Download Nexus Repository OSS is distributed with Sencha Ext JS pursuant to a FLOSS Exception agreed upon between Sonatype, Inc. and Sencha Inc. Sencha Ext JS is licensed under GPL v3 and cannot be redistributed as part of a closed source work. help.sonatype.com https://learn.sonatype.com/courses/nxrm-config-100/lessons/installi..
실행 create 에서 Transformation 선택 탭이 생성된긴 하는데 난 .. 날려먹어서 Input 에 많은 것들이 있지만 Data grid 를 드래그해서 가져온다 가저온 후 클릭 데이터를 입력하고 성적표를 만들었다. 좌측메뉴 플로우에서 Filter rows 를 드래그해서 가져온다 성적표 클릭 shift 드래그 필터에 홉이라고 해야하나 hop 연결 필터를 더블클릭 수학 커트라인으로 이름을 변경한후 "수학점수가 60점 이상" 조건 추가 실행시켜보자 얼레.. 다들 수학을 잘하는 구먼.. Filter rows 를 추가하고 아래의 조건을 입력 수학, 영어 90점 이상 실행시켜보자 True 는 False
스크립트로 이미지 업로드 [환경] jquery, axios html jquery var form = $('#file-form')[0]; var formData = new FormData(form); formData.append("file", $("#file")[0].files[0]); $.ajax({ url: 'http://localhost:8081/indexer/images', processData: false, contentType: false, data: formData, type: 'POST', success: function(result){ alert("업로드 성공!!"); } }); axios var form = $('#file-form')[0]; var formData = new FormDa..
Elasticsearch health check failed java.net.ConnectException: Connection refused 머 이렇게 나오는데 application.yml management: health: elasticsearch: enabled: false