WweiL commented on PR #41752:
URL: https://github.com/apache/spark/pull/41752#issuecomment-1631229143

   Thanks! I'll take a look later. Just a quick sanity check, can you test if 
you could do `spark.write` in the listener and in the client verify if the 
write is there? For example:
   
   ```
   >>> class MyListener(ConnectStreamingQueryListener):
   ...     def onQueryStarted(self, event: QueryStartedEvent) -> None: 
                print("hi, event query id is: " +  str(event.id)); 
                df=spark.createDataFrame(["10","11","13"], 
"string").toDF("age"); 
               df.write.saveAsTable("tbllistener")
   ```
   and do a `spark.read.table()` in client repl


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to