Dependencies for Spark Connector

If you want to create an application that uses the HERE platform Spark Connector, you need to add the spark-support module as a dependency to your project.

The spark connector offers a an SQL-like interface to work with Apache Spark DataFrames. Therefore, you also need to add the spark-sql module as a dependency to your project.

SBT
Maven
libraryDependencies ++= Seq(
  "com.here.platform.data.client" %% "spark-support" % "1.18.173",
  "org.apache.spark" %% "spark-sql" % "3.4.1"
)
<dependencies>
    <dependency>
        <groupId>com.here.platform.data.client</groupId>
        <artifactId>spark-support_2.12</artifactId>
        <version>1.18.173</version>
    </dependency>
    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-sql_2.12</artifactId>
        <version>3.4.1</version>
    </dependency>
</dependencies>

results matching ""

    No results matching ""