《人性的弱点》2019-10-05book kindle9055 words 19 mins read人性的弱点 戴尔.卡内基 著;以下是本书的部分目录及语录节选。 与人相处的基本技巧 Fundamental Techniques in Handling People 1 如欲采蜜,勿蹴蜂房 批评不但不会改变事实,反而会招致愤Read more...
批量删除ES中无效的index / Elasticsearch batch delete indexs2019-09-28elasticsearch delete index shell241 words 1 min read通过elasticSearch 结合shell 批量删除 ES中大量无效index 正则获取所有无效index信息到备选删除记录文件中 1 2 # 通过 curl 获Read more...
linux下crontab定时在mysql中生成明日需要使用的空表 / Timely operational on linux crontab2019-09-27linux crontab mysql199 words 1 min read通过定时crontab 调用远程执行sql新建表结构 create_table.sh 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/bin/bash # 生成明天的日期 tomorrow=$(date -d "+1 days" "+%Y%m%d") echo next date: ${tomorrow} # sql文件脚本中的日期Read more...
kudu 表设计使用及限制 / Kudu table schema design and limited2019-09-27kudu table bigdate1625 words 4 mins read参考 kudu 官方指导手册 future Fast processing of OLAP workloads. OLAP 级数数据处理能力 Integration with MapReduce, Spark and other Hadoop ecosystem components. 可集成大数据常用组建(MR,spark,hive,impala,&hell Read more...
java通过oshi获取系统和硬件信息 / Oshi get system and hardware information2019-09-27linux java monitor889 words 2 mins readOSHI 是用java写的系统监控工具接口,提供主要的监控指标信息,具体接口作用如下: maven 依赖引入 1 2 3 4 5 6 <dependency> <groupId>com.github.oshi</groupId> <artifactId>oshi-core</artifactId> <version>4.0.0</version> </dependency> API 操作 1 2 3 4 5 6 7 8 9 // 初始Read more...