上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: >sudo gitlab-rails console production > user=User.where(name: "root").first > user.password=12345678 > user.save! > quit 阅读全文
posted @ 2018-03-05 17:26 Runner_Jack 阅读(17156) 评论(0) 推荐(0) 编辑
摘要: 1、添加数据curl -H "Content-Type: application/json" -XPUT 'http://localhost:9200/megacorp/employee/3' -d'{ "first_name" : "Jane", "last_name" : "Smith", "a 阅读全文
posted @ 2018-02-28 16:49 Runner_Jack 阅读(944) 评论(0) 推荐(0) 编辑
摘要: 热部署是spring boot的一大亮点功能,开发者不必因为改动一点代码就去频繁的关开服务。 1) 在pom文件中加载热部署依赖和插件 2)CTRL + SHIFT + A --> 查找make project automatically --> 选中 3)CTRL + SHIFT + A --> 阅读全文
posted @ 2018-02-04 18:30 Runner_Jack 阅读(704) 评论(0) 推荐(0) 编辑
摘要: HBase的权限管理依赖协协处理器。所以我们需要配置hbase.security.authorization=true,以及hbase.coprocessor.master.classes和hbase.coprocessor.master.classes使其包含org.apache.hadoop.h 阅读全文
posted @ 2018-02-04 01:06 Runner_Jack 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 一、数据倾斜 数据倾斜一般发生在对数据进行重新划分以及聚合的处理过程中。执行Spark作业时,数据倾斜一般发生在shuffle过程中,因为Spark的shuffle过程需要进行数据的重新划分处理。在执行shuffle过程中,Spark需要将各个节点上相同key的数据拉取到某个处理节点的task中进行 阅读全文
posted @ 2018-01-10 14:14 Runner_Jack 阅读(3193) 评论(1) 推荐(1) 编辑
摘要: 我用的是虚拟机,一换网络环境虚拟机的ip就没有了,重启网上就报Failed to start LSB: Bring up/down networking错误。网上查了一圈说什么HWADDR有问题,改了之后也没什么作用。也许是大家情况都不一样,有的成功的有失败。当你也没有其他办法时,用用我的方法也许会 阅读全文
posted @ 2018-01-05 10:11 Runner_Jack 阅读(3588) 评论(0) 推荐(0) 编辑
摘要: ldd -r xxx.so 阅读全文
posted @ 2017-12-25 15:10 Runner_Jack 阅读(317) 评论(0) 推荐(0) 编辑
摘要: export LD_LIBRARY_PATH=. 阅读全文
posted @ 2017-12-22 14:43 Runner_Jack 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 例: ifort -c -fpic test.f90ifort -shared -o test.so test.o 阅读全文
posted @ 2017-12-22 13:33 Runner_Jack 阅读(751) 评论(0) 推荐(0) 编辑
摘要: source /opt/intel/bin/compilervars.sh intel64 阅读全文
posted @ 2017-12-22 11:11 Runner_Jack 阅读(1479) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页