摘要: 1. http://nodejs.org 下载安装包安装 2. node -v 正常返回版本号 3. 设置镜像 npm config set registry https://registry.npm.taobao.org 4. 安装 grunt : sudo npm install -g grun 阅读全文
posted @ 2020-07-01 00:31 Jenkin.K 阅读(122) 评论(0) 推荐(0) 编辑
摘要: http://c.biancheng.net/tensorflow/ 阅读全文
posted @ 2019-12-24 18:51 Jenkin.K 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/chengcheng1394/article/details/78820529 阅读全文
posted @ 2019-12-24 18:50 Jenkin.K 阅读(269) 评论(0) 推荐(0) 编辑
摘要: left join 是做左外关联,主表内容都会显示;符合关联条件的附表内容才会显示出来。 inner join 是内关联,没有主表附表的概念;两个表中,同时符合关联条件的数据才会显示出来。 left join 是 left outer join 的简写形式。 join 是 inner join 的简 阅读全文
posted @ 2019-10-30 20:06 Jenkin.K 阅读(1193) 评论(0) 推荐(1) 编辑
摘要: show databases; use flume; show tables; desc flume; alter table table_name add columns(dt string); alter table jenkintb change dt dt1 string; create t 阅读全文
posted @ 2019-10-17 17:17 Jenkin.K 阅读(142) 评论(0) 推荐(0) 编辑
摘要: Caused by: org.apache.spark.sql.catalyst.analysis.NoSuchTableException: Table or view 'xxxx' not found.... hive-site.xml需要配置 hive.metastore.uris 并启动90 阅读全文
posted @ 2019-10-16 17:37 Jenkin.K 阅读(1489) 评论(0) 推荐(0) 编辑
摘要: IDE本地调试和spark-shell调试报错: Caused by: org.datanucleus.exceptions.NucleusUserException: The connection pool plugin of type “HikariCP” was not found in th 阅读全文
posted @ 2019-10-16 15:31 Jenkin.K 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 看问题:beeline连接hiveserver2报错。连接串:hive --service beeline -u jdbc:hive2://localhost:10000/hive 错误:Error: Could not open client transport with JDBC Uri: jd 阅读全文
posted @ 2019-10-15 17:57 Jenkin.K 阅读(379) 评论(0) 推荐(0) 编辑
摘要: Java并发中的fairSync和NonfairSync主要区别为: 如果当前线程不是锁的占有者,则NonfairSync并不判断是否有等待队列,直接使用compareAndSwap去进行锁的占用; 如果当前线程不是锁的占有者,则FairSync则会判断当前是否有等待队列,如果有则将自己加到等待队列 阅读全文
posted @ 2018-02-08 19:55 Jenkin.K 阅读(955) 评论(0) 推荐(0) 编辑
摘要: 一个文件:vim 文件名.txt输入 :e ++enc=gbk 强制用gbk打开输入 :w ++enc=utf8 转换到utf8保存。多个文件:for i in *.txt; do iconv -f gb2312 -t utf-8 $i.txt > ${i}.utf8.txt; done 阅读全文
posted @ 2018-01-23 18:11 Jenkin.K 阅读(3490) 评论(0) 推荐(0) 编辑