学习了这么久hadoop,都没有搭过集群,是不合格的。这次搭建完,细扣具体的Job运行情况,日志信息,对Hadoop了解更深了。后面也要陆续搭建分布式flume,kafka,hbase,mysql来完成最终的离线批处理分析项目。 搭建步骤 1. 虚拟机环境准备(IP地址、主机名、新用户、防火墙、SS ...
分类:
其他好文 时间:
2020-04-04 15:00:32
阅读次数:
81
#include <stack>#include <string>using namespace std; int main(){ stack<string> ss; string s; while (cin >> s) { ss.push(s); } while (!ss.empty()) { c ...
分类:
编程语言 时间:
2020-04-03 22:10:47
阅读次数:
90
#include <iostream> #include <string> #include <sstream> using namespace std ; void i2s(int x, string &basic_string) { stringstream ss; ss << x; ss >> ...
分类:
其他好文 时间:
2020-04-03 19:51:14
阅读次数:
53
导出Excel 操作类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using NPOI.SS.UserMode ...
分类:
其他好文 时间:
2020-04-03 16:27:50
阅读次数:
58
一,ss所属的包: [root@blog ~]# whereis ss ss: /usr/sbin/ss /usr/share/man/man8/ss.8.gz [root@blog ~]# rpm -qf /usr/sbin/ss iproute-4.18.0-15.el8.x86_64 通常默认 ...
分类:
其他好文 时间:
2020-04-03 12:00:36
阅读次数:
346
Perket 是一种流行的美食。为了做好 Perket,厨师们必须小心选择配料,以便达到更好的口感。你有N种可支配的配料。对于每一种配料,我们知道它们各自的酸度 SS 和甜度 BB。当我们添加配料时,总的酸度为每一种配料的酸度总乘积;总的甜度为每一种配料的甜度的总和。 众所周知,美食应该口感适中;所 ...
分类:
其他好文 时间:
2020-04-03 09:11:49
阅读次数:
193
原文:JS中date日期初始化的5种方法 创建一个日期对象: 代码如下: var objDate=new Date([arguments list]); 参数形式有以下5种: 1)new Date("month dd,yyyy hh:mm:ss"); 2)new Date("month dd,yyy... ...
分类:
Web程序 时间:
2020-03-31 14:50:44
阅读次数:
161
public static <T> T map2Object(Map<String, Object> map, Class<T> clazz) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); if (map ...
分类:
其他好文 时间:
2020-03-29 21:23:57
阅读次数:
345
网络管理 网络状况查看工具 1.net tools ifconfig route netstat 2.iproute2 ip ss \ ifconfig 显示的网卡信息 eth0 第一块网卡(网络接口) 第一个网络接口也能叫做下面名字 eno1 板载网卡 ens33 PCI E网卡 enp0s3 无 ...
分类:
系统相关 时间:
2020-03-29 01:00:00
阅读次数:
111
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Calendar c = Calendar.getInstance();1.过去七天 c.setTime(new Date()); c.add(Calenda ...
分类:
编程语言 时间:
2020-03-26 01:01:59
阅读次数:
78