ComputerScience(120)
-
[Kubernetes] 기말고사 정리 1
Chap12. Private Multi-Node Docker / Docker in docker - Docker in docker – DinD - official but not recommended (권장 X) - 도커 안에서 다시 도커를 띄울 수 있도록 한다 + 경고가 정말 많다. Chap13. Docker Swarm 1- 수천 수만대의 컴퓨터에서 SW 돌리기 위한 궁극적인 방법, 도커 스웜 (like 쿠버네티스) - SWARM – 떼, 구성 요소는 여러 개지만, 하나의 논리적인 군 (도커 스웜은 컨테이너들의 군) - 일일이 다 타이핑? 불가능 / 자동화된 도커 스웜 등장 -> 더 편하게 수많은 이미지와 컨테이너 컨트롤 가능- 얌파일을 커맨드라인을 통해 일꾼들에게 쫙 뿌림 – 개발자 관점 - 도커..
2024.06.25 -
[PIM] HEAM: Hashed Embedding Acceleration Using Processing-In-Memory
HEAM: Hashed Embedding Acceleration Using Processing-In-Memory https://arxiv.org/abs/2402.04032 HEAM : Hashed Embedding Acceleration using Processing-In-MemoryIn today's data centers, personalized recommendation systems face challenges such as the need for large memory capacity and high bandwidth, especially when performing embedding operations. Previous approaches have relied on DIMM-based near..
2024.06.25 -
[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