环境: Cloudera Express 5.12.1 JDK 1.8.0_92 CentOS 7 步骤1:数据导入到Hbase中(非正题,跳过) hbase中表为allDoc,两个Family:fulltext,fileInfo fulltext中就一列:fulltext fileInfo中有如下 ...
分类:
其他好文 时间:
2018-05-10 14:22:31
阅读次数:
576
1. 启动hbase-indexer服务 参数说明 -z hbase-indexer要用到的zooKeeper的链接信息 /work/hbase-indexer.log 输出日志文件路径 2. 添加索引 参数说明 -indexer 动作命令 -n 要创建的索引名称参数,indexer_vip 索引名 ...
分类:
其他好文 时间:
2018-04-28 14:07:39
阅读次数:
186
xml: <?xml version='1.0' encoding='utf-8'?><!--this is a test about xml--><booklist type='scicence and enginerring'> <book category='math'> <title>lea ...
分类:
编程语言 时间:
2018-04-13 16:13:39
阅读次数:
242
#######################list 类 列表######################## li = [1, 2, 343, 'dfas', ['fsad', 'dfas'], True] # list 是一个集合 能放任何东西进去 # print(li[0:3]) # lis... ...
分类:
其他好文 时间:
2018-02-09 23:49:44
阅读次数:
323
一、异常处理 二、socket编程 1、网络基础 http://www.cnblogs.com/linhaifeng/articles/5937962.html ...
分类:
其他好文 时间:
2018-01-30 00:21:13
阅读次数:
182
最近在用python做数据挖掘,在聚类的时候遇到了一个非常恶心的问题。话不多说,直接上代码: 错误如下: 网上找了好久都没找到解决方法,明明之前成功过的。于是我查看了df23数据,发现它是这样的: 与之前成功的dataframe的唯一差别就是索引!!!重要的事情说三遍!!!索引!!!索引!!!于是乎 ...
分类:
其他好文 时间:
2018-01-14 16:47:10
阅读次数:
2176
pycharm中配置main参数 Run->Edit Configurations->Script Parames 把需要在xxx.py A B C 后面的参数输入到如下位置。 否则会报错:int(sys.argv[1]) IndexError: list index out of range 表示 ...
分类:
其他好文 时间:
2018-01-10 20:20:26
阅读次数:
1828
5错误 1有时Python解释器将返回一个IndentationError IndentationError当我们的代码中的缩进不一致时 2 TypeError类型出错 a+"42" 3ValueError类型出错 float("adada") 3 IndexError是我们尝试访问不在列表索引中的 ...
分类:
其他好文 时间:
2018-01-06 14:22:26
阅读次数:
128
Help on built-in module builtins: NAME builtins - Built-in functions, exceptions, and other objects. DESCRIPTION Noteworthy: None is the `nil' object; ...
分类:
编程语言 时间:
2017-12-30 22:41:15
阅读次数:
204
try: a except NameError: print('NameError') print(123) ...
分类:
编程语言 时间:
2017-11-21 19:51:50
阅读次数:
230