上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页
摘要: 一、安装python3.7 1、下载源码包 # 切换到root目录 [root@localhost ~] cd /root/ # 安装wget [root@localhost ~] yum -y install wget # 使用wget下载到目录 [root@localhost ~] wget h 阅读全文
posted @ 2021-07-24 16:19 扰扰 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 一、cpu占用过高分析 1、通过ps命令查询cpu占用过高的进程pid top -c 2、通过top -H -p <PID>命令查看具体的线程id,记住占用高的线程TID top -H -p <PID> 3、导出堆栈日志文件 jstack -l <pid> >> jstackLog.out 4、线程 阅读全文
posted @ 2021-07-24 14:11 扰扰 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 类别 名称 官网 备注 查询引擎 Phoenix https://phoenix.apache.org/ Salesforce公司出品,Apache HBase之上的一个SQL中间层,完全使用Java编写 Kylin http://kylin.io eBay开源的基于Hadoop的分布式OLAP分析 阅读全文
posted @ 2021-07-17 16:06 扰扰 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 一、mongodb基础语法 1.1 数据库 1、查询数据库:show dbs; 2、创建数据库:use mytest;#如果数据库不存在,则会创建数据库,并没有真正创建数据库, 而是插入了一些数据之后, 才会创建数据库和集合 3、删除数据库:db.dropDatabase(); 1.2 表操作 1、 阅读全文
posted @ 2021-07-10 20:13 扰扰 阅读(1159) 评论(0) 推荐(0) 编辑
摘要: 一、添加POM引用 <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc 阅读全文
posted @ 2021-07-10 13:57 扰扰 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 一、添加POM引用 <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instanc 阅读全文
posted @ 2021-07-10 10:51 扰扰 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 一、添加POM引用 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
posted @ 2021-07-10 10:36 扰扰 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 一、创建目录结构 /docker/mysql-jq/docker-compose.yml /docker/mysql-jq/master /docker/mysql-jq/master/my.cnf/docker/mysql-jq/master/Dockerfile/docker/mysql-jq/ 阅读全文
posted @ 2021-07-08 19:56 扰扰 阅读(631) 评论(0) 推荐(0) 编辑
摘要: 一、原生watch方式 1、引入依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSche 阅读全文
posted @ 2021-06-10 09:49 扰扰 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: 版本1(默认版本): git clone https://github.com/davisking/dlib.git//Clone the code from github cd dlib mkdir build cd build cmake ../ -DDLIB_USE_CUDA=0 -DUSE_ 阅读全文
posted @ 2021-06-07 23:14 扰扰 阅读(213) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 33 下一页