基本信息
源码名称:FastCFS分布式文件系统
源码大小:0.59M
文件格式:.zip
开发语言:C/C++
更新时间:2022-04-06
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
.
├── FastCFS-V3.2.0
│ ├── FastCFS-auth.spec.in
│ ├── FastCFS.spec.in
│ ├── LICENSE
│ ├── README-zh_CN.md
│ ├── README.md
│ ├── conf
│ │ ├── full
│ │ │ └── fuse.conf
│ │ └── fuse.conf
│ ├── debian
│ │ ├── changelog
│ │ ├── compat
│ │ ├── control
│ │ ├── copyright
│ │ ├── fastcfs-api-libs-dev.install
│ │ ├── fastcfs-api-libs.install
│ │ ├── fastcfs-auth-client.install
│ │ ├── fastcfs-auth-config.install
│ │ ├── fastcfs-auth-dev.install
│ │ ├── fastcfs-auth-server-config.install
│ │ ├── fastcfs-auth-server.dirs
│ │ ├── fastcfs-auth-server.install
│ │ ├── fastcfs-fuse-config.install
│ │ ├── fastcfs-fused.dirs
│ │ ├── fastcfs-fused.install
│ │ ├── fastcfs-utils.install
│ │ ├── rules
│ │ ├── source
│ │ │ └── format
│ │ └── watch
│ ├── docs
│ │ ├── APT-INSTALL-zh_CN.md
│ │ ├── AUTH-zh_CN.md
│ │ ├── CONFIGURE-zh_CN.md
│ │ ├── Easy-install-detail-zh_CN.md
│ │ ├── FAQ-zh_CN.md
│ │ ├── INSTALL-zh_CN.md
│ │ ├── INSTALL.md
│ │ ├── YUMINSTALL-Diy-5nodes-zh_CN.md
│ │ ├── YUMINSTALL-zh_CN.md
│ │ ├── benchmark-20210514.pdf
│ │ ├── benchmark-20210621.pdf
│ │ ├── benchmark.md
│ │ ├── cluster-expansion-zh_CN.md
│ │ ├── fcfs-ops-tool-zh_CN.md
│ │ └── fcfs-ops-tool.md
│ ├── fastcfs.sh
│ ├── helloWorld.sh
│ ├── images
│ │ ├── demo-5-nodes-deploy.jpg
│ │ ├── wechat_group.jpg
│ │ └── wechat_subscribe.jpg
│ ├── libfuse_setup.sh
│ ├── make.sh
│ ├── shell
│ │ ├── Dockerfile
│ │ ├── conf_tpl_tar.sh
│ │ ├── fcfs.settings
│ │ ├── fcfs.sh
│ │ ├── fcfs_conf.settings
│ │ ├── fcfs_conf.sh
│ │ └── template
│ │ └── dependency.2.0.1.settings
│ ├── src
│ │ ├── api
│ │ │ ├── Makefile.in
│ │ │ ├── async_reporter.c
│ │ │ ├── async_reporter.h
│ │ │ ├── fcfs_api.c
│ │ │ ├── fcfs_api.h
│ │ │ ├── fcfs_api_allocator.c
│ │ │ ├── fcfs_api_allocator.h
│ │ │ ├── fcfs_api_file.c
│ │ │ ├── fcfs_api_file.h
│ │ │ ├── fcfs_api_types.h
│ │ │ ├── fcfs_api_util.c
│ │ │ ├── fcfs_api_util.h
│ │ │ ├── inode_htable.c
│ │ │ ├── inode_htable.h
│ │ │ ├── std
│ │ │ │ ├── api_types.h
│ │ │ │ ├── capi.c
│ │ │ │ ├── capi.h
│ │ │ │ ├── fd_manager.c
│ │ │ │ ├── fd_manager.h
│ │ │ │ ├── papi.c
│ │ │ │ ├── papi.h
│ │ │ │ ├── posix_api.c
│ │ │ │ └── posix_api.h
│ │ │ └── tests
│ │ │ ├── Makefile.in
│ │ │ ├── test_file_copy.c
│ │ │ ├── test_file_op.c
│ │ │ ├── test_papi_copy.c
│ │ │ └── test_read_ahead.c
│ │ ├── auth
│ │ │ ├── client
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── client_func.c
│ │ │ │ ├── client_func.h
│ │ │ │ ├── client_global.c
│ │ │ │ ├── client_global.h
│ │ │ │ ├── client_proto.c
│ │ │ │ ├── client_proto.h
│ │ │ │ ├── client_types.h
│ │ │ │ ├── fcfs_auth_client.c
│ │ │ │ ├── fcfs_auth_client.h
│ │ │ │ ├── fcfs_auth_for_server.c
│ │ │ │ ├── fcfs_auth_for_server.h
│ │ │ │ ├── session_regenerate.c
│ │ │ │ ├── session_regenerate.h
│ │ │ │ ├── session_sync.c
│ │ │ │ ├── session_sync.h
│ │ │ │ ├── simple_connection_manager.c
│ │ │ │ ├── simple_connection_manager.h
│ │ │ │ └── tools
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── fauth_cluster_stat.c
│ │ │ │ ├── fauth_list_servers.c
│ │ │ │ ├── fcfs_pool.c
│ │ │ │ ├── fcfs_user.c
│ │ │ │ ├── tool_func.c
│ │ │ │ └── tool_func.h
│ │ │ ├── common
│ │ │ │ ├── auth_func.c
│ │ │ │ ├── auth_func.h
│ │ │ │ ├── auth_global.c
│ │ │ │ ├── auth_global.h
│ │ │ │ ├── auth_proto.c
│ │ │ │ ├── auth_proto.h
│ │ │ │ ├── auth_types.h
│ │ │ │ ├── server_session.c
│ │ │ │ └── server_session.h
│ │ │ ├── conf
│ │ │ │ ├── auth.conf
│ │ │ │ ├── client.conf
│ │ │ │ ├── cluster.conf
│ │ │ │ ├── full
│ │ │ │ │ ├── auth.conf
│ │ │ │ │ ├── client.conf
│ │ │ │ │ ├── cluster.conf
│ │ │ │ │ ├── server.conf
│ │ │ │ │ └── session.conf
│ │ │ │ ├── keys
│ │ │ │ │ └── session_validate.key
│ │ │ │ ├── server.conf
│ │ │ │ └── session.conf
│ │ │ └── server
│ │ │ ├── Makefile.in
│ │ │ ├── cluster_handler.c
│ │ │ ├── cluster_handler.h
│ │ │ ├── cluster_info.c
│ │ │ ├── cluster_info.h
│ │ │ ├── cluster_relationship.c
│ │ │ ├── cluster_relationship.h
│ │ │ ├── common_handler.c
│ │ │ ├── common_handler.h
│ │ │ ├── db
│ │ │ │ ├── auth_db.c
│ │ │ │ ├── auth_db.h
│ │ │ │ ├── dao
│ │ │ │ │ ├── dao.c
│ │ │ │ │ ├── dao.h
│ │ │ │ │ ├── func.c
│ │ │ │ │ ├── func.h
│ │ │ │ │ ├── granted_pool.c
│ │ │ │ │ ├── granted_pool.h
│ │ │ │ │ ├── storage_pool.c
│ │ │ │ │ ├── storage_pool.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── user.c
│ │ │ │ │ └── user.h
│ │ │ │ ├── pool_usage_updater.c
│ │ │ │ └── pool_usage_updater.h
│ │ │ ├── fcfs_authd.c
│ │ │ ├── server_func.c
│ │ │ ├── server_func.h
│ │ │ ├── server_global.c
│ │ │ ├── server_global.h
│ │ │ ├── server_types.h
│ │ │ ├── service_handler.c
│ │ │ ├── service_handler.h
│ │ │ ├── session_subscribe.c
│ │ │ └── session_subscribe.h
│ │ ├── common
│ │ │ ├── fcfs_global.c
│ │ │ └── fcfs_global.h
│ │ ├── fuse
│ │ │ ├── Makefile.in
│ │ │ ├── fcfs_fused.c
│ │ │ ├── fuse_wrapper.c
│ │ │ ├── fuse_wrapper.h
│ │ │ ├── global.c
│ │ │ └── global.h
│ │ ├── include
│ │ │ └── fastcfs
│ │ │ └── api
│ │ ├── preload
│ │ │ ├── Makefile.in
│ │ │ ├── api.c
│ │ │ ├── api.h
│ │ │ ├── global.c
│ │ │ ├── global.h
│ │ │ └── types.h
│ │ └── tools
│ │ ├── Makefile.in
│ │ └── fcfs_active_test.c
│ └── systemd
│ ├── fastauth.service
│ └── fastcfs.service
└── 说明.htm
30 directories, 182 files
FastCFS分布式文件系统
FastCFS分布式文件系统是一个基于块存储的高性能通用分布式文件系统,FastCFS可以作为数据库(MySQL、PostgresSQL、Oracle等)以及k8s和虚拟机(KVM等)的后端存储。FastCFS分布式文件系统是一个可以跑数据库的高性能分布式文件系统。
.
├── FastCFS-V3.2.0
│ ├── FastCFS-auth.spec.in
│ ├── FastCFS.spec.in
│ ├── LICENSE
│ ├── README-zh_CN.md
│ ├── README.md
│ ├── conf
│ │ ├── full
│ │ │ └── fuse.conf
│ │ └── fuse.conf
│ ├── debian
│ │ ├── changelog
│ │ ├── compat
│ │ ├── control
│ │ ├── copyright
│ │ ├── fastcfs-api-libs-dev.install
│ │ ├── fastcfs-api-libs.install
│ │ ├── fastcfs-auth-client.install
│ │ ├── fastcfs-auth-config.install
│ │ ├── fastcfs-auth-dev.install
│ │ ├── fastcfs-auth-server-config.install
│ │ ├── fastcfs-auth-server.dirs
│ │ ├── fastcfs-auth-server.install
│ │ ├── fastcfs-fuse-config.install
│ │ ├── fastcfs-fused.dirs
│ │ ├── fastcfs-fused.install
│ │ ├── fastcfs-utils.install
│ │ ├── rules
│ │ ├── source
│ │ │ └── format
│ │ └── watch
│ ├── docs
│ │ ├── APT-INSTALL-zh_CN.md
│ │ ├── AUTH-zh_CN.md
│ │ ├── CONFIGURE-zh_CN.md
│ │ ├── Easy-install-detail-zh_CN.md
│ │ ├── FAQ-zh_CN.md
│ │ ├── INSTALL-zh_CN.md
│ │ ├── INSTALL.md
│ │ ├── YUMINSTALL-Diy-5nodes-zh_CN.md
│ │ ├── YUMINSTALL-zh_CN.md
│ │ ├── benchmark-20210514.pdf
│ │ ├── benchmark-20210621.pdf
│ │ ├── benchmark.md
│ │ ├── cluster-expansion-zh_CN.md
│ │ ├── fcfs-ops-tool-zh_CN.md
│ │ └── fcfs-ops-tool.md
│ ├── fastcfs.sh
│ ├── helloWorld.sh
│ ├── images
│ │ ├── demo-5-nodes-deploy.jpg
│ │ ├── wechat_group.jpg
│ │ └── wechat_subscribe.jpg
│ ├── libfuse_setup.sh
│ ├── make.sh
│ ├── shell
│ │ ├── Dockerfile
│ │ ├── conf_tpl_tar.sh
│ │ ├── fcfs.settings
│ │ ├── fcfs.sh
│ │ ├── fcfs_conf.settings
│ │ ├── fcfs_conf.sh
│ │ └── template
│ │ └── dependency.2.0.1.settings
│ ├── src
│ │ ├── api
│ │ │ ├── Makefile.in
│ │ │ ├── async_reporter.c
│ │ │ ├── async_reporter.h
│ │ │ ├── fcfs_api.c
│ │ │ ├── fcfs_api.h
│ │ │ ├── fcfs_api_allocator.c
│ │ │ ├── fcfs_api_allocator.h
│ │ │ ├── fcfs_api_file.c
│ │ │ ├── fcfs_api_file.h
│ │ │ ├── fcfs_api_types.h
│ │ │ ├── fcfs_api_util.c
│ │ │ ├── fcfs_api_util.h
│ │ │ ├── inode_htable.c
│ │ │ ├── inode_htable.h
│ │ │ ├── std
│ │ │ │ ├── api_types.h
│ │ │ │ ├── capi.c
│ │ │ │ ├── capi.h
│ │ │ │ ├── fd_manager.c
│ │ │ │ ├── fd_manager.h
│ │ │ │ ├── papi.c
│ │ │ │ ├── papi.h
│ │ │ │ ├── posix_api.c
│ │ │ │ └── posix_api.h
│ │ │ └── tests
│ │ │ ├── Makefile.in
│ │ │ ├── test_file_copy.c
│ │ │ ├── test_file_op.c
│ │ │ ├── test_papi_copy.c
│ │ │ └── test_read_ahead.c
│ │ ├── auth
│ │ │ ├── client
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── client_func.c
│ │ │ │ ├── client_func.h
│ │ │ │ ├── client_global.c
│ │ │ │ ├── client_global.h
│ │ │ │ ├── client_proto.c
│ │ │ │ ├── client_proto.h
│ │ │ │ ├── client_types.h
│ │ │ │ ├── fcfs_auth_client.c
│ │ │ │ ├── fcfs_auth_client.h
│ │ │ │ ├── fcfs_auth_for_server.c
│ │ │ │ ├── fcfs_auth_for_server.h
│ │ │ │ ├── session_regenerate.c
│ │ │ │ ├── session_regenerate.h
│ │ │ │ ├── session_sync.c
│ │ │ │ ├── session_sync.h
│ │ │ │ ├── simple_connection_manager.c
│ │ │ │ ├── simple_connection_manager.h
│ │ │ │ └── tools
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── fauth_cluster_stat.c
│ │ │ │ ├── fauth_list_servers.c
│ │ │ │ ├── fcfs_pool.c
│ │ │ │ ├── fcfs_user.c
│ │ │ │ ├── tool_func.c
│ │ │ │ └── tool_func.h
│ │ │ ├── common
│ │ │ │ ├── auth_func.c
│ │ │ │ ├── auth_func.h
│ │ │ │ ├── auth_global.c
│ │ │ │ ├── auth_global.h
│ │ │ │ ├── auth_proto.c
│ │ │ │ ├── auth_proto.h
│ │ │ │ ├── auth_types.h
│ │ │ │ ├── server_session.c
│ │ │ │ └── server_session.h
│ │ │ ├── conf
│ │ │ │ ├── auth.conf
│ │ │ │ ├── client.conf
│ │ │ │ ├── cluster.conf
│ │ │ │ ├── full
│ │ │ │ │ ├── auth.conf
│ │ │ │ │ ├── client.conf
│ │ │ │ │ ├── cluster.conf
│ │ │ │ │ ├── server.conf
│ │ │ │ │ └── session.conf
│ │ │ │ ├── keys
│ │ │ │ │ └── session_validate.key
│ │ │ │ ├── server.conf
│ │ │ │ └── session.conf
│ │ │ └── server
│ │ │ ├── Makefile.in
│ │ │ ├── cluster_handler.c
│ │ │ ├── cluster_handler.h
│ │ │ ├── cluster_info.c
│ │ │ ├── cluster_info.h
│ │ │ ├── cluster_relationship.c
│ │ │ ├── cluster_relationship.h
│ │ │ ├── common_handler.c
│ │ │ ├── common_handler.h
│ │ │ ├── db
│ │ │ │ ├── auth_db.c
│ │ │ │ ├── auth_db.h
│ │ │ │ ├── dao
│ │ │ │ │ ├── dao.c
│ │ │ │ │ ├── dao.h
│ │ │ │ │ ├── func.c
│ │ │ │ │ ├── func.h
│ │ │ │ │ ├── granted_pool.c
│ │ │ │ │ ├── granted_pool.h
│ │ │ │ │ ├── storage_pool.c
│ │ │ │ │ ├── storage_pool.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── user.c
│ │ │ │ │ └── user.h
│ │ │ │ ├── pool_usage_updater.c
│ │ │ │ └── pool_usage_updater.h
│ │ │ ├── fcfs_authd.c
│ │ │ ├── server_func.c
│ │ │ ├── server_func.h
│ │ │ ├── server_global.c
│ │ │ ├── server_global.h
│ │ │ ├── server_types.h
│ │ │ ├── service_handler.c
│ │ │ ├── service_handler.h
│ │ │ ├── session_subscribe.c
│ │ │ └── session_subscribe.h
│ │ ├── common
│ │ │ ├── fcfs_global.c
│ │ │ └── fcfs_global.h
│ │ ├── fuse
│ │ │ ├── Makefile.in
│ │ │ ├── fcfs_fused.c
│ │ │ ├── fuse_wrapper.c
│ │ │ ├── fuse_wrapper.h
│ │ │ ├── global.c
│ │ │ └── global.h
│ │ ├── include
│ │ │ └── fastcfs
│ │ │ └── api
│ │ ├── preload
│ │ │ ├── Makefile.in
│ │ │ ├── api.c
│ │ │ ├── api.h
│ │ │ ├── global.c
│ │ │ ├── global.h
│ │ │ └── types.h
│ │ └── tools
│ │ ├── Makefile.in
│ │ └── fcfs_active_test.c
│ └── systemd
│ ├── fastauth.service
│ └── fastcfs.service
└── 说明.htm
30 directories, 182 files