Re: [spark-sql] Custom Query Execution listener via conf properties

2018-02-16 Thread Marcelo Vanzin
According to https://issues.apache.org/jira/browse/SPARK-19558 this feature was added in 2.3. On Fri, Feb 16, 2018 at 12:43 AM, kurian vs wrote: > Hi, > > I was trying to create a custom Query execution listener by extending the > org.apache.spark.sql.util.QueryExecutionListener class. My custom

[spark-sql] Custom Query Execution listener via conf properties

2018-02-16 Thread kurian vs
Hi, I was trying to create a custom Query execution listener by extending the org.apache.spark.sql.util.QueryExecutionListener class. My custom listener just contains some logging statements. But i do not see those logging statements when i run a spark job. Here are the steps that i did: 1.