# FastCFS **Repository Path**: merry1314/FastCFS ## Basic Information - **Project Name**: FastCFS - **Description**: 基于块存储的高性能通用分布式文件系统,可以作为数据库(MySQL、PostgresSQL、Oracle等)以及云平台的后端存储。 - **Primary Language**: C - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 153 - **Created**: 2021-12-31 - **Last Updated**: 2021-12-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FastCFS -- 可以跑数据库的高性能云原生分布式文件系统 ## 1. 关于 FastCFS 是一款基于块存储的通用分布式文件系统,可以作为MySQL、PostgresSQL、Oracle等数据库和云平台的后端存储。 ## 2. 当前版本 V1.1.0 ## 3. 支持的操作系统 * Linux: Kernel version >= 3.10 (完全支持) * MacOS or FreeBSD (仅支持服务端,不支持FUSE) ## 4. 依赖 * [libfuse](https://github.com/libfuse/libfuse) (版本 3.9.4 或更高版本) * [Python](https://python.org/) (版本 3.5 或更高版本) * [Ninja](https://ninja-build.org/) (版本 1.7 或更高版本) * [gcc](https://www.gnu.org/software/gcc/) (版本 4.7.0 或更高版本) * [libfastcommon](https://github.com/happyfish100/libfastcommon) (tag: V1.0.45) * [libserverframe](https://github.com/happyfish100/libserverframe) (tag: V1.1.1) * [fastDIR](https://github.com/happyfish100/fastDIR) (tag: V1.1.0) * [faststore](https://github.com/happyfish100/faststore) (tag: V1.1.0) * [FastCFS](https://github.com/happyfish100/FastCFS) (tag: V1.1.0) ## 5. 安装 libfuse可以采用脚本libfuse_setup.sh一键编译和安装。 libfastcommon、libserverframe、fastDIR、faststore和FastCFS 五个安装包可采用 fastcfs.sh 脚本统一安装配置,也可以按照5.1 - 5.6部分独立安装配置。 *统一安装方式* ``` git clone https://github.com/happyfish100/FastCFS.git; cd FastCFS/ ``` 通过执行fastcfs.sh脚本,可自动从github仓库拉取或更新五个仓库代码,按照依赖顺序进行编译、安装,并能根据配置文件模版自动生成集群相关配置文件。 fastcfs.sh 命令参数说明: * pull -- 从github拉取或更新代码库(拉取到本地build目录) * makeinstall -- 顺序编译、安装代码库(make && make install) * init -- 初始化集群目录、配置文件(已存在不会重新生成) * clean -- 清除已编译程序文件(相当于make clean) 一键搭建(包括部署和运行)demo环境(需要root身份执行): ``` ./helloWorld.sh --prefix=/usr/local/fastcfs-test ``` 或执行如下命令(需要root身份执行): ``` ./libfuse_setup.sh ./fastcfs.sh pull ./fastcfs.sh makeinstall IP=$(ifconfig -a | grep -w inet | grep -v 127.0.0.1 | awk '{print $2}' | tr -d 'addr:' | head -n 1) ./fastcfs.sh init \ --dir-path=/usr/local/fastcfs-test/fastdir \ --dir-server-count=1 \ --dir-host=$IP \ --dir-cluster-port=11011 \ --dir-service-port=21011 \ --dir-bind-addr= \ --store-path=/usr/local/fastcfs-test/faststore \ --store-server-count=1 \ --store-host=$IP \ --store-cluster-port=31011 \ --store-service-port=41011 \ --store-replica-port=51011 \ --store-bind-addr= \ --fuse-path=/usr/local/fastcfs-test/fuse \ --fuse-mount-point=/usr/local/fastcfs-test/fuse/fuse1 注:--fuse-mount-point为mount到本地的路径,通过这个mount point对FastCFS进行文件存取访问。 FCFS_SHELL_PATH=$(pwd)/build/shell $FCFS_SHELL_PATH/fastdir-cluster.sh restart $FCFS_SHELL_PATH/faststore-cluster.sh restart $FCFS_SHELL_PATH/fuse.sh restart ``` 上述操作完成后,通过命令 df -h 可以看到FastCFS挂载的文件目录。 ### 5.1. libfastcommon ``` git clone https://github.com/happyfish100/libfastcommon.git; cd libfastcommon/ git checkout master ./make.sh clean && ./make.sh && ./make.sh install ``` 默认安装目录: ``` /usr/lib64 /usr/lib /usr/include/fastcommon ``` ### 5.2. libserverframe ``` git clone https://github.com/happyfish100/libserverframe.git; cd libserverframe/ ./make.sh clean && ./make.sh && ./make.sh install ``` ### 5.3. fastDIR ``` git clone https://github.com/happyfish100/fastDIR.git; cd fastDIR/ ./make.sh clean && ./make.sh && ./make.sh install ``` ### 5.4 faststore ``` git clone https://github.com/happyfish100/faststore.git; cd faststore/ ./make.sh clean && ./make.sh && ./make.sh install mkdir /etc/fstore/ cp conf/server.conf conf/client.conf conf/servers.conf conf/cluster.conf conf/storage.conf /etc/fstore/ ``` ### 5.5 libfuse 构建libfuse需要先安装meson和ninja。安装meson和ninja需要python3.5及以上版本。 ##### python安装 包名:python3 python3-pip Ubuntu下安装命令: ``` apt install python3 python3-pip -y ``` CentOS下安装命令: ``` yum install python3 python3-pip -y ``` ##### meson 和 ninja 安装 ``` pip3 install meson pip3 install ninja ``` ##### gcc安装 Ubuntu下安装命令: ``` apt install gcc g++ -y ``` CentOS下安装命令: ``` yum install gcc gcc-c++ -y ``` ##### libfuse安装 ``` git clone https://github.com/libfuse/libfuse.git cd libfuse/ git checkout fuse-3.10.1 mkdir build/; cd build/ meson .. meson configure -D prefix=/usr meson configure -D examples=false ninja && ninja install sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf ``` ### 5.6 FastCFS ``` git clone https://github.com/happyfish100/FastCFS.git; cd FastCFS/ ./make.sh clean && ./make.sh && ./make.sh install mkdir /etc/fcfs/ cp conf/fuse.conf /etc/fcfs/ ``` ## 6. 配置 为了更好的控制FastCFS的性能,我们通过各种设置参数为FastCFS提供了高度可配置和可调节的行为。 FastCFS的配置由多个子文件组成,其中一个是入口文件,其他文件用于引用。目录/etc/fstore 是FastCFS配置文件的默认存放位置,但是在单个服务器上安装多个FastCFS实例时,必须为每个实例指定不同的位置。 FastCFS有以下几个配置文件: * server.conf - 服务器全局参数配置 * cluster.conf - 集群参数配置 * servers.conf - 服务器组参数配置 * storage.conf - 存储参数配置 * client.conf - 客户端使用的配置文件,需引用cluster.conf ### 6.1 server.conf 配置 ### 6.2 cluster.conf 配置 ### 6.3 servers.conf 配置 ### 6.4 storage.conf 配置 ### 6.5 client.conf 配置 ## 运行 Coming soon. ## License FastCFS is Open Source software released under the GNU AFFERO General Public License V3 (AGPL v3).