Littledriver's Blog
Home
About
  • Understanding Reliability Risk

    Dec 31, 2021 · 7 min read · SRE  ·
    Share on:

    I started to read the « Google SRE » during my paid off from Nov 2021. Lots of suggestions, guidance, and knowledge are included in this book. I would like to understand and summarize key thoughts that are born from Google SRE. I can reference them to think about each of my decision to check if I am in the …

    Read More
  • How Kubernetes Deletes A Pod Gracefully

    Aug 15, 2020 · 15 min read · kuberentes  ·
    Share on:

    This blog will introduce the graceful deletion proceess of pod in source code level. It maybe little bit complicated. If you just want to know the process in high level, you can reference the official document Hey! My pod was stuck in Terminating state During my on-call time, some users ask for my help with their pods …

    Read More
  • Paper Note — MapReduce

    May 4, 2020 · 24 min read · paper note  ·
    Share on:

    Overview If you are a software engineer, you must hear a tech concept — “MapReduce”. It is quite popular in the processing dataset on the large scale cluster. It was created by Google in 2004. With the development of technology, maybe Google has a new awesome method, but MapReduce has become an important sample for …

    Read More
  • 几个和网络分层有关的问题

    Jan 11, 2020 · 1 min read · network  ·
    Share on:

    Q1: TCP 在进行三次握手的时候,IP层和MAC对应都有什么操作呢? PS: 这里IP层和MAC层的说法是不准确的,应该是网络层和数据链路层。但是为了方便理解和举例就暂时这样使用。 当数据包来到IP层的时候,说明发送方已经知道了接收方的IP地址。所以,在IP层,这个数据包会在头部加入源IP和目的IP以及相应的字段,然后继续向下层传输。 而MAC层作为IP层的下一层,自然接收到的包就是一个IP数据报。MAC层上最重要的一个任务就是将接收方的MAC地址和发送方的MAC地址放在以太网帧的头部。为了达到这个目的,MAC层需要获得接收方的MAC地址。它会先去查阅缓存,查看是否有接收方IP地址对应的MAC地址的记录。如果有的话,则直接使 …

    Read More
  • The smallest schedulable unit in Kubernetes — Pod

    Dec 1, 2019 · 11 min read · container kubernetes  ·
    Share on:

    Overview As I have mentioned in the previous blog, lots of technologies the Kubernetes relies on are created with the help of the operating system. For example, the container is the specific process that corporates with the CGroup and Linux Namespace on OS. However, there is another essential OS concept used in …

    Read More
  • Kubernetes 的基石 — 容器技术

    Sep 15, 2019 · 3 min read · container kubernetes  ·
    Share on:

    Overview 随着容器技术的诞生和发展,它不再仅仅是一个发布你所开发软件的新姿势,更是在后端开发生态中,慢慢的成为了工程师开发模式的一部分。 容器技术最核心的一个优势,就是抹平了由于开发环境和部署环境的差异导致的部署线上服务困难的问题。任何一个以“容器”,都会被独立发布和部署。并且在“构建”的过程中,可以同时将服务所依赖的“环境”进行打包,从而保证了线上和本地的环境一致,减少部署过程中出现的问题。 除此之外,容器技术的实现借助了 Linux 操作系统中两个比较重要的技术 Namespace 和 Cgroup。前者让某一个容器运行起来之后可以在环境或者说是视图上保持良好的隔离性,后者则让一个容器在使用操作系统提供的资源的时候,与其 …

    Read More

Littledriver

Coder, Learner
Read More

Recent Posts

  • Understanding Reliability Risk
  • How Kubernetes Deletes A Pod Gracefully
  • Paper Note — MapReduce
  • 几个和网络分层有关的问题
  • The smallest schedulable unit in Kubernetes — Pod
  • Kubernetes 的基石 — 容器技术

Categories

KUBERNETES 3 CONTAINER 2 TROUBLESHOOTING 2 DISTRIBUTED-SYSTEM 1 NETWORK 1 RELIABILITY 1

Tags

CONTAINER 2 KUBERNETES 2 INDEX 1 KUBERENTES 1 NETWORK 1 PAPER-NOTE 1 SRE 1
Littledriver's Blog

Copyright  LITTLEDRIVER'S BLOG. All Rights Reserved