datahub.spark.conf.SparkAppContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acryl-spark-lineage Show documentation
Show all versions of acryl-spark-lineage Show documentation
Library to push data lineage from spark to datahub
The newest version!
package datahub.spark.conf;
import java.util.Map;
import lombok.Data;
@Data
public class SparkAppContext {
String appName;
String appId;
Long startTime;
String sparkUser;
String appAttemptId;
Map databricksTags;
}