摘要:top后输入1 ,可查看cpu的核数及每个CPU的运行状况 参考: linux分析工具之top命令详解
阅读全文
摘要:解决方法: 在hive/conf/hive-env.sh文件中,加入下面的内容,问题得以解决: export HADOOP_OPTS="$HADOOP_OPTS -XX:PermSize=512M -XX:MaxPermSize=1024M" Exception in thread "main" j
阅读全文
摘要:访问jsp页面显示: Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Sat Apr 13 10:19:25 CST 20
阅读全文
摘要:程序员在编程过程中,经常会在代码中使用到“where 1=1”,这是为什么呢?
阅读全文
摘要:21/01/19 18:12:31 WARN metastore.ObjectStore: datanucleus.autoStartMechanismMode is set to unsupported value checked . Setting it to value ignored 21/
阅读全文
摘要:经典的SparkSQL/Hive-SQL/MySQL面试-练习题
阅读全文
摘要:基于Flink构建流批一体数仓的技术要点 参考: Flink1.10集成Hive快速入门
阅读全文
摘要:Linux sed 替换文件中的字符串 示例: 替换当前所有文件中 字段hadoop01:8020 为 myclustersed -i 's/hadoop01:8020/mycluster/g' ./* linux如何递归多目录替换文件内容 sed -i "s/旧内容/新内容/g" `grep 旧内
阅读全文
摘要:1. 查找30分钟内最新修改过的文件 find ./ -mmin -30 -type f | head -1 2. 查找30分钟内最早修改过的文件 find ./ -mmin -30 -type f |tail -1 3. 查找24小时内最新修改过的文件 find ./ -mtime 0 -type
阅读全文
摘要:shell脚本 -d 是目录文件,那么-e,-f分别是什么?还有"! -e"这又是什么意思呢? -e filename 如果 filename存在,则为真-d filename 如果 filename为目录,则为真 -f filename 如果 filename为常规文件,则为真-L filenam
阅读全文
摘要:参考: https://www.cnblogs.com/luengmingbiao/p/13161039.html
阅读全文
摘要:hadoop安全模式解除方法和为什么会安全模式
阅读全文