Home
0hwan's blog
Cancel

리눅스 프로세스 상태코드

1. 기본 상태 R: Running or runnable (on run queue) D: Uninterruptible sleep (usually IO) S: Interruptible sleep (waiting for an event to complete) T: Stopped, either by a job control signal ...

Nginx Multi-Domain 설정 및 SSL

1. Install Nginx for CentOS 7.x CentOS 에서 yum 설치를 하려면 Repository를 설정 해야 하나, 여기에서는 rpm 파일을 받아서 설치하는 방법으로 하겠습니다. 그리고 현재 설치는 root로 진행 되고 홈디렉터리는 /root 입니다. nginx의 패키지 저장소는 https://nginx.org/p...

Network Troubleshooting

1. Network Plugin in kubernetes Kubernetes uses CNI plugins to setup network. The kubelet is responsible for executing plugins as we mention the following parameters in kubelet configuration. ...

Using NVIDIA GPUs for Cloudera Data Science Workbench Projects

1. NVIDIA Driver 설치 (CentOS/RedHat 7.x) Refer the NVIDIA documentation: CUDA Compatibility. CDSW OS&Kernel NVIDIA Driver CU...

Cloudera Manager Install Guide

1. System Configuration 1.1 Disabling the Firewall RHEL/CentOS 7 compatible REH: $ sudo systemctl disable firewalld $ sudo systemctl stop firewalld 1.2 Setting SELinux mode Che...

2020년 6월 나의 북마크

Papers with Code C언어 복잡한 선언문 해석 방법 Python 데이터 분석 실무 Mastering Async/Await 마이크로서비스 아키텍처 (MSA) 도커 이미지 잘 만드는 방법 Prometheus & Gra...

GCP DataProc 설치

DASHBoard 에 가면 확인 가능 username : student-03-db9b109b5ecf@qwiklabs.net project id : qwiklabs-gcp-00-cb7bb719eb9a project Number : 378084473336 ranger 관리자 비밀번호 설정 gcloud projects add-iam-policy-bi...

Apache Hive 최적화를 위한 설계 방법들

1. Partition table design 2. Bucket table design 버켓팅은 지정된 칼럼의 값을 해쉬 처리하고 지정한 수의 파일로 나누어 저장 조인에 사용되는 키로 버켓 칼럼생성 -> 소트 머지 버켓(SMB) 조인으로 처리되어 수행속도가 빨라짐 Bucketing을 하면 Join을 하거나 샘플링 작업을 할 경우 성...