- 博客(4)
- 收藏
- 关注
原创 杀掉hadoop重复提交的任务
杀掉hadoop重复提交的任务 先杀掉提交任务的脚本进程: ps -aux | grep run_iter.sh 用这个命令找到脚本进程号: 然后再用kill -9 把进程号都杀掉。如上图。 查看指定用户下的任务id: yarn application -list | grep zoudanbing 杀掉所有的任务: for i in yarn application -list | grep -w zoudanbing| awk '{print $1}' | grep application_; do
2020-08-25 15:50:54
149
转载 tf.shape() 和 x.get_shape().as_list()
tf.shape() 和 x.get_shape().as_list() https://blog.youkuaiyun.com/m0_37393514/article/details/82226754?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.compare&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogComm
2020-08-03 13:24:14
208
原创 笔记
使用 nohup 命令 > log.txt & 跑程序 tailf log.txt 查看程序运行过程 杀死程序: 查看运行程序: jobs 找到要杀掉的程序序号 比如 1 然后 kill -9 %1 可以杀掉程序
2020-07-07 14:26:32
113
原创 git笔记
查看分支:git branch 切换到现在的分支(默认是master分支):git checkout -b zoudanbing 查看现在的状态:git status 用 git add 文件名 加入到缓存区 用git commit -m “提交信息” 命令 将缓存区里面的内容加入到本地仓库中 传到远程仓库 git push origin zoudanbing ...
2020-06-22 20:59:27
112
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人