Flink 作业 .UnfulfillableSlotRequestException:无法满足插槽请求.请求资源配置文件 (ResourceProfile{UNKNOWN}) 无法实现 [英] Flink job .UnfulfillableSlotRequestException: Could not fulfill slot req. Req resource profile (ResourceProfile{UNKNOWN}) is unfulfillable

查看:191
本文介绍了Flink 作业 .UnfulfillableSlotRequestException:无法满足插槽请求.请求资源配置文件 (ResourceProfile{UNKNOWN}) 无法实现的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Flink 作业提交

$ ./bin/flink run -m 10.0.2.4:6123  /streaming/mvn-flinkstreaming-scala/mvn-flinkstreaming-scala-1.0.jar
Stream processing!!!!!!!!!!!!!!!!!
org.apache.flink.streaming.api.datastream.DataStreamSink@40ef3420

------------------------------------------------------------
 The program finished with the following exception:

org.apache.flink.runtime.jobmanager.scheduler.NoResourceAvailableException: No pooled slot available and request to ResourceManager for new slot failed
    at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:292)
    at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:308)
    at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:607)
    at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:591)
    ... 31 more
Caused by: org.apache.flink.runtime.jobmanager.scheduler.NoResourceAvailableException: No pooled slot available and request to ResourceManager for new slot failed
    ... 29 more
Caused by: java.util.concurrent.CompletionException: org.apache.flink.runtime.resourcemanager.exceptions.ResourceManagerException: Could not fulfill slot request 

    org.apache.flink.client.program.ProgramInvocationException: The main method caused an error: java.util.concurrent.ExecutionException: org.apache.flink.runtime.client.JobSubmissionException: Failed to submit JobGraph.

但是当我在 UI 中检查作业的日志时出现不同的错误,

but when i checked the logs of the job in UI getting a different error,

Caused by: java.util.concurrent.CompletionException: org.apache.flink.runtime.jobmanager.scheduler.NoResourceAvailableException: No pooled slot available and request to ResourceManager for new slot failed
    at java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:292)
    at java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:308)
    at java.util.concurrent.CompletableFuture.uniApply(CompletableFuture.java:607)
    at java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:591)
    ... 31 more
Caused by: org.apache.flink.runtime.jobmanager.scheduler.NoResourceAvailableException: No pooled slot available and request to ResourceManager for new slot failed
    ... 29 more
Caused by: java.util.concurrent.CompletionException: org.apache.flink.runtime.resourcemanager.exceptions.ResourceManagerException: Could not fulfill slot request ea

我应该检查什么,我的配置参数如下,A) 是 -m ip_address:6123 正确选项或 8081 应该是端口...配置..

What should I check, my configuration parameter are as below, A) is the -m ip_address:6123 right option or 8081 should be the port... config..

# Note this accounts for all memory usage within the TaskManager process, including JVM metaspace and other overhead.

taskmanager.memory.process.size: 1568m

# To exclude JVM metaspace and overhead, please, use total Flink memory size instead of 'taskmanager.memory.process.size'.
# It is not recommended to set both 'taskmanager.memory.process.size' and Flink memory.
#
# taskmanager.memory.flink.size: 1280m

# The number of task slots that each TaskManager offers. Each slot runs one parallel pipeline.

taskmanager.numberOfTaskSlots: 2

# The parallelism used for programs that did not specify and other parallelism.

parallelism.default: 2

集群启动,

$  bin/start-cluster.sh
Starting cluster.
Starting standalonesession daemon on host centos1.
Starting taskexecutor daemon on host centos2.
Starting taskexecutor daemon on host centos3.

能够在master节点处理grep,

Able to process grep in master node,

]$ ps -ef | grep  flink
root      12300      1 10 07:22 pts/0    00:00:05 java -Xms16384m -Xmx16384m -Dlog.file=/storage/flink-1.10.0/log/

无法找到与任务管理器相关的 fink 进程,centos2 ~]$ psg flink

Unable to find a process of fink related to task managers, centos2 ~]$ psg flink

这是一种正确的状态吗?

Is this a right state?

推荐答案

我在 Flink-1.10.0 中遇到了同样的问题.所以请根据数据加载情况确保您有足够的内存.

I have faced the same problem in Flink-1.10.0. So please make sure you have enough memory according to the data load.

我得到的错误:

java.lang.OutOfMemoryError: Metaspace

  • jobmanager.heap.size:1024m(默认)
  • taskmanager.memory.flink.size:1280m(默认)
  • taskmanager.memory.jvm-metaspace.size:256m(默认)
  • 所以我根据数据负载增加了taskmanager.memory.jvm-metaspace.size,它解决了我的问题.

    So I have increased taskmanager.memory.jvm-metaspace.size according to data load and it solved my issue.

    欲了解更多详情,请点击这里.

    For more details click here.

    这篇关于Flink 作业 .UnfulfillableSlotRequestException:无法满足插槽请求.请求资源配置文件 (ResourceProfile{UNKNOWN}) 无法实现的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆