实例介绍
【实例简介】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
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论