上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: 参考文章:http://tech.meituan.com/kafka-fs-design-theory.html Kafka是什么 Kafka是最初由Linkedin公司开发,是一个分布式、分区的、多副本的、多订阅者,基于zookeeper协调的分布式日志系统(也可以当做MQ系统),常见可以用于we 阅读全文
posted @ 2017-05-06 16:59 静若清池 阅读(226) 评论(0) 推荐(0) 编辑
摘要: Apache Kafka is publish-subscribe messaging rethought as a distributed, partitioned, replicated commit log service. Here we explain how to configure S 阅读全文
posted @ 2017-05-05 07:12 静若清池 阅读(720) 评论(0) 推荐(0) 编辑
摘要: Output OperationMeaning print() Prints the first ten elements of every batch of data in a DStream on the driver node running the streaming application 阅读全文
posted @ 2017-05-04 23:04 静若清池 阅读(113) 评论(0) 推荐(0) 编辑
摘要: A more efficient version of the above reduceByKeyAndWindow() where the reduce value of each window is calculated incrementally using the reduce values 阅读全文
posted @ 2017-05-04 23:01 静若清池 阅读(91) 评论(0) 推荐(0) 编辑
摘要: TransformationMeaning map(func) Return a new DStream by passing each element of the source DStream through a function func. flatMap(func) Similar to m 阅读全文
posted @ 2017-05-04 22:42 静若清池 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1. 安装 [root@master ~]# yum list |grep telnet telnet-server.x86_64 1:0.17-59.el7 @base telnet.x86_64 1:0.17-59.el7 base [root@master ~]# yum install te 阅读全文
posted @ 2017-05-04 09:55 静若清池 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 根据.proto文件生成对应的Java类: 注:protoc下载: http://repo1.maven.org/maven2/com/google/protobuf/protoc/ 阅读全文
posted @ 2017-05-03 23:39 静若清池 阅读(12366) 评论(0) 推荐(0) 编辑
摘要: 参考文章:https://worktile.com/tech/share/prototol-buffers 是Google开发一种数据描述语言,能够将结构化数据序列化,可用于数据存储、通信协议等方面。据Google官方文档介绍,现在Google内部已经有48,162个消息类型定义在12,183个pr 阅读全文
posted @ 2017-05-03 22:34 静若清池 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 参考文章:http://www.cnblogs.com/gjhjoy/p/3551549.html 一、根据Process类方法进行计算 CPU使用比例 = 在间隔时间内进程的CPU使用时间 除以 计算机逻辑CPU数量。 使用Process类的UserProcessorTime和Privileged 阅读全文
posted @ 2017-04-30 23:24 静若清池 阅读(7285) 评论(1) 推荐(1) 编辑
摘要: static void Main(string[] args) { foreach (Process p in Process.GetProcesses()) { Console.Write(p.ProcessName); Console.Write("----"); ... 阅读全文
posted @ 2017-04-30 22:52 静若清池 阅读(2026) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页