hadoop Shuffle Error: Exceeded MAX_FAILED_UNIQUE_FETCHES; bailing-out 程序里面打开文件数达到上限,系统一般默认数量是1024,(用ulimit -a可以看到)vi /etc/security/limits.conf 添加 :sof ...
分类:
其他好文 时间:
2020-07-15 12:46:25
阅读次数:
86
一般在src/utils里新建date.js import Vue from 'vue'; // 时间戳转换为 YYYY-MM-DD HH:mm:ss Vue.filter('formatDate', function(timeStamp, format) { if (timeStamp) { fo ...
分类:
其他好文 时间:
2020-07-14 21:52:52
阅读次数:
216
echo "export LC_ALL=en_US.UTF-8" >> /etc/profile source /etc/profile原因是因为没有配置正确的语言环境造成的 ...
分类:
其他好文 时间:
2020-07-14 18:20:49
阅读次数:
159
在RedHat下有时候用rpm安装软件是会出现下面则中错误 1、安装时提示:warning: *.rpm: Header V3 RSA/SHA256 Signature, keykey ID c105b9de: NOKEY 解决的方法就是在rpm 语句后面加上 --force --nodeps 即原 ...
分类:
其他好文 时间:
2020-07-14 13:31:45
阅读次数:
95
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:
其他好文 时间:
2020-07-14 12:59:15
阅读次数:
223
监控工具:jvisualVM、VisaulVM、jprofiler JVM优化书籍:《Java性能优化权威指南》、《深入理解java虚拟机》 1.年轻代空间不足 2.per Gen(永久代)空间满 3.CMS GC时出现promotion failed和concurrent mode failure ...
分类:
其他好文 时间:
2020-07-14 10:36:50
阅读次数:
187
动作 printf printf 可以实现格式化输出格式: printf “FORMAT”, item1, item2, ... 说明: 必须指定FORMAT 不会自动换行,需要显式给出换行控制符 \n FORMAT中需要分别为后面每个item指定格式符 格式符:与item一一对应 %c:显示字符的 ...
分类:
其他好文 时间:
2020-07-14 09:20:53
阅读次数:
73
[C 语言中文开发手册sscanf (File input/output) - C 中文开发手册Defined in header(1)?int scanf( const char *format, ... );?(until C99)?int scanf( const char *restrict... ...
分类:
其他好文 时间:
2020-07-13 21:57:28
阅读次数:
73
参考: https://blog.csdn.net/faryang/article/details/79427573 错误信息: ##[error]DownloadKubectlFailedFromLocation https://storage.googleapis.com/kubernetes- ...
分类:
其他好文 时间:
2020-07-13 18:50:52
阅读次数:
94
PHP的number_format() 函数通过千位分组来格式化数字。 语法: number_format(number,decimals,decimalpoint,separator) 注释:该函数支持一个、两个或四个参数(不是三个)。 1 <?php 2 /* number_format() 函 ...
分类:
Web程序 时间:
2020-07-13 18:49:48
阅读次数:
98