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

基于MapReduce的分布式计算系统
摘要
以 2003年,Google 发表的三篇论文为标志的大数据时代,至今已过去近二十年时间,MapReduce 那篇论文虽然只有理论,并为公开底层软件实现。但这么多年过去,Hadoop,Spark 等框架早已实现论文中所描述的功能,甚至还有所改进。
本文以 MapReduce 为基础,实现了一套基于浏览器实现的分布式系统。加之如今 Chrome 对各个平台近乎完美的兼容性,实现了一次编写,处处运行的目标。同时得力于个人移动设备的普及,手机,平板,甚至是家用游戏机,智能电视。如果急需性能,还可以通过朋友圈的方式,号召朋友们使用自己的设备,在后台开启几个标签的方式,成为计算节点,加快整体计算速度。
在 BMR 系统下,用户甚至不需要学习 C++,JAVA 等传统分布式计算用到的语言;只需要会简单的 JS,即可完成分布式计算任务的开发,开发成本极低。本文对 BMR系统的设计,以及实现时做的取舍做了详细说明,对分布式计算平台的研究具有一定的指导意义。
关键词:MapReduce、分布式计算、高性能
MapReduce-based Distributed Computing System
Abstract
Intelligent In 2003, Google published three papers as a sign of the era of big data, nearly two decades have passed, MapReduce that paper, although only the theory, and for the public underlying software implementation. However, after so many years, Hadoop, Spark and other frameworks have already achieved the functions described in the paper, and even improved them.
This paper implements a browser-based distributed system based on MapReduce. With the near-perfect compatibility of Chrome with all platforms today, the goal of writing once and running everywhere is achieved. And thanks to the popularity of personal mobile devices, phones, tablets, and even home consoles and smart TVs. If performance is desperately needed, it is also possible to call on friends to use their own devices by opening several tabs in the background to become computing nodes and speed up the overall computing speed.
With the BMR system, users do not even need to learn C++, JAVA, and other languages traditionally used in distributed computing; they only need to know simple JS to develop distributed computing tasks, and the development cost is extremely low. This paper provides a detailed description of the design of the BMR system and the trade-offs made in its implementation, which is a guideline for the study of distributed computing platforms.
Keywords: MapReduce, distributed computing, high performance
目 录
摘要 I
Abstract II
目 录 III
第一章 引言 1
1.1 研究背景 1
1.2 研究现状 1
1.3 论文目标及内容 2
第二章 MapRedues相关技术介绍 4
2.1 分布式系统 4
2.1.1 什么是分布式系统 4
2.1.2 并行于分布式计算 4
2.1.3 分布式系统的架构 5
2.1.4 分布式系统的历史 6
2.1.5 分布式系统的应用 6
2.1.6 分布式系统的特点 7
2.2 函数式编程语言 7
2.2.1 函数式编程 7
2.2.2 lambda演算 8
2.2.3 函数式编程的优缺点 9
2.3 MapReduce 编程模型 11
2.3.1 介绍 11
2.3.2 运行流程 12
2.3.3 数据流 13
2.3.4 MapReduce的优缺点 14
第三章 基于MapReduce的计算框架设计和技术分析 16
3.1 开发工具链 16
3.1.1 Visual Studio Code 16
3.1.2 NPM 16
3.1.3 Chrome 16
3.1.4 系统的技术栈 16
3.2 系统的技术栈 17
3.2.1 前端技术栈 18
3.2.2 后端技术栈 19
3.3 系统的总体设计 20
3.3.1 总体架构 20
3.3.2 服务端模块划分 21
3.3.3 客户端模块划分 24
3.3.4 服务端客户端通信接口 26
3.4 服务端详细设计 30
3.4.1 执行代码组建模块 30
3.4.2 标记模块 31
3.4.3 运行状态模块 34
3.4.4 检查点模块 35
3.4.5 检测模块 36
3.5 客户端详情 37
3.5.1 JSON美化组件 37
3.5.2 Worker 38
第四章 框架的使用说明 39
4.1 运行环境 39
4.1.1 服务端 39
4.1.2 客户端 40
4.2 源码结构 41
4.2.1 服务端 41
4.2.2 客户端 42
4.3 使用流程 43
第五章 结论 45
5.1 论文总结工作 45
5.2 未来展望 46
参考文献 47
致谢 49





















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

                 

打印本页 | 关闭窗口
本类最新文章
YOLOv3改进算法在道路裂缝检 带有随机场变量结构的热-结构耦合 安卓深度学习垃圾分类 毕业论文
大学生心理健康APP的设计与实现 基于Python的乡村振兴电商导 基于SpringBoot与微信小
| 关于我们 | 友情链接 | 毕业设计招聘 |

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