摘要:
Linux有多种登录方式,比如telnet、ssh。支持ssh登录方式:口令登录和公钥登录 ssh登录方式:ssh [-l login_name] [-p port] [user@]hostname 口令登录:输入密码登录。 公钥登录:将本端设备的公钥加入到对端的公钥文件authorized_key 阅读全文
摘要:
spark任务在执行期间,有时候会遇到临时目录创建失败,导致任务执行错误。 spark执行过程的文件夹 1. spark创建临时文件机制 spark作为并行计算框架,同一个作业会被划分为多个任务在多个节点执行,reduce的输入可能存在于多个节点,因此需要shuffle将所有reduce的输入汇总起 阅读全文
摘要:
Java获取当前运行系统的配置信息 接口:System.getProperty() 参数|描述 : |: java.version|Java运行时环境版本 java.vendor|Java运行时环境供应商 java.vendor.url|Java供应商的URL java.home|Java安装目录 阅读全文
摘要:
"Java Language and Virtual Machine Specifications" 阅读全文
摘要:
"JDK Tools and Utilities" Basic Tools These tools are the foundation of the JDK. They are the tools you use to create and build applications. Tool Nam 阅读全文
摘要:
"JDK Tools and Utilities" Monitoring Tools You can use the following tools to monitor JVM performance statistics. The tools described in this section 阅读全文
摘要:
Java I/O介绍 阅读全文