阅读NFS-Ganesha代码(version 2.8.4),记录要点,方便查阅。
NFS-Ganesha对接CephFS时iops很低
NFS-Ganesha对接CephFS时iops很低,记录排查过程。Ceph版本14.2.11;NFS-Ganesha版本2.8.4。
Ceph-RGW跨Bucket拷贝引发OSD耗尽内存
记录一次跨Bucket拷贝S3-Object引发的内存耗尽问题,版本是ceph-14.2.11。
rpmbuild概要
简要记录如何编写spec文件来打rpm包。
Python3 Metaclass
简要记录Python3中的metaclass。注意本文是基于new-style class的。Python3中所有class都是new-style class,Python2则不同:Python2.2以前根本不支持new-style class,而从Python2.2开始,虽然支持但需要显示地声明。
Linux eBPF BCC
详细介绍eBPF的实现原理。
CPU mpstat命令
本文简要介绍一下mpstat命令的使用,并补充一些CPU中断知识。
Linux perf
Linux tracing系统中有3层:front-end, tracing-framework(本文叫tracer)和event-source; 本文聚焦于perf,它属于tracer,类似的还有ftrace, eBPF等。
Linux Ftrace
Linux tracing系统中有3层:front-end, tracing-framework(本文叫tracer)和event-source; 本文聚焦于ftrace,它属于tracer,类似的还有perf, eBPF等。
Linux Tracepoint
Linux tracing中有3层:front-end, tracer(即tracing framework)和event-source. Tracepoint属于event-source,是一种kernel static tracing事件源。本文介绍tracepoint的实现以及使用方式,特别是如何被ftrace使用。