Unsubscribe

2021-09-01 Thread 孙乾(亨贞)
Unsubscribe

Spark Phoenix Connection Exception while loading from Phoenix tables

2021-09-01 Thread Harsh Sharma
[01/09/21 11:55:51,861 WARN pool-1-thread-1](Client) Exception encountered while connecting to the server : java.lang.NullPointerException [01/09/21 11:55:51,862 WARN pool-1-thread-1](Client) Exception encountered while connecting to the server : java.lang.NullPointerException [01/09/21 11:5

Re: Connection reset by peer : failed to remove cache rdd

2021-09-01 Thread Harsh Sharma
Please Find reply : Do you know when in your application lifecycle it happens? Spark SQL or > Structured Streaming? ans :its Spark SQL Do you use broadcast variables ? ans : yes we are using broadcast variables or are the errors coming from broadcast joins perhaps? ans :we are not using Boa

Re: Connection reset by peer : failed to remove cache rdd

2021-09-01 Thread Harsh Sharma
On 2021/08/30 13:32:19, Jacek Laskowski wrote: > Hi, > > No idea what might be going on here, but I'd not worry much about it and > simply monitor disk usage as some broadcast blocks might have left over. > > Do you know when in your application lifecycle it happens? Spark SQL or > Structure

Who can reply me about SPARK-36584

2021-09-01 Thread Zhenyu Hu
Hi All I recently raised an issue to the community about Spark's dynamic scaling. When there is a broadcast and dynamic scaling is enabled at the same time, the driver will send a BlockUpdate message when the broadcast is completed. ExecutorMonitor#OnBlockUpdate will receive this event and

question regarding spark streaming continuous processing

2021-09-01 Thread Antonio Si
Hi, Hi all, I have a couple questions regarding continuous processing: 1. What is the plan for continuous processing moving forward? Will this eventually be released as a production feature as it seems it is still experimental? 2. In microbatch streaming, there is a StreamingQueryListener an

[Spark JDBC] Spark jdbc on SQL server failed with filter and disable pushDownPredicate not work

2021-09-01 Thread Xiaojin Wang
Hi guys, I recently met with an error with 'JDBC_PUSHDOWN_PREDICATE' option not work. The background is val url = "jdbc:sqlserver://XX" val properties = new Properties val df = spark.read.jdbc(url, "movies", properties) df.filter("rated == true").show() I am using this code to read from SQ

Spark usage help

2021-09-01 Thread yinghua...@163.com
Hi: I found that the following methods are used when setting parameters to create a sparksession access hive table 1) hive.execution.engine:spark spark = SparkSession.builder() .appName("get data from hive") .config("hive.execution.engine", "spark") .enableHiveSupport() .getOrCreate()