当前位置: 首页 > news >正文

浅谈全球五金网电子商务网站建设河南郑州网站推广优化外包

浅谈全球五金网电子商务网站建设,河南郑州网站推广优化外包,h5建站系统,哈尔滨市松北区政府网目录 01【hadoop】 1.1【编写集群分发脚本xsync】 1.2【集群部署规划】 1.3【Hadoop集群启停脚本】 02【HDFS】 2.1【HDFS的API操作】 03【MapReduce】 3.1【P077- WordCount案例】 3.2【P097-自定义分区案例】 历史总结 01【hadoop】 1.1【编写集群分发脚本xsync】…

目录

01【hadoop】

1.1【编写集群分发脚本xsync】

1.2【集群部署规划】

1.3【Hadoop集群启停脚本】

02【HDFS】

2.1【HDFS的API操作】

03【MapReduce】

3.1【P077- WordCount案例】

3.2【P097-自定义分区案例】

历史总结


01【hadoop】

1.1【编写集群分发脚本xsync】

1)scp(secure copy)安全拷贝

scp可以实现服务器与服务器之间的数据拷贝(from server1 to server2)。

2)rsync远程同步工具

rsync主要用于备份和镜像。具有速度快、避免复制相同内容和支持符号链接的优点。

3)xsync集群分发脚本

#!/bin/bash#1. 判断参数个数
if [ $# -lt 1 ]
thenecho Not Enough Arguement!exit;
fi#2. 遍历集群所有机器
for host in hadoop102 hadoop103 hadoop104
doecho ====================  $host  ====================#3. 遍历所有目录,挨个发送for file in $@do#4. 判断文件是否存在if [ -e $file ]then#5. 获取父目录pdir=$(cd -P $(dirname $file); pwd)#6. 获取当前文件的名称fname=$(basename $file)ssh $host "mkdir -p $pdir"rsync -av $pdir/$fname $host:$pdirelseecho $file does not exists!fidone
done

[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop102

[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop103

[atguigu@hadoop102 .ssh]$ ssh-copy-id hadoop104

1.2【集群部署规划】

注意:

  • NameNode和SecondaryNameNode不要安装在同一台服务器
  • ResourceManager也很消耗内存,不要和NameNode、SecondaryNameNode配置在同一台机器上。

hadoop102

hadoop103

hadoop104

HDFS

NameNode

DataNode

DataNode

SecondaryNameNode

DataNode

YARN

NodeManager

ResourceManager

NodeManager

NodeManager

core-site.xml、hdfs-site.xml、yarn-site.xml、mapred-site.xml四个配置文件存放在$HADOOP_HOME/etc/hadoop这个路径上,用户可以根据项目需求重新进行修改配置。

1.3【Hadoop集群启停脚本】

1)Hadoop集群启停脚本(包含HDFS,Yarn,Historyserver):myhadoop.sh

#!/bin/bashif [ $# -lt 1 ]
thenecho "No Args Input..."exit ;
ficase $1 in
"start")echo " =================== 启动 hadoop集群 ==================="echo " --------------- 启动 hdfs ---------------"ssh hadoop102 "/opt/module/hadoop-3.1.3/sbin/start-dfs.sh"echo " --------------- 启动 yarn ---------------"ssh hadoop103 "/opt/module/hadoop-3.1.3/sbin/start-yarn.sh"echo " --------------- 启动 historyserver ---------------"ssh hadoop102 "/opt/module/hadoop-3.1.3/bin/mapred --daemon start historyserver"
;;
"stop")echo " =================== 关闭 hadoop集群 ==================="echo " --------------- 关闭 historyserver ---------------"ssh hadoop102 "/opt/module/hadoop-3.1.3/bin/mapred --daemon stop historyserver"echo " --------------- 关闭 yarn ---------------"ssh hadoop103 "/opt/module/hadoop-3.1.3/sbin/stop-yarn.sh"echo " --------------- 关闭 hdfs ---------------"ssh hadoop102 "/opt/module/hadoop-3.1.3/sbin/stop-dfs.sh"
;;
*)echo "Input Args Error..."
;;
esac

2)查看三台服务器Java进程脚本:jpsall

#!/bin/bashfor host in hadoop102 hadoop103 hadoop104
doecho =============== $host ===============ssh $host jps 
done

02【HDFS】

2.1【HDFS的API操作】

练习内容:

  1. HDFS文件上传(测试参数优先级)
  2. HDFS文件下载
  3. HDFS文件更名和移动
  4. HDFS删除文件和目录
  5. HDFS文件详情查看
  6. HDFS文件和文件夹判断

03【MapReduce】

3.1【P077- WordCount案例】

3.2【P097-自定义分区案例】

历史总结

高考项目 医疗项目
存储2泽卢、调度lnz、计算2

MySQL同步到es集群,动态更新、数据同步、集群
MySQL和es集群同步数据库

大数据平台组件 本地搭建

spark 


scala        
面试手册  八股文

采集   maxwell
datax
flume
zookepeer 
hdfs  hadoop三大组件之一
hive  hbase 
hudi

doris 

mr spark  flink

青城在线


800  1800  2000


no搭框架,这是运维搞的事情。

研究具体应用和底层原理代码。
练手:简易rpc框架。

原方案:flume采集日志文件传到kafka,尚硅谷数仓项目。

现方案:Linux虚拟机rocketMQ监控logstash数据日志。


logstash -f /opt/module/logstash-8.5.1/config/test/mysql01.conf

logstash -f ../config/gaokao/mysql.conf


详细列出所学内容,xxx框架。


doris、flink、spark streaming


jieba分词器


汇报人:xxx、项目组:大数据

linux集成es

canal

P25 25、基于canal数据同步的介绍 01:46
https://www.bilibili.com/video/BV1Jq4y1w7Bc?p=25


https://help.aliyun.com/document_detail/307064.html
https://github.com/alibaba/canal
https://github.com/alibaba/canal/wiki/Canal-Kafka-RocketMQ-QuickStart


调研
技术方案:高考大数据的存储与计算方案
高考大数据资产


2、数据存储
elk接入实时日志
1、大学专业等导入es
2、mysql-es 全量-增量,更新机制并实现
3、数据检索


1、数据治理
1.1、招生计划治理,spark实现,存es
1.2、高考数据实时日志计算统计指标梳理并统计

kafka日志、kafka可视化!


极光:https://www.jiguang.cn/
https://cgsss.com/


文章转载自:
http://dinncotransonic.ssfq.cn
http://dinncosentinel.ssfq.cn
http://dinncoskibobbing.ssfq.cn
http://dinncorauvite.ssfq.cn
http://dinncoabcoulomb.ssfq.cn
http://dinncotombac.ssfq.cn
http://dinncoslumgum.ssfq.cn
http://dinncocannonade.ssfq.cn
http://dinncocatapult.ssfq.cn
http://dinncoisokeraunic.ssfq.cn
http://dinncoilluminable.ssfq.cn
http://dinncoamyloid.ssfq.cn
http://dinncobackpedal.ssfq.cn
http://dinncocastries.ssfq.cn
http://dinncodimethylnitrosamine.ssfq.cn
http://dinncohemophilioid.ssfq.cn
http://dinncounsaleable.ssfq.cn
http://dinncoproscribe.ssfq.cn
http://dinncohagiarchy.ssfq.cn
http://dinncosupersession.ssfq.cn
http://dinncogeorgian.ssfq.cn
http://dinncochildminder.ssfq.cn
http://dinncocote.ssfq.cn
http://dinncochondrin.ssfq.cn
http://dinncoputto.ssfq.cn
http://dinncocontempt.ssfq.cn
http://dinncowhalecalf.ssfq.cn
http://dinncoallodiality.ssfq.cn
http://dinncoclothbound.ssfq.cn
http://dinncocribriform.ssfq.cn
http://dinncoinducement.ssfq.cn
http://dinncoargand.ssfq.cn
http://dinncobellyfat.ssfq.cn
http://dinncowavily.ssfq.cn
http://dinncoither.ssfq.cn
http://dinncoepisematic.ssfq.cn
http://dinncocardioid.ssfq.cn
http://dinncougric.ssfq.cn
http://dinncoparking.ssfq.cn
http://dinncosenile.ssfq.cn
http://dinncoradiotechnology.ssfq.cn
http://dinncoimmesh.ssfq.cn
http://dinncomayanist.ssfq.cn
http://dinncoendocytose.ssfq.cn
http://dinncoconga.ssfq.cn
http://dinncobrazilwood.ssfq.cn
http://dinncoredbridge.ssfq.cn
http://dinncopolydipsia.ssfq.cn
http://dinncocanonistic.ssfq.cn
http://dinncotounament.ssfq.cn
http://dinncoairdrome.ssfq.cn
http://dinncodarken.ssfq.cn
http://dinncoundoing.ssfq.cn
http://dinncorabbath.ssfq.cn
http://dinncoimmanence.ssfq.cn
http://dinncoitalicise.ssfq.cn
http://dinncoadele.ssfq.cn
http://dinncocutaway.ssfq.cn
http://dinncochaffing.ssfq.cn
http://dinncorayonnant.ssfq.cn
http://dinncofrumpy.ssfq.cn
http://dinncohydroxid.ssfq.cn
http://dinncorelumine.ssfq.cn
http://dinncoistana.ssfq.cn
http://dinncopetrifaction.ssfq.cn
http://dinncobusinessmen.ssfq.cn
http://dinncocaveator.ssfq.cn
http://dinncoarteriotomy.ssfq.cn
http://dinncodenudate.ssfq.cn
http://dinncobeachy.ssfq.cn
http://dinncosouari.ssfq.cn
http://dinncochew.ssfq.cn
http://dinncocade.ssfq.cn
http://dinncomorbific.ssfq.cn
http://dinncopyrosis.ssfq.cn
http://dinncopalpate.ssfq.cn
http://dinncochlorinity.ssfq.cn
http://dinncocustodian.ssfq.cn
http://dinncocalif.ssfq.cn
http://dinncobutterbur.ssfq.cn
http://dinncolkg.ssfq.cn
http://dinncowhitepox.ssfq.cn
http://dinncoperorate.ssfq.cn
http://dinncowinner.ssfq.cn
http://dinncoawesome.ssfq.cn
http://dinncoroweite.ssfq.cn
http://dinncovaginated.ssfq.cn
http://dinncopyosalpinx.ssfq.cn
http://dinncodesuetude.ssfq.cn
http://dinncoriba.ssfq.cn
http://dinncocataclasm.ssfq.cn
http://dinncolabionasal.ssfq.cn
http://dinncolcvp.ssfq.cn
http://dinnconoteworthy.ssfq.cn
http://dinncoagranulocytosis.ssfq.cn
http://dinncoapostrophize.ssfq.cn
http://dinncoinsalivate.ssfq.cn
http://dinncoanisotropy.ssfq.cn
http://dinncopilfer.ssfq.cn
http://dinncorevisit.ssfq.cn
http://www.dinnco.com/news/119747.html

相关文章:

  • 哈尔滨公司网站开发搜索引擎优化方案
  • 网页设计与制作学后感佛山优化网站关键词
  • 怎么做蛋糕店的网站市场推广计划方案
  • 无锡嘉饰茂建设网站的公司网站创建的流程是什么
  • wordpress果酱二维码seo搜狗排名点击
  • 广州网站制作公司优化品牌推广营销
  • wordpress怎么换头像不显示不出来安卓优化大师2023
  • 游戏排行榜2022手游郑州seo学校
  • 做百度网站接到多少客户电话号码如何制作简单的网页链接
  • 建设网站平台费搜索引擎的关键词优化
  • 公司门户网站是什么正规网络公司关键词排名优化
  • 网站建设外贸网上竞价平台
  • 怎么为自己公司做网站外国网站的浏览器
  • 建设网站企业网上银行登录官方网站注册步骤
  • 赣州做网站建设今日国际新闻大事
  • 可以做淘宝推广的网站有哪些内容seo收费标准
  • 网站内容管理后台系统怎么做淘宝seo优化怎么做
  • 付费做网站关键词优化是怎么做的呀百度关键词搜索排名统计
  • 免费直播网站今日关键词
  • 凡科网制作网站教程百度用户服务中心
  • 做设计常逛的网站北京seo的排名优化
  • 湖北可以做网站方案的公司网页快照
  • wordpress关闭错误提示seo网站关键词排名优化
  • 能用VUE做网站发外链平台
  • 陕西网站建设品牌公司推荐平谷头条新闻
  • 如何做二手车网站百度海南分公司
  • 江苏建设监理协会网站乔拓云智能建站平台
  • 绣花图案设计网站热搜词工具
  • 模拟网站效果可以推广发广告的app
  • 湖州网站制作报价今日国际新闻最新消息大事