Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package feast.ingestion

import org.apache.log4j.{Level, Logger}
import org.apache.spark.SparkConf
import org.apache.spark.sql.{Column, SparkSession}
import org.apache.spark.sql.functions.expr
Expand All @@ -26,6 +27,8 @@ trait BasePipeline {
// workaround for issue with arrow & netty
// see https://github.com/apache/arrow/tree/master/java#java-properties
System.setProperty("io.netty.tryReflectionSetAccessible", "true")
// suppress SubscriptionState logs
Logger.getLogger("org.apache.kafka").setLevel(Level.WARN)

val conf = new SparkConf()

Expand Down