Re: Async action in Dataframe

2018-12-23 Thread Jiaan Geng
RDD have not the method `collectAsync`.There exists a implicit conversion from RDD to AsyncRDDActions in object RDD. The implicit conversion is : implicit def rddToAsyncRDDActions[T: ClassTag](rdd: RDD[T]): AsyncRDDActions[T] = { new AsyncRDDActions(rdd) } The method collect of RDD use the

Re:Re: running updates using SPARK

2018-12-23 Thread 大啊
Hi Gourav Sengupta, Thank you provide the infomation of Databricks. At 2018-12-21 16:55:52, "Gourav Sengupta" wrote: Hi Jiaan, Spark does support UPDATES but in the version that Databricks has. The question to the community was asking when are they going to support it. Regards, Gourav