设计 任务书 文档 开题 答辩 说明书 格式 模板 外文 翻译 范文 资料 作品 文献 课程 实习 指导 调研 下载 网络教育 计算机 网站 网页 小程序 商城 购物 订餐 电影 安卓 Android Html Html5 SSM SSH Python 爬虫 大数据 管理系统 图书 校园网 考试 选题 网络安全 推荐系统 机械 模具 夹具 自动化 数控 车床 汽车 故障 诊断 电机 建模 机械手 去壳机 千斤顶 变速器 减速器 图纸 电气 变电站 电子 Stm32 单片机 物联网 监控 密码锁 Plc 组态 控制 智能 Matlab 土木 建筑 结构 框架 教学楼 住宅楼 造价 施工 办公楼 给水 排水 桥梁 刚构桥 水利 重力坝 水库 采矿 环境 化工 固废 工厂 视觉传达 室内设计 产品设计 电子商务 物流 盈利 案例 分析 评估 报告 营销 报销 会计
 首 页 机械毕业设计 电子电气毕业设计 计算机毕业设计 土木工程毕业设计 视觉传达毕业设计 理工论文 文科论文 毕设资料 帮助中心 设计流程 
垫片
您现在所在的位置:首页 >>计算机毕业设计 >> 文章内容
                 
垫片
   我们提供全套毕业设计和毕业论文服务,联系微信号:biyezuopin QQ:2922748026   
分布式键值存储系统的研究和实现 毕业论文+服务端客户端源码
文章来源:www.biyezuopin.vip   发布者:毕业作品网站  

目录

摘要

ABSTRACT

第一章 引言

1.1 研究背景

1.2 国内外研究现状和发展趋势

1.3 本文的工作和创新

1.4 本文的内容和组织

第二章 相关技术和系统

2.1 键值存储系统的特点

2.2 主流NoSQL存储系统及其优劣

2.2.1 HBase

2.2.2 Redis

2.2.3 MongoDB

2.2.4 LevelDB

2.3 Mondis相对于其的优势

第三章 系统设计

3.1 Mondis系统简介

3.2 数据结构嵌套

3.3 事务机制的实现

3.4 json支持

3.5 连接管理,线程模型,io模型

3.6 raft算法支持的主从复制

3.7 命令解释器,locate命令

3.8 zset实现

3.9 AVL树优化的HashMap

第四章 Mondis测试与分析

4.1 测试环境的搭建

4.2 Mondis的读写测试

4.3 测试动态添加删除Mondis节点

4.4 Raft一致性协议的改进测试

4.5 本章小结

第五章 总结与展望

5.1 工作总结

5.2 工作展望

致谢

参考文献


摘要

在21世纪初,互联网进入了一个新的发展高峰,数据量呈指数增长,对海量数据的管理、访问的需求变得越来越迫切。随着云计算和大数据技术的兴起,各种大规模数据级应用程序不断涌现,这些新应用程序对数据存储的需求日益增加。但是,传统的关系数据库(如Oracle和MySQL)越来越难以满足云计算环境的数据存储需求。分布式非关系数据库充分结合分布式系统抗单点故障能力和天然横向扩展性的特点,可以应对海量数据存储的挑战。 NoSql类型数据库近年来一直蓬勃发展。常见的nosql产品有键值类型,文档类型,列存储类型,图形存储类型,xml数据库等。但是,最流行和最广泛使用的nosql类型是键值类型。 Redis是键值类型的代表。在使用Redis的过程中,我深深感受到了Redis的不便,因此我实现了一个高性能的分布式键值存储系统Mondis。 Mondis具有以下基本功能或创新点:

(1)以现有的分布式理论为基础,研究了分布式存储的相关技术,介绍了分布式 NoSQL 数据库的概念、特点以及相关基础理论,并分析了目前应用广泛的键值存储系 统的架构与优缺点。在此基础之上,设计了一个高性能,高可用,分布式的键值存储系统Mondis。

(2)在使用Redis的过程中深感不便的情况下,研读了Redis的源代码实现,给键值存储添加了数据结构嵌套特性,使得Mondis可以保存任意结构化的数据,这是本文的主要创新点。

(3)研究基于 Raft 一致性协议解决主从复制过程中主节点宕机的问题,从而来保证可用性和数据的最终一致性。

(4)基于上述理论,实现了一个分布式键值存储引擎 Mondis,开发语言为 C++,在其中部署了改进的 Raft 一致性协议来实现强一致性的数据复制方式,从而 来保证可用性,并针对该系统做了 详细的测试,在此基础上提出了今后的改进计划。

本文所使用的的java客户端可通过此链接获得:

关键词 键值存储;分布式;高性能;嵌套;json

ABSTRACT

In the early 21st century, the Internet entered a new peak of development, the amount of data increased exponentially, and the management of massive data was increased. The demand for accessibility became more and more urgent. With the rise of cloud computing and big data technologies, a variety of massive data-scale applications are emerging, and these new applications are placing increasing demands on data storage. However, traditional relational databases, such as Oracle and MySQL, have become increasingly difficult to meet the data storage needs of cloud computing environments. The distributed non-relational database fully combines the characteristics of the distributed system against single point of failure and natural horizontal scalability, and can cope with the challenges of massive data storage. The NoSql type database has been booming in recent years. Common nosql products have key-value type, document type, column storage type, graph storage type, xml database and so on. But in nosql, the most popular and widely used key-value type is Redis. In the process of using Redis, I deeply felt the inconvenience of Redis, so I realized a high-performance, distributed key-value storage system, Mondis. Mondis has the following basic features or innovations:

(1) Based on the existing distributed theory, the related technologies of distributed storage are studied. The concept, characteristics and related basic theories of distributed NoSQL database are introduced. The architecture of the widely used key storage system is analyzed. With advantages and disadvantages. Based on this, a high-performance, high-availability, distributed key-value storage system, Mondis, was designed.

(2) In the case of deep inconvenience in the process of using Redis, the source code implementation of Redis was studied, and the data structure nesting feature was added to the key value storage, so that Mondis can save any structured data, which is the The main innovation point.

(3) Research on the Raft-consistent protocol to solve the problem of master node downtime in the master-slave replication process, so as to ensure the ultimate consistency of availability and data.

(4) Based on the above theory, a distributed key-value storage engine, Mondis, is developed. The development language is C++, and an improved Raft consistency protocol is deployed to implement a strong and consistent data replication method to ensure availability. The system has been thoroughly tested and based on this, a future improvement plan is proposed.

You can get java client of the article from the following link:

KeyWords key-value storage; distributed; high performance; nested; json















  全套毕业设计论文现成成品资料请咨询微信号:biyezuopin QQ:2922748026     返回首页 如转载请注明来源于www.biyezuopin.vip  

                 

打印本页 | 关闭窗口
本类最新文章
基于Spring Boot的心理 基于Spring Boot的助农 基于Spring Boot和Vu
基于Vue.js的超市商品管理导 基于Spring Boot的二手 基于Spring Boot的音乐
| 关于我们 | 友情链接 | 毕业设计招聘 |

Email:biyeshejiba@163.com 微信号:biyezuopin QQ:2922748026  
本站毕业设计毕业论文资料均属原创者所有,仅供学习交流之用,请勿转载并做其他非法用途.如有侵犯您的版权有损您的利益,请联系我们会立即改正或删除有关内容!