Flink 启动 yarn-session.sh

1.内存不足

启动命令
bin/yarn-session.sh -n 2 -s 2 -jm 1024 -tm 1024

解决办法:将 hadoop 的检查虚拟内存关闭掉

在yarn-site.xml 中添加

<property>    
    <name>yarn.nodemanager.vmem-check-enabled</name>    
    <value>false</value>    
</property>  
错误信息
2019-07-20 17:18:25,512 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAppManager$ApplicationSummary: appId=application_1563612848821_0005,name=test,user=hadoop,queue=default,state=FAILED,trackingUrl=http://mini1:8088/cluster/app/application_1563612848821_0005,appMasterHost=N/A,startTime=1563614297058,finishTime=1563614305505,finalStatus=FAILED
2019-07-20 17:25:12,967 INFO org.apache.hadoop.yarn.server.resourcemanager.ClientRMService: Allocated new applicationId: 6
2019-07-20 17:25:16,952 INFO org.apache.hadoop.yarn.server.resourcemanager.ClientRMService: Application with id 6 submitted by user hadoop
2019-07-20 17:25:16,952 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Storing application with id application_1563612848821_0006
2019-07-20 17:25:16,952 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   IP=192.168.125.131      OPERATION=Submit Application Request    TARGET=ClientRMService  RESULT=SUCCESS  APPID=application_1563612848821_0006
2019-07-20 17:25:16,952 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from NEW to NEW_SAVING
2019-07-20 17:25:16,952 INFO org.apache.hadoop.yarn.server.resourcemanager.recovery.RMStateStore: Storing info for app: application_1563612848821_0006
2019-07-20 17:25:16,954 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from NEW_SAVING to SUBMITTED
2019-07-20 17:25:16,955 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Application added - appId: application_1563612848821_0006 user: hadoop leaf-queue of parent: root #applications: 1
2019-07-20 17:25:16,955 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Accepted application application_1563612848821_0006 from user: hadoop, in queue: default
2019-07-20 17:25:16,955 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from SUBMITTED to ACCEPTED
2019-07-20 17:25:16,956 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: Registering app attempt : appattempt_1563612848821_0006_000001
2019-07-20 17:25:16,956 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from NEW to SUBMITTED
2019-07-20 17:25:16,956 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application application_1563612848821_0006 from user: hadoop activated in queue: default
2019-07-20 17:25:16,956 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application added - appId: application_1563612848821_0006 user: org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue$User@7ccdead5, leaf-queue: default #user-pending-applications: 0 #user-active-applications: 1 #queue-pending-applications: 0 #queue-active-applications: 1
2019-07-20 17:25:16,956 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Added Application Attempt appattempt_1563612848821_0006_000001 to scheduler from user hadoop in queue default
2019-07-20 17:25:16,958 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from SUBMITTED to SCHEDULED
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0006_01_000001 Container Transitioned from NEW to ALLOCATED
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=AM Allocated Container        TARGET=SchedulerApp     RESULT=SUCCESS  APPID=application_1563612848821_0006    CONTAINERID=container_1563612848821_0006_01_000001
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerNode: Assigned container container_1563612848821_0006_01_000001 of capacity <memory:1024, vCores:1> on host mini3:40834, which has 1 containers, <memory:1024, vCores:1> used and <memory:7168, vCores:7> available after allocation
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: assignedContainer application attempt=appattempt_1563612848821_0006_000001 container=Container: [ContainerId: container_1563612848821_0006_01_000001, NodeId: mini3:40834, NodeHttpAddress: mini3:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: null, ] queue=default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0 clusterResource=<memory:16384, vCores:16>
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Re-sorting assigned queue: root.default stats: default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:1024, vCores:1>, usedCapacity=0.0625, absoluteUsedCapacity=0.0625, numApps=1, numContainers=1
2019-07-20 17:25:17,020 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: assignedContainer queue=root usedCapacity=0.0625 absoluteUsedCapacity=0.0625 used=<memory:1024, vCores:1> cluster=<memory:16384, vCores:16>
2019-07-20 17:25:17,021 INFO org.apache.hadoop.yarn.server.resourcemanager.security.NMTokenSecretManagerInRM: Sending NMToken for nodeId : mini3:40834 for container : container_1563612848821_0006_01_000001
2019-07-20 17:25:17,023 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0006_01_000001 Container Transitioned from ALLOCATED to ACQUIRED
2019-07-20 17:25:17,023 INFO org.apache.hadoop.yarn.server.resourcemanager.security.NMTokenSecretManagerInRM: Clear node set for appattempt_1563612848821_0006_000001
2019-07-20 17:25:17,023 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: Storing attempt: AppId: application_1563612848821_0006 AttemptId: appattempt_1563612848821_0006_000001 MasterContainer: Container: [ContainerId: container_1563612848821_0006_01_000001, NodeId: mini3:40834, NodeHttpAddress: mini3:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.133:40834 }, ]
2019-07-20 17:25:17,023 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from SCHEDULED to ALLOCATED_SAVING
2019-07-20 17:25:17,024 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from ALLOCATED_SAVING to ALLOCATED
2019-07-20 17:25:17,024 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Launching masterappattempt_1563612848821_0006_000001
2019-07-20 17:25:17,026 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Setting up container Container: [ContainerId: container_1563612848821_0006_01_000001, NodeId: mini3:40834, NodeHttpAddress: mini3:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.133:40834 }, ] for AM appattempt_1563612848821_0006_000001
2019-07-20 17:25:17,026 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Command to launch container container_1563612848821_0006_01_000001 : $JAVA_HOME/bin/java -Xmx424m  -Dlog.file="<LOG_DIR>/jobmanager.log" -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> <LOG_DIR>/jobmanager.out 2> <LOG_DIR>/jobmanager.err
2019-07-20 17:25:17,026 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Create AMRMToken for ApplicationAttempt: appattempt_1563612848821_0006_000001
2019-07-20 17:25:17,026 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Creating password for appattempt_1563612848821_0006_000001
2019-07-20 17:25:17,066 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Done launching container Container: [ContainerId: container_1563612848821_0006_01_000001, NodeId: mini3:40834, NodeHttpAddress: mini3:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.133:40834 }, ] for AM appattempt_1563612848821_0006_000001
2019-07-20 17:25:17,066 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from ALLOCATED to LAUNCHED
2019-07-20 17:25:18,132 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0006_01_000001 Container Transitioned from ACQUIRED to RUNNING
2019-07-20 17:25:23,485 INFO SecurityLogger.org.apache.hadoop.ipc.Server: Auth successful for appattempt_1563612848821_0006_000001 (auth:SIMPLE)
2019-07-20 17:25:23,502 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: AM registration appattempt_1563612848821_0006_000001
2019-07-20 17:25:23,502 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   IP=192.168.125.133      OPERATION=Register App Master   TARGET=ApplicationMasterService RESULT=SUCCESS  APPID=application_1563612848821_0006        APPATTEMPTID=appattempt_1563612848821_0006_000001
2019-07-20 17:25:23,502 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from LAUNCHED to RUNNING
2019-07-20 17:25:23,502 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from ACCEPTED to RUNNING
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0006_01_000001 Container Transitioned from RUNNING to COMPLETED
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.common.fica.FiCaSchedulerApp: Completed container: container_1563612848821_0006_01_000001 in state: COMPLETED event:FINISHED
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=AM Released Container TARGET=SchedulerApp     RESULT=SUCCESS  APPID=application_1563612848821_0006    CONTAINERID=container_1563612848821_0006_01_000001
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerNode: Released container container_1563612848821_0006_01_000001 of capacity <memory:1024, vCores:1> on host mini3:40834, which currently has 0 containers, <memory:0, vCores:0> used and <memory:8192, vCores:8> available, release resources=true
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: Updating application attempt appattempt_1563612848821_0006_000001 with final state: FAILED, and exit status: -103
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from RUNNING to FINAL_SAVING
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: Unregistering app attempt : appattempt_1563612848821_0006_000001
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Application finished, removing password for appattempt_1563612848821_0006_000001
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0006_000001 State change from FINAL_SAVING to FAILED
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: The number of failed attempts is 1. The max attempts is 1
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Updating application application_1563612848821_0006 with final state: FAILED
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from RUNNING to FINAL_SAVING
2019-07-20 17:25:24,389 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Cleaning master appattempt_1563612848821_0006_000001
2019-07-20 17:25:24,388 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: default used=<memory:0, vCores:0> numContainers=0 user=hadoop user-resources=<memory:0, vCores:0>
2019-07-20 17:25:24,390 INFO org.apache.hadoop.yarn.server.resourcemanager.recovery.RMStateStore: Updating info for app: application_1563612848821_0006
2019-07-20 17:25:24,390 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: completedContainer container=Container: [ContainerId: container_1563612848821_0006_01_000001, NodeId: mini3:40834, NodeHttpAddress: mini3:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.133:40834 }, ] queue=default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0 cluster=<memory:16384, vCores:16>
2019-07-20 17:25:24,390 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Application application_1563612848821_0006 failed 1 times due to AM Container for appattempt_1563612848821_0006_000001 exited with  exitCode: -103
For more detailed output, check application tracking page:http://mini1:8088/proxy/application_1563612848821_0006/Then, click on links to logs of each attempt.
Diagnostics: Container [pid=4258,containerID=container_1563612848821_0006_01_000001] is running beyond virtual memory limits. Current usage: 144.6 MB of 1 GB physical memory used; 2.2 GB of 2.1 GB virtual memory used. Killing container.
Dump of the process-tree for container_1563612848821_0006_01_000001 :
        |- PID PPID PGRPID SESSID CMD_NAME USER_MODE_TIME(MILLIS) SYSTEM_TIME(MILLIS) VMEM_USAGE(BYTES) RSSMEM_USAGE(PAGES) FULL_CMD_LINE
        |- 4272 4258 4258 4258 (java) 477 112 2228482048 36677 /app/jdk1.7/bin/java -Xmx424m -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint 
        |- 4258 4256 4258 4258 (bash) 3 2 108630016 330 /bin/bash -c /app/jdk1.7/bin/java -Xmx424m  -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.out 2> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.err 

Container killed on request. Exit code is 143
Container exited with a non-zero exit code 143
Failing this attempt. Failing the application.
2019-07-20 17:25:24,390 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: completedContainer queue=root usedCapacity=0.0 absoluteUsedCapacity=0.0 used=<memory:0, vCores:0> cluster=<memory:16384, vCores:16>
2019-07-20 17:25:24,390 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0006 State change from FINAL_SAVING to FAILED
2019-07-20 17:25:24,391 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Re-sorting completed queue: root.default stats: default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0
2019-07-20 17:25:24,391 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Application attempt appattempt_1563612848821_0006_000001 released container container_1563612848821_0006_01_000001 on node: host: mini3:40834 #containers=0 available=8192 used=0 with event: FINISHED
2019-07-20 17:25:24,392 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Application Attempt appattempt_1563612848821_0006_000001 is done. finalState=FAILED
2019-07-20 17:25:24,392 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.AppSchedulingInfo: Application application_1563612848821_0006 requests cleared
2019-07-20 17:25:24,392 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application removed - appId: application_1563612848821_0006 user: hadoop queue: default #user-pending-applications: 0 #user-active-applications: 0 #queue-pending-applications: 0 #queue-active-applications: 0
2019-07-20 17:25:24,392 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Application removed - appId: application_1563612848821_0006 user: hadoop leaf-queue of parent: root #applications: 0
2019-07-20 17:25:24,391 WARN org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=Application Finished - Failed TARGET=RMAppManager     RESULT=FAILURE  DESCRIPTION=App failed with state: FAILED       PERMISSIONS=Application application_1563612848821_0006 failed 1 times due to AM Container for appattempt_1563612848821_0006_000001 exited with  exitCode: -103
For more detailed output, check application tracking page:http://mini1:8088/proxy/application_1563612848821_0006/Then, click on links to logs of each attempt.
Diagnostics: Container [pid=4258,containerID=container_1563612848821_0006_01_000001] is running beyond virtual memory limits. Current usage: 144.6 MB of 1 GB physical memory used; 2.2 GB of 2.1 GB virtual memory used. Killing container.
Dump of the process-tree for container_1563612848821_0006_01_000001 :
        |- PID PPID PGRPID SESSID CMD_NAME USER_MODE_TIME(MILLIS) SYSTEM_TIME(MILLIS) VMEM_USAGE(BYTES) RSSMEM_USAGE(PAGES) FULL_CMD_LINE
        |- 4272 4258 4258 4258 (java) 477 112 2228482048 36677 /app/jdk1.7/bin/java -Xmx424m -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint 
        |- 4258 4256 4258 4258 (bash) 3 2 108630016 330 /bin/bash -c /app/jdk1.7/bin/java -Xmx424m  -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.out 2> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0006/container_1563612848821_0006_01_000001/jobmanager.err 

Container killed on request. Exit code is 143
Container exited with a non-zero exit code 143
Failing this attempt. Failing the application.  APPID=application_1563612848821_0006
2019-07-20 17:25:24,393 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAppManager$ApplicationSummary: appId=application_1563612848821_0006,name=test,user=hadoop,queue=default,state=FAILED,trackingUrl=http://mini1:8088/cluster/app/application_1563612848821_0006,appMasterHost=N/A,startTime=1563614716951,finishTime=1563614724388,finalStatus=FAILED
2019-07-20 17:29:14,708 INFO org.apache.hadoop.yarn.server.resourcemanager.ClientRMService: Allocated new applicationId: 7
2019-07-20 17:29:17,436 INFO org.apache.hadoop.yarn.server.resourcemanager.ClientRMService: Application with id 7 submitted by user hadoop
2019-07-20 17:29:17,436 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   IP=192.168.125.131      OPERATION=Submit Application Request    TARGET=ClientRMService  RESULT=SUCCESS  APPID=application_1563612848821_0007
2019-07-20 17:29:17,437 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Storing application with id application_1563612848821_0007
2019-07-20 17:29:17,437 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from NEW to NEW_SAVING
2019-07-20 17:29:17,437 INFO org.apache.hadoop.yarn.server.resourcemanager.recovery.RMStateStore: Storing info for app: application_1563612848821_0007
2019-07-20 17:29:17,437 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from NEW_SAVING to SUBMITTED
2019-07-20 17:29:17,439 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Application added - appId: application_1563612848821_0007 user: hadoop leaf-queue of parent: root #applications: 1
2019-07-20 17:29:17,439 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Accepted application application_1563612848821_0007 from user: hadoop, in queue: default
2019-07-20 17:29:17,440 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from SUBMITTED to ACCEPTED
2019-07-20 17:29:17,441 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: Registering app attempt : appattempt_1563612848821_0007_000001
2019-07-20 17:29:17,441 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from NEW to SUBMITTED
2019-07-20 17:29:17,452 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application application_1563612848821_0007 from user: hadoop activated in queue: default
2019-07-20 17:29:17,452 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application added - appId: application_1563612848821_0007 user: org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue$User@6828a6e2, leaf-queue: default #user-pending-applications: 0 #user-active-applications: 1 #queue-pending-applications: 0 #queue-active-applications: 1
2019-07-20 17:29:17,452 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Added Application Attempt appattempt_1563612848821_0007_000001 to scheduler from user hadoop in queue default
2019-07-20 17:29:17,453 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from SUBMITTED to SCHEDULED
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0007_01_000001 Container Transitioned from NEW to ALLOCATED
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=AM Allocated Container        TARGET=SchedulerApp     RESULT=SUCCESS  APPID=application_1563612848821_0007    CONTAINERID=container_1563612848821_0007_01_000001
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerNode: Assigned container container_1563612848821_0007_01_000001 of capacity <memory:1024, vCores:1> on host mini2:57152, which has 1 containers, <memory:1024, vCores:1> used and <memory:7168, vCores:7> available after allocation
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: assignedContainer application attempt=appattempt_1563612848821_0007_000001 container=Container: [ContainerId: container_1563612848821_0007_01_000001, NodeId: mini2:57152, NodeHttpAddress: mini2:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: null, ] queue=default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0 clusterResource=<memory:16384, vCores:16>
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Re-sorting assigned queue: root.default stats: default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:1024, vCores:1>, usedCapacity=0.0625, absoluteUsedCapacity=0.0625, numApps=1, numContainers=1
2019-07-20 17:29:17,992 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: assignedContainer queue=root usedCapacity=0.0625 absoluteUsedCapacity=0.0625 used=<memory:1024, vCores:1> cluster=<memory:16384, vCores:16>
2019-07-20 17:29:17,994 INFO org.apache.hadoop.yarn.server.resourcemanager.security.NMTokenSecretManagerInRM: Sending NMToken for nodeId : mini2:57152 for container : container_1563612848821_0007_01_000001
2019-07-20 17:29:17,996 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0007_01_000001 Container Transitioned from ALLOCATED to ACQUIRED
2019-07-20 17:29:17,996 INFO org.apache.hadoop.yarn.server.resourcemanager.security.NMTokenSecretManagerInRM: Clear node set for appattempt_1563612848821_0007_000001
2019-07-20 17:29:17,996 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: Storing attempt: AppId: application_1563612848821_0007 AttemptId: appattempt_1563612848821_0007_000001 MasterContainer: Container: [ContainerId: container_1563612848821_0007_01_000001, NodeId: mini2:57152, NodeHttpAddress: mini2:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.132:57152 }, ]
2019-07-20 17:29:17,996 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from SCHEDULED to ALLOCATED_SAVING
2019-07-20 17:29:17,997 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from ALLOCATED_SAVING to ALLOCATED
2019-07-20 17:29:17,997 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Launching masterappattempt_1563612848821_0007_000001
2019-07-20 17:29:18,002 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Setting up container Container: [ContainerId: container_1563612848821_0007_01_000001, NodeId: mini2:57152, NodeHttpAddress: mini2:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.132:57152 }, ] for AM appattempt_1563612848821_0007_000001
2019-07-20 17:29:18,002 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Command to launch container container_1563612848821_0007_01_000001 : $JAVA_HOME/bin/java -Xmx424m  -Dlog.file="<LOG_DIR>/jobmanager.log" -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> <LOG_DIR>/jobmanager.out 2> <LOG_DIR>/jobmanager.err
2019-07-20 17:29:18,002 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Create AMRMToken for ApplicationAttempt: appattempt_1563612848821_0007_000001
2019-07-20 17:29:18,002 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Creating password for appattempt_1563612848821_0007_000001
2019-07-20 17:29:18,031 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Done launching container Container: [ContainerId: container_1563612848821_0007_01_000001, NodeId: mini2:57152, NodeHttpAddress: mini2:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.132:57152 }, ] for AM appattempt_1563612848821_0007_000001
2019-07-20 17:29:18,031 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from ALLOCATED to LAUNCHED
2019-07-20 17:29:19,374 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0007_01_000001 Container Transitioned from ACQUIRED to RUNNING
2019-07-20 17:29:26,762 INFO SecurityLogger.org.apache.hadoop.ipc.Server: Auth successful for appattempt_1563612848821_0007_000001 (auth:SIMPLE)
2019-07-20 17:29:26,785 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: AM registration appattempt_1563612848821_0007_000001
2019-07-20 17:29:26,785 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   IP=192.168.125.132      OPERATION=Register App Master   TARGET=ApplicationMasterService RESULT=SUCCESS  APPID=application_1563612848821_0007        APPATTEMPTID=appattempt_1563612848821_0007_000001
2019-07-20 17:29:26,785 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from LAUNCHED to RUNNING
2019-07-20 17:29:26,785 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from ACCEPTED to RUNNING
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.rmcontainer.RMContainerImpl: container_1563612848821_0007_01_000001 Container Transitioned from RUNNING to COMPLETED
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.common.fica.FiCaSchedulerApp: Completed container: container_1563612848821_0007_01_000001 in state: COMPLETED event:FINISHED
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=AM Released Container TARGET=SchedulerApp     RESULT=SUCCESS  APPID=application_1563612848821_0007    CONTAINERID=container_1563612848821_0007_01_000001
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.SchedulerNode: Released container container_1563612848821_0007_01_000001 of capacity <memory:1024, vCores:1> on host mini2:57152, which currently has 0 containers, <memory:0, vCores:0> used and <memory:8192, vCores:8> available, release resources=true
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: Updating application attempt appattempt_1563612848821_0007_000001 with final state: FAILED, and exit status: -103
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from RUNNING to FINAL_SAVING
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: default used=<memory:0, vCores:0> numContainers=0 user=hadoop user-resources=<memory:0, vCores:0>
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: completedContainer container=Container: [ContainerId: container_1563612848821_0007_01_000001, NodeId: mini2:57152, NodeHttpAddress: mini2:8042, Resource: <memory:1024, vCores:1>, Priority: 0, Token: Token { kind: ContainerToken, service: 192.168.125.132:57152 }, ] queue=default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0 cluster=<memory:16384, vCores:16>
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: completedContainer queue=root usedCapacity=0.0 absoluteUsedCapacity=0.0 used=<memory:0, vCores:0> cluster=<memory:16384, vCores:16>
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.ApplicationMasterService: Unregistering app attempt : appattempt_1563612848821_0007_000001
2019-07-20 17:29:29,334 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.ParentQueue: Re-sorting completed queue: root.default stats: default: capacity=1.0, absoluteCapacity=1.0, usedResources=<memory:0, vCores:0>, usedCapacity=0.0, absoluteUsedCapacity=0.0, numApps=1, numContainers=0
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Application attempt appattempt_1563612848821_0007_000001 released container container_1563612848821_0007_01_000001 on node: host: mini2:57152 #containers=0 available=8192 used=0 with event: FINISHED
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.security.AMRMTokenSecretManager: Application finished, removing password for appattempt_1563612848821_0007_000001
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.attempt.RMAppAttemptImpl: appattempt_1563612848821_0007_000001 State change from FINAL_SAVING to FAILED
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: The number of failed attempts is 1. The max attempts is 1
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Updating application application_1563612848821_0007 with final state: FAILED
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from RUNNING to FINAL_SAVING
2019-07-20 17:29:29,335 INFO org.apache.hadoop.yarn.server.resourcemanager.recovery.RMStateStore: Updating info for app: application_1563612848821_0007
2019-07-20 17:29:29,336 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.CapacityScheduler: Application Attempt appattempt_1563612848821_0007_000001 is done. finalState=FAILED
2019-07-20 17:29:29,336 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.AppSchedulingInfo: Application application_1563612848821_0007 requests cleared
2019-07-20 17:29:29,336 INFO org.apache.hadoop.yarn.server.resourcemanager.scheduler.capacity.LeafQueue: Application removed - appId: application_1563612848821_0007 user: hadoop queue: default #user-pending-applications: 0 #user-active-applications: 0 #queue-pending-applications: 0 #queue-active-applications: 0
2019-07-20 17:29:29,336 INFO org.apache.hadoop.yarn.server.resourcemanager.amlauncher.AMLauncher: Cleaning master appattempt_1563612848821_0007_000001
2019-07-20 17:29:29,337 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: Application application_1563612848821_0007 failed 1 times due to AM Container for appattempt_1563612848821_0007_000001 exited with  exitCode: -103
For more detailed output, check application tracking page:http://mini1:8088/proxy/application_1563612848821_0007/Then, click on links to logs of each attempt.
Diagnostics: Container [pid=5351,containerID=container_1563612848821_0007_01_000001] is running beyond virtual memory limits. Current usage: 152.0 MB of 1 GB physical memory used; 2.2 GB of 2.1 GB virtual memory used. Killing container.
Dump of the process-tree for container_1563612848821_0007_01_000001 :
        |- PID PPID PGRPID SESSID CMD_NAME USER_MODE_TIME(MILLIS) SYSTEM_TIME(MILLIS) VMEM_USAGE(BYTES) RSSMEM_USAGE(PAGES) FULL_CMD_LINE
        |- 5351 5349 5351 5351 (bash) 0 0 108646400 295 /bin/bash -c /app/jdk1.7/bin/java -Xmx424m  -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.out 2> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.err 
        |- 5365 5351 5351 5351 (java) 550 121 2236710912 38608 /app/jdk1.7/bin/java -Xmx424m -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint 

Container killed on request. Exit code is 143
Container exited with a non-zero exit code 143
Failing this attempt. Failing the application.
2019-07-20 17:29:29,338 INFO org.apache.hadoop.yarn.server.resourcemanager.rmapp.RMAppImpl: application_1563612848821_0007 State change from FINAL_SAVING to FAILED
2019-07-20 17:29:29,338 WARN org.apache.hadoop.yarn.server.resourcemanager.RMAuditLogger: USER=hadoop   OPERATION=Application Finished - Failed TARGET=RMAppManager     RESULT=FAILURE  DESCRIPTION=App failed with state: FAILED       PERMISSIONS=Application application_1563612848821_0007 failed 1 times due to AM Container for appattempt_1563612848821_0007_000001 exited with  exitCode: -103
For more detailed output, check application tracking page:http://mini1:8088/proxy/application_1563612848821_0007/Then, click on links to logs of each attempt.
Diagnostics: Container [pid=5351,containerID=container_1563612848821_0007_01_000001] is running beyond virtual memory limits. Current usage: 152.0 MB of 1 GB physical memory used; 2.2 GB of 2.1 GB virtual memory used. Killing container.
Dump of the process-tree for container_1563612848821_0007_01_000001 :
        |- PID PPID PGRPID SESSID CMD_NAME USER_MODE_TIME(MILLIS) SYSTEM_TIME(MILLIS) VMEM_USAGE(BYTES) RSSMEM_USAGE(PAGES) FULL_CMD_LINE
        |- 5351 5349 5351 5351 (bash) 0 0 108646400 295 /bin/bash -c /app/jdk1.7/bin/java -Xmx424m  -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint  1> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.out 2> /home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.err 
        |- 5365 5351 5351 5351 (java) 550 121 2236710912 38608 /app/jdk1.7/bin/java -Xmx424m -Dlog.file=/home/hadoop/apps/hadoop-2.6.4/logs/userlogs/application_1563612848821_0007/container_1563612848821_0007_01_000001/jobmanager.log -Dlogback.configurationFile=file:logback.xml -Dlog4j.configuration=file:log4j.properties org.apache.flink.yarn.entrypoint.YarnSessionClusterEntrypoint 

2.没有启动Hadoop

解决方案,先启动hadoop,运行yarn-session.sh

2019-07-20 17:56:41,823 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: jobmanager.rpc.address, mini1
2019-07-20 17:56:41,824 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: jobmanager.rpc.port, 6123
2019-07-20 17:56:41,824 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: jobmanager.heap.size, 1024m
2019-07-20 17:56:41,825 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: taskmanager.heap.size, 1024m
2019-07-20 17:56:41,825 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: taskmanager.numberOfTaskSlots, 1
2019-07-20 17:56:41,825 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: parallelism.default, 1
2019-07-20 17:56:41,825 INFO  org.apache.flink.configuration.GlobalConfiguration            - Loading configuration property: rest.port, 8081
2019-07-20 17:56:41,840 INFO  org.apache.flink.yarn.cli.FlinkYarnSessionCli                 - Found Yarn properties file under /tmp/.yarn-properties-hadoop.
2019-07-20 17:56:42,399 WARN  org.apache.hadoop.util.NativeCodeLoader                       - Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
2019-07-20 17:56:42,507 INFO  org.apache.flink.runtime.security.modules.HadoopModule        - Hadoop user set to hadoop (auth:SIMPLE)
2019-07-20 17:56:42,607 INFO  org.apache.hadoop.yarn.client.RMProxy                         - Connecting to ResourceManager at mini1/192.168.125.131:8032
2019-07-20 17:56:42,792 INFO  org.apache.flink.yarn.cli.FlinkYarnSessionCli                 - The argument n is deprecated in will be ignored.
2019-07-20 17:56:43,853 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 0 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:44,854 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 1 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:45,855 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 2 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:46,856 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 3 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:47,857 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 4 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:48,858 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 5 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:49,859 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 6 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2019-07-20 17:56:50,860 INFO  org.apache.hadoop.ipc.Client                                  - Retrying connect to server: mini1/192.168.125.131:8032. Already tried 7 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值