일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 그래프
- 분산처리
- 우선순위큐
- Apache Hadoop
- 아파치 하둡
- 문자열
- Apache Spark
- String
- 도커
- 이진탐색
- BFS
- 하둡
- apache kafka
- 티스토리챌린지
- leetcode
- 분산
- 알고리즘
- DP
- Python
- 리트코드
- programmers
- 카프카
- 파이썬
- heapq
- 코딩테스트
- 오블완
- docker
- 프로그래머스
- 아파치 스파크
- 아파치 카프카
- Today
- Total
목록2025/02/04 (2)
래원
이번 글에서는 Kubernetes의 기본 오브젝트인 Pod에 대해 정리하려고 한다. 목차는 다음과 같다.1. Kubernetes Cluster2. 기본 오브젝트 - Pod2-1. Pod - Container2-2. Pod - Label2-3. Pod - Node Schedule3. 마무리 1. Kubernetes Cluster Pod에 대해 알아보기 전에 Kubernetes 클러스터에 대해 먼저 알아보자 Kubernetes를 통해 클러스터를 구성하게 되면 위 그림과 같이 구성된다. 크게 Control plane이라 불리는 마스터 역할의 노드와 일반 노드들로 이루어져있다. Control plane은 클러스터를 관리하는 핵심 구성 요소로, 여러 가지 주요 컴포넌트로 이루어져 있다.API Server: 클러스..
난이도: Easy문제 설명Given an array of positive integers nums, return the maximum possible sum of an ascending subarray in nums. A subarray is defined as a contiguous sequence of numbers in an array. A subarray [numsl, numsl+1, ..., numsr-1, numsr] is ascending if for all i where l , numsi i+1. Note that a subarray of size 1 is ascending. 문제 예제Example 1:Input: nums = [10,20,30,5,10,50]Output: 65Explan..