当前位置:   article > 正文

Exception: Java gateway process exited before sending its port number

exception: java gateway process exited before sending its port number

problem:when i run the code in spark environment,it alway error:Exception: Java gateway process exited before sending its port number!
it takes me a long time to solve,finally a man in google who also encountered with the same problem like me says the errror is cause by anaconda,better to uninstall anaconda.I did not take his advice at beginning.but i could not find any solutions to it.so i just do the following steps:
1.uninstall anaconda
2.remove the path i added in pycarm(Run-edit configurations-environment variables)
3.change the strange name i i use in the py file like 1,2,3 to a normal name
Finnally,my code run successfully in spark enviroment.Here is the my code:

start_time = time.time()
password = parse.quote_plus('Goe@spider')
uri = "mongodb://gouuse:{}@192.168.5.113:27017/Flight.test".format(password)

#  mongdb 连接参数
input_uri = "mongodb://username:password@192.168.5.112:27017/Flight"
database = "Flight"
collection = "info"
spark = SparkSession.builder.master('local[*]').appName("read").getOrCreate()
mongdbDf = spark.read.format('com.mongodb.spark.sql').options(fetchsize=1000,uri=input_uri,database=database,collection=collection).load()
mongdbDf.printSchema()
mongdbDf.show()  #默认显示20行
print('before delete the duplicated:')
print(mongdbDf.count())
mongdbDf.registerTempTable("temp_table")

# mngDF = mongdbDf.dropDuplicates(['customer_name','website'])  # 去重
mngDF = mongdbDf.dropDuplicates(['customer_name'])  # 去重
mngDF.write.format("com.mongodb.spark.sql.DefaultSource").mode("append").option("spark.mongodb.output.uri", uri).save()
time_inv = time.time()-start_time
print("************************************")
print(time_inv)
print('after delete the duplicated:')
print(mngDF.count())
mngDF.show()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

Today is 2019.2.14,the same proplem about the java port come out again!,i googled and tried many ways,i solve the problem!The way is following:
1.修改from py4j.java_gateway import JavaGateway
为:from pyspark.java_gateway import JavaGateway
2.添加如下代码:
import os
os.environ[‘SPARK_HOME’] = “E:\dev\spark-2.3.0-bin-hadoop2.7”
.os.environ[‘JAVA_HOME’] = “D:\Java\jdk1.8.0_131”

Today is 2019.7.26,the same proplem about the java port come out again!,!!!I try very hard as the fomer ways,but i does not work!!!Maybe this time i have to install python environment again!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/876234
推荐阅读
相关标签
  

闽ICP备14008679号