doris-spark-connector
doris-spark-connector copied to clipboard
Consider publishing .jars to Maven
Spark has a feature allowing to automatically download packages from MavenCentral/SonatypeOSS repo:
spark = SparkSession.builder.config("spark.jars.packages", "com.mygroup:artifact:version").getOrCreate()
It is very convenient to use, as there is no need to directly access Github API to download .jar file. Instead user may just set artifact name, and it will be downloaded automatically (with private repos support).
Please consider uploading releases to MavenCentral/SonatypeOSS.