Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

pyspark - The value of spark.network.timeout must be no less than the value of spark.executor.heartbeatInterval

I am trying to increase the heartbeat interval parameter in pyspark configuration but keep getting this error. Is there any good combination of spark.executor.heartbeatInterval interval and spark.network.timeout that increase the timeout value for big jobs but also make me start spark session without this error?

IllegalArgumentException: u'requirement failed: The value of spark.network.timeout=120s must be no less than the value of spark.executor.heartbeatInterval=10000s.'

Thank you!

question from:https://stackoverflow.com/questions/65836076/the-value-of-spark-network-timeout-must-be-no-less-than-the-value-of-spark-execu

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You have to increase the spark.network.timeout value too.

The documentation clearly states:

spark.executor.heartbeatInterval should be significantly less than spark.network.timeout

It's hard to interpret "significantly less" but by default spark.network.timeout is 12X greater (120s) than spark.executor.heartbeatInterval (10s).

Try:

--conf spark.network.timeout 100000 --conf spark.executor.heartbeatInterval 10000

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...