Skip to content
This repository has been archived by the owner on Dec 20, 2018. It is now read-only.

Add support for Spark 2.1.x (while retaining Spark 2.0.x support) #212

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ before_cache:
- find $HOME/.sbt -name "*.lock" -delete
matrix:
include:
# ---- Spark 2.0.x ----------------------------------------------------------------------------
# Spark 2.0.0, Scala 2.11, and Avro 1.7.x
- jdk: openjdk7
scala: 2.11.7
env: TEST_HADOOP_VERSION="2.2.0" TEST_SPARK_VERSION="2.0.0" TEST_AVRO_VERSION="1.7.6" TEST_AVRO_MAPRED_VERSION="1.7.7"
# Spark 2.0.0, Scala 2.10, and Avro 1.7.x
- jdk: openjdk7
scala: 2.10.4
env: TEST_HADOOP_VERSION="2.2.0" TEST_SPARK_VERSION="2.0.0" TEST_AVRO_VERSION="1.7.6" TEST_AVRO_MAPRED_VERSION="1.7.7"
# Spark 2.0.0, Scala 2.10, and Avro 1.8.x
- jdk: openjdk7
scala: 2.10.4
env: TEST_HADOOP_VERSION="2.2.0" TEST_SPARK_VERSION="2.0.0" TEST_AVRO_VERSION="1.8.0" TEST_AVRO_MAPRED_VERSION="1.8.0"
# ---- Spark 2.1.x ----------------------------------------------------------------------------
# Spark 2.1.0, Scala 2.11, and Avro 1.7.x
- jdk: openjdk7
scala: 2.11.8
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ crossScalaVersions := Seq("2.10.6", "2.11.8")

spName := "databricks/spark-avro"

sparkVersion := "2.1.0"
sparkVersion := "2.0.0"

val testSparkVersion = settingKey[String]("The version of Spark to test against.")

Expand Down
10 changes: 9 additions & 1 deletion src/main/scala/com/databricks/spark/avro/AvroOutputWriter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import org.apache.avro.mapreduce.AvroKeyOutputFormat
import org.apache.hadoop.io.NullWritable
import org.apache.hadoop.mapreduce.{RecordWriter, TaskAttemptContext, TaskAttemptID}

import org.apache.spark.SPARK_VERSION
import org.apache.spark.sql.Row
import org.apache.spark.sql.execution.datasources.OutputWriter
import org.apache.spark.sql.types._
Expand All @@ -54,7 +55,14 @@ private[avro] class AvroOutputWriter(
new AvroKeyOutputFormat[GenericRecord]() {

override def getDefaultWorkFile(context: TaskAttemptContext, extension: String): Path = {
new Path(path)
if (SPARK_VERSION.startsWith("2.0")) {
val uniqueWriteJobId = context.getConfiguration.get("spark.sql.sources.writeJobUUID")
val taskAttemptId: TaskAttemptID = context.getTaskAttemptID
val split = taskAttemptId.getTaskID.getId
new Path(path, f"part-r-$split%05d-$uniqueWriteJobId$extension")
} else {
new Path(path)
}
}

@throws(classOf[IOException])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,19 @@ private[avro] class AvroOutputWriterFactory(
recordName: String,
recordNamespace: String) extends OutputWriterFactory {

override def getFileExtension(context: TaskAttemptContext): String = {
def getFileExtension(context: TaskAttemptContext): String = {
".avro"
}

override def newInstance(
def newInstance(
path: String,
bucketId: Option[Int],
dataSchema: StructType,
context: TaskAttemptContext): OutputWriter = {
newInstance(path, dataSchema, context)
}

def newInstance(
path: String,
dataSchema: StructType,
context: TaskAttemptContext): OutputWriter = {
Expand Down