[DE] beeline 명령어
[DE] beeline 명령어database 생성create database if not exists testdb comment 'test database';imdb_movies table 생성drop tabl...
Hayden J Blog
현장에서 마주친 문제와 해결 과정을 정리합니다. Python, Java, Data Engineering, AI Agent, 인프라 운영까지 직접 겪은 내용을 중심으로 남깁니다.
Latest Posts
[DE] beeline 명령어database 생성create database if not exists testdb comment 'test database';imdb_movies table 생성drop tabl...
[tips] logitech mouse g hub inactive problem원인1로지텍 G 허브에서 비활성화 문제가 발생하는 이유는 karabiner때문이다.karabiner에서 인식을 먼저 가져가기 때문에...
[DE] spark vs hive vs hadoop vs rdbms 간단 정리hive hive는 SQL언어를 하둡 위에서 사용할 수 있는 쿼리 엔진이다. Metastore database 저장소에 스키마정보...
[spark] spark란? spark 기본 개념spark란? 범용적인 목적을 지닌 분산 클러스터 컴퓨팅 프레임워크 내 결함성, 병렬처리를 언어 수준에서 처리가 가능 Java,Python, R 등 다양한 ...
[tips] mac os keyboard home,end 윈도우처럼 사용하기문제1 mac에서 home,end key가 있는 키보드를 연결하고 사용할 떄 어떤 application에서는 커서가 앞,뒤로 잘 움직...
[python] 폴더 내의 모든 파일 가져오기 코드# use glob to get all the csv files# in the folder# path = os.getcwd()path = os.getcwd()c...
[heroku] heroku사용후기지인의 요청으로 heroku에 Node.js , React, DB 구축을 도와주었다.장점 배포가 쉽다. APP 구성 디자인이 간단하다. Backend - DB연결 쉽다. ...
[ml] Precision, RecallRecall Recall은 실제로 True인 데이터를 모델이 True라고 인식한 데이터의 수입니다. 모델이 True라고 예측한 갯수 / 실제로 True인 갯수Preci...
[docker] conatiner내부에서 docker 실행Data Engineer 과정중 shell에 접속하여 이것저것 해볼 수 있는 환경이 있었다..당연히 여기서 docker 설치 및 sqoop 테스트, do...
[docker] linux에 docker 설치apt-get updateapt install -y docker.ioapt install docker-composedocker info한 번에 설치curl -fsSL...
[sqoop] sqoop-mysql 연동
[postgresql] postgres cli 명령어postgres 접속 명령어# localhost의 5432 port로 Postgresql 접속을 시도. Target DB는 현재 사용자 이름과 동일한 'jhy...