SohyeonKim(348)
-
[Kubernetes] Desired State and Microservices Architecture
https://www.youtube.com/watch?v=PH-2FfFD2PU # 강의 재생목록 https://youtube.com/playlist?list=PL7bmigfV0EqQw4WnD0wF-SRBYttCFeBbF&feature=shared Lightboards - Intro to Kubernetes www.youtube.comhttps://youtube.com/playlist?list=PL7bmigfV0EqQt5_pBPQ8tsZjI1w68-e0H&feature=shared Lightboards - Intro to Containers www.youtube.com # 마이크로서비스 아키텍처https://learn.microsoft.com/ko-kr/azure/architecture/gu..
2024.06.09 -
[Kubernetes] ReplicaSet Controller
2024. 05. 27 Monday https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ ReplicaSetA ReplicaSet's purpose is to maintain a stable set of replica Pods running at any given time. Usually, you define a Deployment and let that Deployment manage ReplicaSets automatically.kubernetes.io # simple-pod.yamlapiVersion: v1kind: Podmetadata: name: my-little-podspec: containers: - name..
2024.05.27 -
[Kubernetes] Nodes and Pods with Minikube
2024. 05. 22https://kubernetes.io/docs/concepts/architecture/nodes/ NodesKubernetes runs your workload by placing containers into Pods to run on Nodes. A node may be a virtual or physical machine, depending on the cluster. Each node is managed by the control plane and contains the services necessary to run Pods. Typically you hkubernetes.io # minikube 설치 by brew 🍻https://minikube.sigs.k8s.io/..
2024.05.23 -
[PIM] Processing-in-memory: A workload-driven perspective
Processing-in-memory: A workload-driven perspective (IBM, 2019) https://ieeexplore.ieee.org/document/8792187 Processing-in-memory: A workload-driven perspectiveMany modern and emerging applications must process increasingly large volumes of data. Unfortunately, prevalent computing paradigms are not designed to efficiently handle such large-scale data: The energy and performance costs to move thi..
2024.05.21 -
[PIM] Benchmarking a New Paradigm: An Experimental Analysis of a Real Processing-in-Memory Architecture
2024. 05. 17. FridayBenchmarking a New Paradigm: An Experimental Analysis of a Real Processing-in-Memory Architecture Benchmarking a New Paradigm: Experimental Analysis and Characterization of a Real Processing-in-Memory SystemMany modern workloads, such as neural networks, databases, and graph processing, are fundamentally memory-bound. For such workloads, the data movement between main memory ..
2024.05.17 -
[RaspberryPi] 라즈베리파이로 NAS 서버 만들기 2024.05.16
-
[Docker] Dockerfile WebSocket Client/Server Build
# Dockerfile WebSocket https://leimao.github.io/blog/Boost-Docker/ Boost C++ Library Docker ContainerPortable and Convenient C++ Libraryleimao.github.io 👩💻Docker desktop을 통해 쉘을 띄워서 클라이언트를 열어도 되고, (서버와 클라이언트를 하나의 이미지 파일로 빌드한 경우) 서로 다른 이미지로 분리하여, 통신을 시킬 수도 있습니다! 🐳 제출한 Docker hub link https://hub.docker.com/repository/docker/sohyeonkimdev/websocket_docker/general Doc..
2024.05.16 -
[Docker] Cpp Boost WebSocket Client/Server
# WebSocket Server/Client with Docker Composehttps://github.com/Chrischuck/websocket-docker-example GitHub - Chrischuck/websocket-docker-example: Example of a real time chat application with React, Express, Postgres, and Docker.Example of a real time chat application with React, Express, Postgres, and Docker. - Chrischuck/websocket-docker-examplegithub.com: Cpp 웹소켓 예시 프로젝트 돌려보기 ..
2024.05.09 -
[FreeBSD] Kernel Services and Process Management
Kernel Services The boundary between the kernel- and user-level code is enforced by hardware-protection facilities provided by the underlying hardware. The kernel operates in a separate address space that is inaccessible to user processes. Privileged operations—such as starting I/O and halting the central processing unit (CPU)—are available to only the kernel. Applications request services from ..
2024.05.01 -
[Docker] 중간고사 정리(2)
Chap5. Docker Introduction - 도커는 구글이 만든 SW 아니다. ‘Solomon Hykes’ 파이콘 2013에서 발표- 2013년, 도커가 Go 언어로 짠 순간, 쿠버네티스 등장 (Go) -> 두 sw가 출시되며 Go 언어가 인정받음 - 도커는 거의 대부분의 플랫폼 위에 올라간다 + 오픈소스 / 플랫폼에 독립적으로 SW를 돌릴 수 있다 -> OS에 무관하게 도커 위에서 어플리케이션을 짜면 된다, infrastructure 과 무관하게 짜면 된다.- 프로그래밍 하듯이 infrastructure를 관리할 수 있다, infrastructure as code (IaC)- 실행할 프로그램의 소스 코드와, 이미지를 만들기위한 도커 파일 코드, 이렇게 코드 파일이 2개 필요하다. * Immuta..
2024.05.01