首页
学习
活动
专区
工具
TVP
发布

云计算与大数据

专栏作者
275
文章
346706
阅读量
23
订阅数
linux|BGP协议
边界网关协议 (BGP) 就是互联网的邮政服务。当有人把一封信投进邮筒时,邮政服务就会处理这封邮件,并选择一条快速、高效的路线将这封信投递给收件人。同样地,当有人通过互联网提交数据时,BGP 负责寻找数据能传播的所有可用路径,并选择最佳的路由,这通常意味着在自治系统之间跳跃。
heidsoft
2023-03-18
3K0
linux | 对静态路由理解与测试
静态路由使用的原因多种多样,当没有到目的IP地址的动态路由时经常使用静态路由,或者用于覆盖动态获知的路由。
heidsoft
2023-03-18
1.6K0
linux | 数据包到网卡在通过DMA到内存过程
DMA 是一种硬件机制,它允许外围组件将其 I/O 数据直接传输到主内存或从主内存传输数据,而无需系统处理器参与传输。使用这种机制可以极大地增加进出设备的吞吐量,因为大量的计算开销被消除了。
heidsoft
2023-03-18
2.5K0
linux | 网络数据包softirq 软中断与CPU
softirqs 是在 Linux 内核编译时就确定好的,例如网络收包对应的 NET_RX_SOFTIRQ 软中断。因此是一种静态机制。如果想加一种新 softirq 类型,就需要修改并重新编译内核。
heidsoft
2023-03-18
2.6K0
linux | traffic control
📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 📷 https://www.slideserve.com/iden/cs-498-lecture-13-in
heidsoft
2023-03-18
2650
linux | network dev qdisc
Simply put, a qdisc is a scheduler (Section 3.2). Every output interface needs a scheduler of some kind, and the default scheduler is a FIFO. Other qdiscs available under Linux will rearrange the packets entering the scheduler's queue in accordance with that scheduler's rules.
heidsoft
2023-03-18
2.6K0
linux|性能参数测试
为自动调优定义socket使用的内存。第一个值是为socket发送缓冲区分配的最少字节数;第二个值是默认值(该值会被wmem_default覆盖),缓冲区在系统负载不重的情况下可以增长到这个值;第三个值是发送缓冲区空间的最大字节数(该值会被wmem_max覆盖)。
heidsoft
2023-03-18
2K0
linux tcp trace mark
perf perf-stat(1), perf-top(1), perf-record(1), perf-report(1), perf-list(1) root@heidsoft-dev:~# perf list List of pre-defined events (to be used in -e): alignment-faults [Software event] bpf-output
heidsoft
2023-03-18
4.3K0
Linux Netlink
When you are writing a linux application that needs either kernel to userspace communications or userspace to kernel communications, the typical answer is to use ioctl and sockets.
heidsoft
2023-03-18
1.1K0
Linux | 内存管理之mmap函数
~/Downloads/research/linux-5.15.4/include/linux/mm_types.h
heidsoft
2023-03-18
1.6K0
Linux | 内存分配之malloc->brk
~/Downloads/research/linux-5.15.4/mm/mmap.c
heidsoft
2023-03-18
1.7K0
Linux | 负载均衡理解之调度了解
每个处理器各自设置一个调度队列,从而可能出现有的处理器的就绪队列进程很多而另一个处理器上的就绪队列任务很少的现象。
heidsoft
2023-03-18
3900
Linux | 块设备了解之三层结构
块设备是文件系统的底层支撑,完成数据的存储和访问。块设备也能脱离文件系统以螺设备的形式工作。
heidsoft
2023-03-18
1K0
网络|Netty|NIO
backlog 参数定义了 sockfd 的挂起连接队列可能增长到的最大长度。如果连接请求在队列已满时到达,则客户端可能会收到指示 ECONNREFUSED 的错误,或者,如果基础协议支持重新传输,则可能会忽略该请求,以便以后的重新尝试连接成功。
heidsoft
2022-08-31
3470
calico | ipip 宿主机网卡抓包|容器IP
In a Calico network, each host acts as a gateway router for the workloads that it hosts. In container deployments, Calico uses 169.254.1.1 as the address for the Calico router. By using a link-local address, Calico saves precious IP addresses and avoids burdening the user with configuring a suitable address.
heidsoft
2022-06-09
8100
golang | context dive
上下文是 GO 提供的包。让我们首先了解一些已经存在的问题,以及哪个上下文包试图解决。
heidsoft
2022-06-09
3180
ITAM|What is IT Asset Management ?
Assets have a limited amount of time for use, and an organization can maximize their value with ITAM and proactive management. Phases of the lifecycle generally include planning, procurement, deployment, maintenance, retirement and disposal.
heidsoft
2022-04-18
7310
CMDB | What is a configuration management database ?
A configuration management database (CMDB) is a central repository that acts as a data warehouse, storing information about your IT environment and it is a purpose-built database for configuration management.
heidsoft
2022-04-18
9340
cni | pod ip 地址分配过程
One of the core requirements of the Kubernetes networking model is that every pod should get its own IP address and that every pod in the cluster should be able to talk to it using this IP address. There are several network providers (flannel, calico, canal, etc.) that implement this networking model.
heidsoft
2022-04-18
1.8K0
bpf| 系统分析工具
eBPF is a revolutionary technology with origins in the Linux kernel that can run sandboxed programs in an operating system kernel. It is used to safely and efficiently extend the capabilities of the kernel without requiring to change kernel source code or load kernel modules.
heidsoft
2022-04-18
1.1K0
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档