摘要: 1 public final class String 2 3 implements java.io.Serializable, Comparable<String>, CharSequence { 4 5 /** The value is used for character storage. * 阅读全文
posted @ 2019-12-20 10:40 decq! 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 除了由Vector定义的所有方法,自己也定义了一些方法: 序号方法描述 1 boolean empty() 测试堆栈是否为空。 2 Object peek( ) 查看堆栈顶部的对象,但不从堆栈中移除它。 3 Object pop( ) 移除堆栈顶部的对象,并作为此函数的值返回该对象。 4 Objec 阅读全文
posted @ 2019-12-20 10:37 decq! 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 查看集群信息:kubectl cluster-info 查看node: kubectl get node kubectl get deployment kubectl get pod 阅读全文
posted @ 2019-12-17 14:22 decq! 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 论文原文 https://www.jianshu.com/p/c7ae21809197 深入浅出理解版 https://my.oschina.net/u/150175/blog/2992187 腾讯开源实现 https://github.com/Tencent/phxpaxos/blob/maste 阅读全文
posted @ 2019-12-16 18:46 decq! 阅读(93) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/longl/p/9460810.html 阅读全文
posted @ 2019-12-11 21:18 decq! 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 博文: 全文搜索引擎 Elasticsearch 入门教程 阮一峰 http://www.ruanyifeng.com/blog/2017/08/elasticsearch.html 阅读全文
posted @ 2019-12-09 16:48 decq! 阅读(251) 评论(0) 推荐(0) 编辑
摘要: kafka是一个分布式的基于发布/订阅模式的消息队列(Message Queue),主要用于大数据实时处理领域。 消息队列两种模式:点对点模式,发布/订阅模式 Kafka是由follower到leader上拉取数据的方式进行同步的。 架构: 生产者、消费者、kafka集群 kafka-重点内容(数据 阅读全文
posted @ 2019-12-08 14:53 decq! 阅读(485) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sv2008337/article/details/81735810 https://www.cnblogs.com/xiaobaozi-95/p/9214307.html Logstash-运行错误解决 https://www.jianshu.com/p 阅读全文
posted @ 2019-12-07 21:52 decq! 阅读(187) 评论(0) 推荐(0) 编辑
摘要: zookeeper已经弄了好久,遇到的bug很多,一怒之下卸载重装了,为避免重走弯路,将环境搭建的过程记录下来: 1.下载 从国内的镜像源下载,速度快很多。 链接:https://www.apache.org/dyn/closer.cgi/zookeeper/ 这里下的是这个版本,稳定版apache 阅读全文
posted @ 2019-12-07 15:50 decq! 阅读(474) 评论(0) 推荐(0) 编辑
摘要: zoo.cfg各个属性的配置说明: https://blog.csdn.net/asty9000/article/details/80216691 阅读全文
posted @ 2019-12-07 14:34 decq! 阅读(423) 评论(0) 推荐(0) 编辑