We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ba63b1 commit c2c7d67Copy full SHA for c2c7d67
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveUtils.scala
@@ -394,6 +394,13 @@ private[spark] object HiveUtils extends Logging {
394
// hive.metastore.uris is not set.
395
propMap.put(ConfVars.METASTOREURIS.varname, "")
396
397
+ // The execution client will generate garbage events, therefore the listeners that are generated
398
+ // for the execution clients are useless. In order to not output garbage, we don't generate
399
+ // these listeners.
400
+ propMap.put(ConfVars.METASTORE_PRE_EVENT_LISTENERS.varname, "")
401
+ propMap.put(ConfVars.METASTORE_EVENT_LISTENERS.varname, "")
402
+ propMap.put(ConfVars.METASTORE_END_FUNCTION_LISTENERS.varname, "")
403
+
404
propMap.toMap
405
}
406
0 commit comments