- 浏览: 54686 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
mayatama:
jiakon 写道你好,请问yum install glust ...
Glusterfs+Swift 对外提供对像存储 -
jiakon:
你好,请问yum install glusterfs glus ...
Glusterfs+Swift 对外提供对像存储
GlusterFS is an open source, clustered file system capable of scaling to several petabytes and
handling thousands of clients. GlusterFS can be flexibly combined with commodity physical, virtual,
and cloud resources to deliver highly available and performant enterprise storage at a fraction of the
cost of traditional solutions.
handling thousands of clients. GlusterFS can be flexibly combined with commodity physical, virtual,
and cloud resources to deliver highly available and performant enterprise storage at a fraction of the
cost of traditional solutions.
GlusterFS是一个开源集群文件系统,能够扩展到PB级存储容量并处理数以千计的客户端请求。GlusterFS可与物理资源、虚拟资源和云资源商品灵活组合,以低于传统的解决方案的成本,提供高可用和高性能的企业存储。
Red Hat Storage was designed to achieve several major goals:
Elasticity
Elasticity is the notion that an enterprise should be able to flexibly adapt to the growth (or reduction) of data
and to add or remove resources to a storage pool as needed without disrupting the system. Red Hat Storage
was designed to allow enterprises to add or delete users, application data, volumes and storage nodes, etc.,
without disrupting any running functionality within the infrastructure.
Linear scaling
“Linear scaling” is a much-abused phrase within the storage industry. It should mean, for example, that
twice the amount of storage systems will deliver twice the realized performance—twice the throughput (as
measured in gigabytes per second) with the same average response time per external file system I/O event
(i.e., how long an NFS client will wait for the file server to return the information associated with each NFS
client request).
Elasticity
Elasticity is the notion that an enterprise should be able to flexibly adapt to the growth (or reduction) of data
and to add or remove resources to a storage pool as needed without disrupting the system. Red Hat Storage
was designed to allow enterprises to add or delete users, application data, volumes and storage nodes, etc.,
without disrupting any running functionality within the infrastructure.
Linear scaling
“Linear scaling” is a much-abused phrase within the storage industry. It should mean, for example, that
twice the amount of storage systems will deliver twice the realized performance—twice the throughput (as
measured in gigabytes per second) with the same average response time per external file system I/O event
(i.e., how long an NFS client will wait for the file server to return the information associated with each NFS
client request).
红帽存储解决方案(也就是Glusterfs)有如下设计目标:
弹性存储
弹性存储是指企业应该能够灵活地适应数据的增长(或减少),在不中断系统的情况下,根据需要添加或删除资源存储池。红帽存储解决方案可以在不破坏的基础设施内的任何正在运行的功能的情况下,让企业添加/删除 用户、应用程序数据、卷和存储节点。
线性扩展
“线性扩展”是存储行业内的滥用短语。它应当意味着,例如,两倍存储系统容量将提供两倍的性能—两倍吞吐量(GB/s),
并保持相同的外部文件系统I / O事件平均响应时间(如发送请求后,NFS文件服务器客户端将等待多久才能收到文件服务器返回的相关信息)。
There are seven fundamental technical differentiators between Red Hat Storage and traditional storage
systems. These are discussed in brief below.
systems. These are discussed in brief below.
红帽存储和传统存储之间有7个基本的技术差异。下面将简单讨论它们。
Software-only 只用软件实现
Open source 开源
Complete storage operating system stack 不仅是分布式文件系统,还提供了应该有的各种功能。
Our belief is that it’s important not only to deliver a distributed file system, but also to deliver a number of
other important functions in a distributed fashion. Red Hat Storage delivers distributed memory manage-
ment, I/O scheduling, software RAID, self-healing, local N-way synchronous replication as well as asynchro-
nous long-distance replication via Red Hat Geo-Replication. In essence, by taking a lesson from micro-kernel
architectures, we have designed Red Hat Storage to deliver a complete storage operating system stack in
user space.
User space 用户模式而不是内核模式,通过fuse实现。
Unlike traditional file systems, Red Hat Storage operates in user space. This makes installing and upgrading
Red Hat Storage significantly easier. And it means that users who choose to develop on top of Red Hat
Storage need only have general C programming skills, not specialized kernel expertise.
Modular, stackable architecture 模块化、可堆放的架构, 通过xlator动态链接库实现。
Red Hat Storage is designed using a modular and stackable architecture approach. To configure Red Hat
Storage for highly specialized environments (e.g., large number of large flies, huge numbers of very small
files, environments with cloud storage, various transport protocols, etc.), it is a simple matter of including or
excluding particular modules.
For the sake of stability, certain options should not be changed once the system is in use (for example, one
would not remove a function such as replication if high availability was a desired functionality).
Data stored in native formats 数据以本地文件系统的格式存储,通过完全兼容POSIX语义实现。
With Red Hat Storage, data is stored on disk using native formats (e.g. EXT3, EXT4, XFS). Red Hat Storage
has implemented various self-healing processes for data. As a result, the system is extremely resilient.
Furthermore, files are naturally readable without Red Hat Storage. If a customer chooses to migrate away
from Red Hat Storage, their data is still completely usable without any required modifications or data
migration.
No metadata with the elastic hash algorithm 没有原数据(即数据的数据信息),通过DHT实现。
In a scale-out system, one of the biggest challenges is keeping track of the logical and physical location of
data (location metadata). Most distributed systems solve this problem by creating a separate index with file
names and location metadata. Unfortunately, this creates both a central point of failure and a huge perfor-
mance bottleneck. As traditional systems add more files, more servers, or more disks, the central metadata
server becomes a performance chokepoint. This becomes an even bigger challenge if the workload consists
primarily of small files and the ratio of metadata to data increases.
Unlike other storage systems with a distributed file system, Red Hat Storage does not create, store, or use
a separate index of metadata in any way. Instead, Red Hat Storage places and locates files algorithmically.
All storage node servers in the cluster have the intelligence to locate any piece of data without looking it up
in an index or querying another server. All a storage node server needs to do to locate a file is to know the
pathname and filename and apply the algorithm. This fully parallelizes data access and ensures linear perfor-
mance scaling. The performance, availability, and stability advantages of not using metadata are significant
and, in some cases, dramatic.
Open source 开源
Complete storage operating system stack 不仅是分布式文件系统,还提供了应该有的各种功能。
Our belief is that it’s important not only to deliver a distributed file system, but also to deliver a number of
other important functions in a distributed fashion. Red Hat Storage delivers distributed memory manage-
ment, I/O scheduling, software RAID, self-healing, local N-way synchronous replication as well as asynchro-
nous long-distance replication via Red Hat Geo-Replication. In essence, by taking a lesson from micro-kernel
architectures, we have designed Red Hat Storage to deliver a complete storage operating system stack in
user space.
User space 用户模式而不是内核模式,通过fuse实现。
Unlike traditional file systems, Red Hat Storage operates in user space. This makes installing and upgrading
Red Hat Storage significantly easier. And it means that users who choose to develop on top of Red Hat
Storage need only have general C programming skills, not specialized kernel expertise.
Modular, stackable architecture 模块化、可堆放的架构, 通过xlator动态链接库实现。
Red Hat Storage is designed using a modular and stackable architecture approach. To configure Red Hat
Storage for highly specialized environments (e.g., large number of large flies, huge numbers of very small
files, environments with cloud storage, various transport protocols, etc.), it is a simple matter of including or
excluding particular modules.
For the sake of stability, certain options should not be changed once the system is in use (for example, one
would not remove a function such as replication if high availability was a desired functionality).
Data stored in native formats 数据以本地文件系统的格式存储,通过完全兼容POSIX语义实现。
With Red Hat Storage, data is stored on disk using native formats (e.g. EXT3, EXT4, XFS). Red Hat Storage
has implemented various self-healing processes for data. As a result, the system is extremely resilient.
Furthermore, files are naturally readable without Red Hat Storage. If a customer chooses to migrate away
from Red Hat Storage, their data is still completely usable without any required modifications or data
migration.
No metadata with the elastic hash algorithm 没有原数据(即数据的数据信息),通过DHT实现。
In a scale-out system, one of the biggest challenges is keeping track of the logical and physical location of
data (location metadata). Most distributed systems solve this problem by creating a separate index with file
names and location metadata. Unfortunately, this creates both a central point of failure and a huge perfor-
mance bottleneck. As traditional systems add more files, more servers, or more disks, the central metadata
server becomes a performance chokepoint. This becomes an even bigger challenge if the workload consists
primarily of small files and the ratio of metadata to data increases.
Unlike other storage systems with a distributed file system, Red Hat Storage does not create, store, or use
a separate index of metadata in any way. Instead, Red Hat Storage places and locates files algorithmically.
All storage node servers in the cluster have the intelligence to locate any piece of data without looking it up
in an index or querying another server. All a storage node server needs to do to locate a file is to know the
pathname and filename and apply the algorithm. This fully parallelizes data access and ensures linear perfor-
mance scaling. The performance, availability, and stability advantages of not using metadata are significant
and, in some cases, dramatic.
发表评论
-
Glusterfs+Swift 对外提供对像存储
2013-11-27 16:14 3057虽然Glusterfs本身对外只提供POSIX兼容的文件存 ... -
poll实现详解
2013-06-04 16:11 0说到select和poll,也就是IO多路转接,在APUE ... -
qemu-kvm使用gluster协议
2013-03-29 10:12 3285为了提高以glusterfs做为存储的 虚拟机的IO性能, ... -
Glusterfs社区开发流程
2013-03-21 14:36 1655Glusterfs开源社区使用 Git + Ger ... -
Glusterfs扩展属性
2013-03-06 12:27 1690英文原文: http://hekafs ... -
图说DHT
2013-02-28 14:22 1297dht-diskusage.c 它包含dh ... -
call_stack 与 call_frame
2013-02-28 10:04 1197call_stack由一个或多个call_frame组成。 ... -
使用glusterfs API
2013-02-21 10:43 3513如果是通过rpm安装的glusterfs 在执行 ... -
Glusterfs吞吐量性能测试
2013-01-10 13:55 3632我在这里 介绍了如何用iozone来测试glusterfs性 ... -
Glusterfs配置文件
2012-12-20 14:58 0Glusterfs会在 /var/lib/glusterfs存 ... -
glusterd中的状态机浅析
2012-12-20 13:14 2419当RPC请求到达Glusterd守护进程后, 它会根据rpcs ... -
Gluster术语表
2012-12-19 16:31 1583接触新的东西的时候,缩写/术语啥的最头疼了。下面我总结了一 ... -
iozone测试glusterfs性能
2012-11-27 11:39 2694iozone 是linux下的磁 ... -
syntask@glusterfs
2012-11-26 16:04 0syntask struct sy ... -
inode详解
2012-11-23 16:38 2854inode是glusterfs中重要的数据结构之一, glus ... -
epoll与event_pool
2012-11-07 14:56 1783epoll is a scalable I/O even ... -
CircleBuffer@glusterfs
2012-11-05 17:22 887CircleBuffer 是逻辑上呈环形的缓冲区 。 ... -
如何查看brick上文件扩展属性
2012-10-25 16:25 1266在brick目录(不是volume挂载目录)执行: ... -
xlators 综述
2012-10-11 15:19 0xlator是glusterfs里面比较有意思的东西,下面由简 ... -
关于卷的配置文件(Volume Spec)
2012-10-10 17:07 2358Glusterfs使用了xlator模块化架构,用户可以通过编 ...
相关推荐
#### GlusterFS简介与特性 GlusterFS是一种开源的分布式文件系统,旨在解决大规模数据存储需求。它通过将多个独立的存储节点组合在一起,形成一个统一的大规模并行文件系统网络,从而实现高性能的数据访问和服务。...
#### 一、GlusterFS简介 GlusterFS 是一款开源的分布式文件系统,以其强大的横向扩展能力而闻名。它能够支持数PB级别的存储容量,并且可以处理数千个客户端的同时访问。通过使用TCP/IP或InfiniBand RDMA网络,...
#### 一、GlusterFS简介 - **GlusterFS**是一种分布式文件系统,由Gluster公司开发并提供支持。它主要用于构建存储集群,能够为用户提供高可用性、高性能的数据存储服务。 - **版本信息**:本手册基于Gluster 3.2...
#### GlusterFS简介 GlusterFS是一种开源的分布式文件系统,它可以将普通的X86服务器上的硬盘连接起来形成一个统一的存储池,并提供单一命名空间供客户端访问。这种架构非常适合于云环境下的存储需求,特别是在需要...
文章目录前言一:理论概述1.1:Glusterfs 简介1.2:Glusterfs 特点二:KVM高可用构建实操2.1:环境2.2:实验目的2.3:实验过程2.3.1:构建GFS集群2.3.2:安装KVM虚拟机2.3.3:GFS集群节点服务器添加磁盘2.3.4:KVM宿...
#### 一、GlusterFS简介 GlusterFS是一种开源的分布式文件系统,支持大规模数据存储需求。它能够将多台服务器上的磁盘空间聚合起来,形成一个统一的文件系统,提供高性能的数据访问能力。GlusterFS非常适合用于...
#### 一、简介 《Gluster File System 3.2.5 Administration Guide》是一本由Red Hat Engineering Content Services编写的指导手册,旨在帮助用户理解、配置、操作和管理GlusterFS(Gluster File System)。...
- 选择合适的分布式文件系统,如GlusterFS、Ceph等。 - 配置各节点间的网络连接,确保数据可以高效传输。 2. **安装配置Samba**: - 在每个节点上安装Samba服务。 - 配置Samba服务器,使其能够识别分布式文件...
* 网络存储:Ceph、Glusterfs、NFS、Isci等类型,这些存储卷的特点是数据不在集群的某个节点上,而是在远端的存储服务上,使用存储卷时需要将存储服务挂载到本地使用。 * Secret/ConfigMap:这些存储卷类型,其数据...
* 存储域任务:存储域任务包括准备并添加基于文件的存储域、准备NFS存储、添加本地存储和添加Glusterfs的存储域等。 * 存储域的权限管理:存储域的权限管理包括管理存储域的系统权限、存储管理员的角色解析、为特定...
00云计算简介.pptx0 1-OpenStack概览.pptx 02 Nova讲解.pptx 03 Glance与Swift讲解.pptx 04 Cinder讲解.pptx 05-1 Neutron讲解.pptx 05-2 Neutron L3讲解.pptx 06 KeyStone讲解.pptx 07 RabbitMQ讲解.pptx 08 ...
00 云计算简介.pptx 01-OpenStack概览.pptx 02 Nova讲解.pptx 03 Glance与Swift讲解.pptx 04 Cinder讲解.pptx 05-1 Neutron讲解.pptx 05-2 Neutron L3讲解.pptx 06 KeyStone讲解.pptx 07 RabbitMQ讲解.pptx 08 ...
源码简介与安装说明: Alluxio(以前称为Tachyon)是一个虚拟的分布式存储系统。它弥合了计算框架和存储系统之间的鸿沟,使计算应用程序可以通过公共接口连接到众多存储系统。Alluxio项目源自加州大学伯克利分校...
#### 一、分布式存储系统简介 分布式存储系统是一种将数据分布在多个物理位置的存储系统,旨在通过利用网络中的多台计算机来提高存储性能、可靠性和可扩展性。它能够有效地解决单一存储设备在容量、性能等方面的...
1. Kubernetes 简介 Kubernetes 是一个开源的容器编排系统,由 Google 公司开发,并在 2014 年捐赠给了云计算基金会(CNCF)。Kubernetes 的主要目标是提供一个自动化的容器部署、扩展、管理和维护的平台。 2. ...
它通过提供一个中间层,连接不同的计算框架(如Spark、Presto)与底层存储系统(如HDFS、Amazon S3、GlusterFS等),使得在不同存储之间切换无需修改应用程序。Alluxio由Master节点、Worker节点和Client组成,Master...
### RDMA技术简介 远程直接内存访问(RDMA)是一种高级网络通信技术,它允许两个计算节点之间的数据传输直接在它们的内存之间进行,无需CPU的干预或操作系统上下文切换。这种技术减少了CPU负载,提高了带宽利用率,并...
1. **Jenkins简介**: Jenkins是一款开源的自动化服务器,可以用于自动化各种软件开发过程,包括构建、测试和部署。它支持多种插件,使用户可以根据需要自定义工作流程。 2. **Kubernetes**: Kubernetes(K8s)...
**Rook 简介** Rook 是一个云原生存储操作系统,它将存储软件包装成 Kubernetes 集群内的 Operator,这样可以充分利用 Kubernetes 的自动化和自我修复能力。Rook 通过定义一种名为“StorageClass”的资源,使存储的...