在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例常规C/C++编程 → FastCFS分布式文件系统V3.6.3

FastCFS分布式文件系统V3.6.3

常规C/C++编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:0.68M
  • 下载次数:7
  • 浏览次数:39
  • 发布时间:2022-12-17
  • 实例类别:常规C/C++编程
  • 发 布 人:professorlearn
  • 文件格式:.zip
  • 所需积分:5
 相关标签: Fast stc CF fs ST

实例介绍

【实例简介】FastCFS分布式文件系统V3.6.3

FastCFS分布式文件系统是一个基于块存储的高性能通用分布式文件系统,FastCFS可以作为数据库(MySQL、PostgresSQL、Oracle等)以及k8s和虚拟机(KVM等)的后端存储。FastCFS分布式文件系统是一个可以跑数据库的高性能分布式文件系统。支持的操作系统:Linux: Kernel version >= 3.10 (完全支持)MacOS or FreeBSD (仅支持服务端,不支持FUSE)

【实例截图】

from clipboard
【核心代码】
.
├── FastCFS-V3.6.3
│   ├── FastCFS-auth.spec.in
│   ├── FastCFS-vote.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-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
│   │   ├── fastcfs-vote-client.install
│   │   ├── fastcfs-vote-config.install
│   │   ├── fastcfs-vote-dev.install
│   │   ├── fastcfs-vote-server.dirs
│   │   ├── fastcfs-vote-server.install
│   │   ├── rules
│   │   ├── source
│   │   │   └── format
│   │   ├── substvars
│   │   └── 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
│   │   ├── ReleaseNotes.md
│   │   ├── TODO-zh_CN.md
│   │   ├── VoteNode-zh_CN.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
│   │   ├── img
│   │   │   └── logo.png
│   │   ├── index.md
│   │   ├── shared-storage-guide-zh_CN.md
│   │   └── versions.json
│   ├── fastcfs.sh
│   ├── helloWorld.sh
│   ├── images
│   │   ├── demo-5-nodes-deploy.jpg
│   │   ├── wechat_group.jpg
│   │   └── wechat_subscribe.jpg
│   ├── libfuse_setup.sh
│   ├── make.sh
│   ├── mkdocs.yml
│   ├── 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
│   │   │       └── vote
│   │   ├── preload
│   │   │   ├── Makefile.in
│   │   │   ├── api.c
│   │   │   ├── api.h
│   │   │   ├── global.c
│   │   │   ├── global.h
│   │   │   └── types.h
│   │   ├── tools
│   │   │   ├── Makefile.in
│   │   │   └── fcfs_active_test.c
│   │   └── vote
│   │       ├── 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_vote_client.h
│   │       │   └── tools
│   │       │       ├── Makefile.in
│   │       │       └── fvote_cluster_stat.c
│   │       ├── common
│   │       │   ├── vote_global.c
│   │       │   ├── vote_global.h
│   │       │   ├── vote_proto.c
│   │       │   ├── vote_proto.h
│   │       │   └── vote_types.h
│   │       ├── conf
│   │       │   ├── client.conf
│   │       │   ├── cluster.conf
│   │       │   ├── full
│   │       │   │   ├── client.conf
│   │       │   │   ├── cluster.conf
│   │       │   │   └── server.conf
│   │       │   └── server.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
│   │           ├── fcfs_voted.c
│   │           ├── server_func.c
│   │           ├── server_func.h
│   │           ├── server_global.c
│   │           ├── server_global.h
│   │           ├── server_types.h
│   │           ├── service_group_htable.c
│   │           ├── service_group_htable.h
│   │           ├── service_handler.c
│   │           └── service_handler.h
│   └── systemd
│       ├── fastauth.service
│       ├── fastcfs.service
│       └── fastvote.service
├── FastCFS分布式文件系统_FastCFS-v3.6.3.zip
└── 说明.htm

38 directories, 241 files


标签: Fast stc CF fs ST

实例下载地址

FastCFS分布式文件系统V3.6.3

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警