上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页
摘要: 安装 Oracle SQL Developer Oracle客户端安装 https://oracle.github.io/odpi/doc/installation.html#linux 阅读全文
posted @ 2018-11-01 10:03 Go_Forward 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1.term结构化字段查询,匹配一个值,且输入的值不会被分词器分词。 比如查询条件是: 那么只有在字段中存储了“hello world”的数据才会被返回,如果在存储时,使用了分词,原有的文本“I say hello world”会被分词进行存储,不会存在“hello world”这整个词,那么不会返 阅读全文
posted @ 2018-10-30 08:38 Go_Forward 阅读(20280) 评论(0) 推荐(1) 编辑
摘要: pyspark读写elasticsearch依赖elasticsearch-hadoop包,需要首先在这里下载,版本号可以通过自行修改url解决。 更多代码见:https://github.com/buxizhizhoum/pyspark_tutorial/tree/master/spark_ela 阅读全文
posted @ 2018-10-16 09:41 Go_Forward 阅读(440) 评论(0) 推荐(0) 编辑
摘要: vpn failed to connect, becauser the vpn service failed to start, one possible reason is that the passwd is wrong... 阅读全文
posted @ 2018-09-07 17:39 Go_Forward 阅读(1) 评论(0) 推荐(0) 编辑
摘要: zookeeper配置 kafka配置 主要修改以下几项,log文件轮滚时间以及大小根据业务具体调优 阅读全文
posted @ 2018-09-06 17:18 Go_Forward 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 遇到一个问题,使用Python kafka客户端和kafka命令行都无法消费数据,但是在kafka命令行后面添加--partition 0后就可以消费数据。 原因在与offsets.topic.replication.factor的值在配置文件中大于了节点个数(两个节点,却将这个值设置为了3), 设 阅读全文
posted @ 2018-09-06 17:08 Go_Forward 阅读(2890) 评论(0) 推荐(0) 编辑
摘要: bash: export: “path” not a valid identifier 由于“=”两边留有空格所致 阅读全文
posted @ 2018-09-03 19:43 Go_Forward 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 在安装目录找到maintenancetool.sh运行之 ~/opt/foxitsoftware/foxitreader 阅读全文
posted @ 2018-08-23 09:50 Go_Forward 阅读(883) 评论(0) 推荐(1) 编辑
摘要: 在任何时刻,只有一个greenlet在运行,合理安排的串行。 http://www.cnblogs.com/xybaby/p/6337944.html 阅读全文
posted @ 2018-08-09 14:47 Go_Forward 阅读(91) 评论(0) 推荐(0) 编辑
摘要: queue.task_done()用在queue消费者中,在queue.get()调用之后调用queue.task_done()用于通知队列已经完成了工作,使queue.join()知道任务已经完成。当queue所有put()的任务都已经task_done()时,queue.join() 停止阻塞。 阅读全文
posted @ 2018-07-26 22:28 Go_Forward 阅读(326) 评论(0) 推荐(1) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 33 下一页