Spark2.3(三十六):根据appName验证某个app是否在运行
具体脚本
#/bin/sh #LANG=zh_CN.utf8 #export LANG export SPARK_KAFKA_VERSION=0.10 export LANG=zh_CN.UTF-8
# export env variable
if [ -f ~/.bash_profile ];
then
source ~/.bash_profile
fi
source /etc/profile
myAppName='SPARK APP NAME' apps='' for app in `yarn application -list` do apps=${app},$apps done apps=${apps%?} if [[ $apps =~ $myAppName ]] then echo "included" else echo "not included,do submit...." ./submit_x1_x2.sh abc TestRestartDriver fi
基础才是编程人员应该深入研究的问题,比如:
1)List/Set/Map内部组成原理|区别
2)mysql索引存储结构&如何调优/b-tree特点、计算复杂度及影响复杂度的因素。。。
3)JVM运行组成与原理及调优
4)Java类加载器运行原理
5)Java中GC过程原理|使用的回收算法原理
6)Redis中hash一致性实现及与hash其他区别
7)Java多线程、线程池开发、管理Lock与Synchroined区别
8)Spring IOC/AOP 原理;加载过程的。。。
【+加关注】。