《InfiniBand(IB)协议详解》 InfiniBand(IB)协议是一种高性能的、基于交换架构的互连技术,广泛应用于数据中心、高性能计算和存储领域。该技术最初由InfiniBand Trade Association(IBTA)制定,旨在提供低延迟、高带宽的数据传输。"IB Specification Vol 1-Release-1.4.pdf"是关于InfiniBand协议的详细规范文档,包含了协议的最新版本,即1.4版。 InfiniBand协议的核心在于其灵活的架构和先进的通信机制,其中RDMA(Remote Direct Memory Access)是其显著特征之一。RDMA允许数据直接在系统内存间传输,而无需经过操作系统内核,极大地减少了CPU的负担,提高了数据传输效率。这一特性使得InfiniBand在大数据处理和云计算环境中表现出色。 InfiniBand协议分为几个主要部分: 1. **基础架构**:InfiniBand架构由通道适配器(CA)、交换机(Switch)和物理链路组成。CA是连接到服务器或设备的接口,交换机则负责将数据包路由到正确的目标,物理链路则通过光纤或铜线进行数据传输。 2. **传输层**:包括RC(Reliable Connection)和UD(Unreliable Datagram)两种模式。RC提供面向连接、可靠的传输服务,适合于需要保证数据完整性的应用;UD则是无连接的,适合于低延迟、高吞吐量的应用。 3. **队列对(Queue Pair,QP)**:每个连接由一对队列构成,一个发送队列和一个接收队列,用于管理数据的发送和接收。 4. **verbs( verbs)**:是InfiniBand编程模型的一部分,提供了一组API,允许应用程序直接控制网络操作,如发送、接收和管理队列对等。 5. **Service Level Agreement (SLA)**:InfiniBand支持多种服务质量级别,可以根据不同的应用需求设定优先级,确保关键任务的执行。 6. **错误检测与恢复**:协议包含了强大的错误检测和恢复机制,如CRC校验和路径恢复机制,保证了网络的稳定性和可靠性。 7. **Port and LID**:每个InfiniBand设备都有一个端口(Port)和逻辑标识符(LID),用于网络中的地址定位。 8. **RoCE (RDMA over Converged Ethernet)**:为了兼容以太网环境,InfiniBand引入了RoCE,允许在标准以太网上实现RDMA功能。 通过深入理解《InfiniBand协议 Vol 1-Release-1.4.pdf》这份文档,开发者和系统管理员可以更好地掌握InfiniBand技术,设计和优化高效的数据中心解决方案。它涵盖了协议的各个方面,包括协议格式、传输协议、队列管理、错误处理以及系统管理和配置等,是学习和实施InfiniBand技术的重要参考资料。
2024-08-28 12:55:10 9.3MB RDMA
1
Infiniband Specification Vol 1-Release-1.4相关资料 (免积分) 内容包含 IB Specification Vol 1-Release-1.4-2020-04-07.pdf IB Specification Vol 2-Release-1.4-2020-04-07.pdf
2024-08-26 16:57:15 17.52MB Infiniband RDMA RoCE
1
This document is an annex to Volume 1 release 1.2.1 of the InfiniBand Architecture, herein referred to as the base specification. This annex is Optional Normative, meaning that implementation of the feature described by this annex is Optional, but if present, the implementation must comply with the compliance statements contained within this annex. This specification follows the spirit of the RoCE Annex (Annex A16 to the base specification) in defining a new InfiniBand protocol variant that uses an IP network layer (with an IP header instead of InfiniBand‘s GRH) thus allowing IP routing of its packets.
2024-07-04 11:23:39 498KB linux rdma
1
Octopus: an RDMA-enabled Distributed Persistent Memory File System
2024-05-05 20:59:11 974KB 研究论文
1
rdma-core-35.0.tar.gz
2023-02-26 21:29:12 1.59MB zookeeper 分布式 云原生
1
IB Specification Vol 1-Release-1.4 ib协议2020版本
2023-02-20 22:57:25 9.3MB RDMA IB
1
RDMA_Aware_Programming_user_manual.pdf 迈络斯RDMA 编程指南 包含各种vabal编程说明以及例子
2023-02-06 11:01:25 1.89MB RDMA 迈络斯 mellanox C/C++
1
Upon receiving a device removal event, users must destroy the associated RDMA identifier and release all resources allocated with the device.
2022-09-23 17:01:24 4KB event
Infinity-用于InfiniBand的轻量级C ++ RDMA库 Infinity是ibVerbs的简单,强大,面向对象的抽象。 该库使用户可以构建使用远程直接内存访问(RDMA)的复杂应用程序,而不会牺牲性能。 它大大降低了RDMA编程入门的障碍。 Infinity为双面(发送/接收)以及双面(读/写/原子)操作提供支持。 该库是用C ++编写的,并已通过@utaal移植到Rust( )。 安装 在构建Infinity之前,必须先安装“ ibVerbs”。 输出位于``release / libinfinity.a''中。 $ make library # Build the library $ make examples # Build the examples 使用无限 使用Infinity很简单,只需要几行C ++代码。 // Create new context i
1