Home
Study Log
Cancel

Init Containers

Init Containers Pod은 여러 컨테이너를 가지고 있는데, 하나이상의 init container를 가질수 있다. init container는 app container가 시작되기전에 실행된다. Init containers always run to completion. Each init container must complete s...

Jupyter Notebook에 hive-site.xml 마운트하기

Jupyter Notebook은 hive metastore에 접근하기 위해서, /opt/spark/conf/ 경로에 hive-site.xml 이 필요하다. Secret에 있는 hive-site.xml을 마운트하기 hive-site.xml에는 metastore 접속 패스워드가 있어, 이를 configMap에 포함하면 위험하다. 따라서 Secret에서...

Python Command

실제 실행중인 python type python 사용가능한 모든 python type -a python 사용가능한 모든 pip type -a pip 사용가능한 kernel jupyter kernelspec list 유용한 link Installing Python Packages from a Jupyter Notebook

virtual environment

venv 이용하는 방법 python3 -m venv [env name] source [env name]/bin/activate How to escape : Ctrl + D pyenv you can use multiple python by using pyenv How to install (in Mac) brew ...

Third Party Application에게 권한 부여하기

SmartGit에서 Preferences에서 Github Hosting Provider를 설정하다가, 실수로 organization에 있는 repo에 접근권한을 부여 하지 못했다. 수동으로 권한 부여하기 깃헙에 로그인한후 Settings에 들어간다. 왼쪽 바에 Applications 탭을 클릭한다. authorized OAuth App...

Conda vs Pip

Comparison of conda and pip   conda pip manages binaries wheel or source can require compilers no yes ...

Symlink(Symbolic Link)

Symlink(Symbolic Link) symlink는 특정 디렉토리에서 다른 디렉토리에 있는 내용들도 볼수 있게 만드는 장치 인것으로 보인다. soft link와 hard link가 있는데 보통 다음 커멘드로 생성가능 하다. ln [-s or -h] [appended link] [base link] 자세한 설명은 다음링크를 참조하면 좋다....

Wheel File Type

Different Types of Wheels As touched on throughout this tutorial, there are several different variations of wheels, and the wheel’s type is reflected in its filename: A universal wheel contain...

AWS CLI

login to ECR aws ecr get-login-password --region us-east-1 --profile mfa | docker login --username AWS --password-stdin 176977192848.dkr.ecr.us-east-1.amazonaws.com 만약 다음 에러를 만난다면, aws cli를 삭제...

Fetch,Pull,Rebase

fetch 원격 저장소의 데이터를 로컬에 가져오기만 할때 사용 최신 커밋 이력은 이름 없는 브랜치로 로컬에 가져오게 됨. FETCH_HEAD 라는 이름으로 체크아웃 가능. pull FETCH + MERGE REBASE 현재 experiment 라는 브랜치에 checkout 한 상태라고 해보자. 이때 git rebas...

Trending Tags