关于spark:SparkScala-Learning

41次阅读

共计 417 个字符,预计需要花费 2 分钟才能阅读完成。

Problem 1:
Unable to make private java.nio.DirectByteBuffer(long,int) accessible: module java.base does not “opens java.nio” to unnamed module
Solution:
Apache Spark is NOT COMPATIBLE with Java 16.
When downloading a JDK for Spark, Java 11 is the safest choice.
I am using Java 16, so need to shift JDK to 11.
Download JDK11 installer from Oracle. Install.
File – Project Structure – Platform Settings – + – add JDK11
File – Project Structure – Project – SDK – choose JDK11
Rebuild the project. Run.

正文完
 0