1.1进入命令行 hbase shell 1.2常用命令 命名描述语法 help 查看命令的使用描述 help '命令名' whoami 身份(root、user) whoami version 返回hbase版本信息 version status 返回hbase集群的状态信息 status tab ...
分类:
其他好文 时间:
2020-12-24 12:05:43
阅读次数:
0
更换清华源的时候,这三个都需要加上 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tun ...
分类:
其他好文 时间:
2020-12-24 12:05:29
阅读次数:
0
nvm arch [32|64]: Show if node is running in 32 or 64 bit mode. Specify 32 or 64 to override the default architecture. nvm install <version> [arch]: T ...
分类:
其他好文 时间:
2020-12-24 12:04:21
阅读次数:
0
JQuery 高级 1. 动画 1. 三种方式显示和隐藏元素 1. 默认显示和隐藏方式 1. show([speed,[easing],[fn]]) 1. 参数: 1. speed:动画的速度。三个预定义的值("slow","normal", "fast")或表示动画时长的毫秒数值(如:1000) ...
分类:
Web程序 时间:
2020-12-23 12:20:14
阅读次数:
0
profile的使用 1、作用 使用profile可以对某一条sql性能进行分析 2、语法 mysql> show variables like '%profil%'; + + + | Variable_name | Value | + + + | have_profiling | YES | | ...
分类:
数据库 时间:
2020-12-23 11:52:30
阅读次数:
0
出现了这个错误,原因是内层select语句带有limit子句。 原来的sql为: SELECT uid, open_acc_status, open_acc_time, mobile_num, email, reg_type FROM UserInfo WHERE uid IN (SELECT ui ...
分类:
数据库 时间:
2020-12-23 11:51:30
阅读次数:
0
一、命令描述与格式 将文件或标准输入组合输出到标准输出,所以注定了其可以配合管道应用, 格式:cat [选项] [files] 选项: -A --show-all :等价于-vET -b --number-nonblank :对非空行编号 -e :等价于-vE -E --show-ends :在每一 ...
分类:
其他好文 时间:
2020-12-22 11:54:31
阅读次数:
0
String file = urlConfig.getLocalDir()+videoId+".mp4"; RandomAccessFile randomFile = new RandomAccessFile(new File(file), "r");//只读模式 long contentLengt ...
分类:
其他好文 时间:
2020-12-21 11:43:47
阅读次数:
0
第一章、jQuery概述 1、什么jQuery? ?jquery是javascript库 ?JavaScript库:即library,是一个封装好的特定的集合(方法和函数)。从封装一大准函数的角度理解车,就是在这个车中,封装了很多预先定义好的函数在里面,比如动画animate、hide、show,比 ...
分类:
Web程序 时间:
2020-12-19 13:36:34
阅读次数:
2
import requests from bs4 import BeautifulSoup import bs4 def getHTMLText(url): try: r = requests.get(url,timeout=30) r.raise_for_status() # 如果状态不是200, ...
分类:
其他好文 时间:
2020-12-19 12:33:55
阅读次数:
1