Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Add a file sink log to support versioning and compaction
  • Loading branch information
zsxwing committed Apr 15, 2016
commit 29e3088131beff4b36841a3d6544d399b0bfa0c2
Original file line number Diff line number Diff line change
Expand Up @@ -44,28 +44,26 @@ class FileStreamSink(

private val basePath = new Path(path)
private val logPath = new Path(basePath, FileStreamSink.metadataDir)
private val fileLog = new HDFSMetadataLog[Seq[String]](sqlContext, logPath.toUri.toString)
private val fileLog = new FileStreamSinkLog(sqlContext, logPath.toUri.toString)
private val fs = basePath.getFileSystem(sqlContext.sparkContext.hadoopConfiguration)

override def addBatch(batchId: Long, data: DataFrame): Unit = {
if (fileLog.get(batchId).isDefined) {
if (batchId <= fileLog.getLatest().map(_._1).getOrElse(-1L)) {
logInfo(s"Skipping already committed batch $batchId")
} else {
val files = writeFiles(data)
val files = fs.listStatus(writeFiles(data)).map { f =>
FileLog(f.getPath.toUri.toString, f.getLen, FileStreamSinkLog.ADD_ACTION)
}
if (fileLog.add(batchId, files)) {
logInfo(s"Committed batch $batchId")
} else {
logWarning(s"Race while writing batch $batchId")
throw new IllegalStateException(s"Race while writing batch $batchId")
}
}
}

/** Writes the [[DataFrame]] to a UUID-named dir, returning the list of files paths. */
private def writeFiles(data: DataFrame): Seq[String] = {
val ctx = sqlContext
val outputDir = path
val format = fileFormat
val schema = data.schema

private def writeFiles(data: DataFrame): Array[Path] = {
val file = new Path(basePath, UUID.randomUUID().toString).toUri.toString
data.write.parquet(file)
sqlContext.read
Expand All @@ -74,7 +72,6 @@ class FileStreamSink(
.inputFiles
.map(new Path(_))
.filterNot(_.getName.startsWith("_"))
.map(_.toUri.toString)
}

override def toString: String = s"FileSink[$path]"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.apache.spark.sql.execution.streaming

import java.io.IOException
import java.nio.charset.StandardCharsets.UTF_8

import org.apache.hadoop.fs.{Path, PathFilter}
import org.json4s.NoTypeHints
import org.json4s.jackson.Serialization
import org.json4s.jackson.Serialization.{read, write}

import org.apache.spark.sql.SQLContext
import org.apache.spark.sql.internal.SQLConf

/**
* @param path the file path
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Add basic doc string on what this class represents.

* @param size the file size
* @param action the file action. Must be either "add" or "delete".
*/
case class FileLog(path: String, size: Long, action: String)
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Dont like the name. This class is not a "log". FileStreamSinkLog is a log, each line in it is not a log.
I think this is a general problem with a number of method names as well. E.g. allLogs(). Maybe call it allFiles or allSinkFiles?


/**
* A special log for [[FileStreamSink]]. It will write one log file for each batch. The first line
* of the log file is the version number, and there are multiple JSON lines following. Each JSON
* line is a JSON format of [[FileLog]].
*
* As reading from many small files is usually pretty slow, [[FileStreamSinkLog]] will compact log
* files every "spark.sql.sink.file.log.compactLen" batches into a big file. When doing a compact,
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: doing a compaction

* it will read all history logs and merge them with the new batch. During the compaction, it will
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: read all old log files

* also delete the files that are deleted (marked by [[FileLog.action]]). When the reader uses
* `allLogs` to list all files, this method only returns the visible files (drops the deleted
* files).
*/
class FileStreamSinkLog(sqlContext: SQLContext, path: String)
extends HDFSMetadataLog[Seq[FileLog]](sqlContext, path) {

import FileStreamSinkLog._

private implicit val formats = Serialization.formats(NoTypeHints)

/**
* If we delete the old files after compaction at once, there is a race condition in S3: other
* processes may see the old files are deleted but still cannot see the compaction file. The user
* should set a reasonable `fileExpiredTimeMS`. We will wait until then so that the compaction
* file is guaranteed to be visible for all readers
*/
private val fileExpiredTimeMS = sqlContext.getConf(SQLConf.FILE_STREAM_SINK_LOG_EXPIRED_TIME)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: MS -> Ms


private val isDeletingExpiredLog = sqlContext.getConf(SQLConf.FILE_STREAM_SINK_LOG_DELETE)

private val compactLength = sqlContext.getConf(SQLConf.FILE_STREAM_SINK_LOG_COMPACT_LEN)
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value is not validated? if someone sets < 0

nit: Add comment on what the length is


override def batchIdToPath(batchId: Long): Path = {
if (isCompactionBatch(batchId, compactLength)) {
new Path(metadataPath, s"$batchId$COMPACT_FILE_SUFFIX")
} else {
new Path(metadataPath, batchId.toString)
}
}

override def pathToBatchId(path: Path): Long = {
getBatchIdFromFileName(path.getName)
}

override def isBatchFile(path: Path): Boolean = {
try {
getBatchIdFromFileName(path.getName)
true
} catch {
case _: NumberFormatException => false
}
}

override def serialize(logs: Seq[FileLog]): Array[Byte] = {
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: logs -> logData

(VERSION +: logs.map(write(_))).mkString("\n").getBytes(UTF_8)
}

override def deserialize(bytes: Array[Byte]): Seq[FileLog] = {
val lines = new String(bytes, UTF_8).split("\n")
if (lines.length == 0) {
throw new IllegalStateException("Incomplete log file")
}
val version = lines(0)
if (version != VERSION) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be 'version > VERSION' ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be 'version > VERSION' ?

It doesn't matter now. This is the first version. We will update the logic here when we add a new format in future.

throw new IllegalStateException(s"Unknown log version: ${version}")
}
lines.toSeq.slice(1, lines.length).map(read[FileLog](_))
}

override def add(batchId: Long, logs: Seq[FileLog]): Boolean = {
if (isCompactionBatch(batchId, compactLength)) {
compact(batchId, logs)
} else {
super.add(batchId, logs)
}
}

/**
* Compacts all logs before `batchId` plus the provided `logs`, and writes them into the
* corresponding `batchId` file.
Copy link
Contributor

@tdas tdas Apr 18, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Also mention that it deletes expired files as well, if enabled.

*/
private def compact(batchId: Long, logs: Seq[FileLog]): Boolean = {
val validBatches = getValidBatchesBeforeCompactionBatch(batchId, compactLength)
val allLogs = validBatches.flatMap(batchId => get(batchId)).flatten ++ logs
if (super.add(batchId, compactLogs(allLogs))) {
if (isDeletingExpiredLog) {
deleteExpiredLog(batchId)
}
true
} else {
// Return false as there is another writer.
false
}
}

/**
* Returns all file logs except the deleted files.
*/
def allLogs(): Array[FileLog] = {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Can you move the public method higher up over the private methods?

var latestId = getLatest().map(_._1).getOrElse(-1L)
while (true) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: can you explain the loop?

if (latestId >= 0) {
val startId = getAllValidBatches(latestId, compactLength)(0)
try {
val logs = get(Some(startId), Some(latestId)).flatMap(_._2)
return compactLogs(logs).toArray
} catch {
case e: IOException =>
// Another process may delete the batch files when we are reading. However, it only
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: can you elaborate a little .. who is writing and who is reading.

// happens when there is a compaction done. If so, we should retry to read the batches.
// Otherwise, this is a real IO issue and we should throw it.
val preLatestId = latestId
latestId = getLatest().map(_._1).getOrElse(-1L)
if (preLatestId == latestId) {
throw e
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe include latestId in the exception message

}
}
} else {
return Array.empty
}
}
Array.empty
}

/**
* Since all logs before `compactionBatchId` are compacted and written into the
* `compactionBatchId` log file, they can be removed. However, due to the eventual consistency of
* S3, the compaction file may not be seen by other processes at once. So we only delete files
* created `fileExpiredTimeMS` milliseconds ago.
*/
private def deleteExpiredLog(compactionBatchId: Long): Unit = {
val expiredTime = System.currentTimeMillis() - fileExpiredTimeMS
fileManager.list(metadataPath, new PathFilter {
override def accept(path: Path): Boolean = {
try {
val batchId = getBatchIdFromFileName(path.getName)
batchId < compactionBatchId
} catch {
case _: NumberFormatException =>
false
}
}
}).foreach { f =>
if (f.getModificationTime <= expiredTime) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens in file systems where getModificationTime is not reported, or reported as 0. Then this would always delete all the files.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I made a mistake about getModificationTime. Only the directory's getModificationTime in S3 returns 0. File's getModificationTime returns the correct value. See https://issues.apache.org/jira/browse/HADOOP-12837

I also verified that in S3 by myself.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that granularity of modification time can be 1s (azure)

fileManager.delete(f.getPath)
}
}
}
}

object FileStreamSinkLog {
val VERSION = "v1"
val COMPACT_FILE_SUFFIX = ".compact"
val DELETE_ACTION = "delete"
val ADD_ACTION = "add"

def getBatchIdFromFileName(fileName: String): Long = {
fileName.stripSuffix(COMPACT_FILE_SUFFIX).toLong
}

/**
* Returns if this is a compaction batch. FileStreamSinkLog will compact old logs every
* `compactLength` commits.
*
* E.g., if `compactLength` is 3, then 2, 5, 8, ... are all compaction batches.
*/
def isCompactionBatch(batchId: Long, compactLength: Int): Boolean = {
(batchId + 1) % compactLength == 0
}

/**
* Returns all valid batches before the specified `compactionBatchId`. They contain all logs we
* need to do a new compaction.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Can you put an example like the isCompletionBatch

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added.

*/
def getValidBatchesBeforeCompactionBatch(
compactionBatchId: Long, compactLength: Int): Seq[Long] = {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: format should be one param per line.

assert(isCompactionBatch(compactionBatchId, compactLength),
s"$compactionBatchId is not a compaction batch")
(math.max(0, compactionBatchId - compactLength)) until compactionBatchId
}

/**
* Returns all necessary logs before `batchId` (inclusive). If `batchId` is a compaction, just
* return itself. Otherwise, it will find the previous compaction batch and return all batches
* between it and `batchId`.
*/
def getAllValidBatches(batchId: Long, compactLength: Long): Seq[Long] = {
assert(batchId >= 0)
val start = math.max(0, (batchId + 1) / compactLength * compactLength - 1)
start to batchId
}

/**
* Removes all deleted files from logs. It assumes once one file is deleted, it won't be added to
* the log in future.
*/
def compactLogs(logs: Seq[FileLog]): Seq[FileLog] = {
val deletedFiles = logs.filter(_.action == DELETE_ACTION).map(_.path).toSet
if (deletedFiles.isEmpty) {
logs
} else {
logs.filter(f => !deletedFiles.contains(f.path))
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)

import HDFSMetadataLog._

private val metadataPath = new Path(path)
private val fileManager = createFileManager()
val metadataPath = new Path(path)
protected val fileManager = createFileManager()

if (!fileManager.exists(metadataPath)) {
fileManager.mkdirs(metadataPath)
Expand All @@ -62,26 +62,41 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)
* A `PathFilter` to filter only batch files
*/
private val batchFilesFilter = new PathFilter {
override def accept(path: Path): Boolean = try {
override def accept(path: Path): Boolean = isBatchFile(path)
}

private val serializer = new JavaSerializer(sqlContext.sparkContext.conf).newInstance()

protected def batchIdToPath(batchId: Long): Path = {
new Path(metadataPath, batchId.toString)
}

protected def pathToBatchId(path: Path) = {
path.getName.toLong
}

protected def isBatchFile(path: Path) = {
try {
path.getName.toLong
true
} catch {
case _: NumberFormatException => false
}
}

private val serializer = new JavaSerializer(sqlContext.sparkContext.conf).newInstance()
protected def serialize(metadata: T): Array[Byte] = {
JavaUtils.bufferToArray(serializer.serialize(metadata))
}

private def batchFile(batchId: Long): Path = {
new Path(metadataPath, batchId.toString)
protected def deserialize(bytes: Array[Byte]): T = {
serializer.deserialize[T](ByteBuffer.wrap(bytes))
}

override def add(batchId: Long, metadata: T): Boolean = {
get(batchId).map(_ => false).getOrElse {
// Only write metadata when the batch has not yet been written.
val buffer = serializer.serialize(metadata)
try {
writeBatch(batchId, JavaUtils.bufferToArray(buffer))
writeBatch(batchId, serialize(metadata))
true
} catch {
case e: IOException if "java.lang.InterruptedException" == e.getMessage =>
Expand Down Expand Up @@ -113,8 +128,8 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)
try {
// Try to commit the batch
// It will fail if there is an existing file (someone has committed the batch)
logDebug(s"Attempting to write log #${batchFile(batchId)}")
fileManager.rename(tempPath, batchFile(batchId))
logDebug(s"Attempting to write log #${batchIdToPath(batchId)}")
fileManager.rename(tempPath, batchIdToPath(batchId))
return
} catch {
case e: IOException if isFileAlreadyExistsException(e) =>
Expand Down Expand Up @@ -158,11 +173,11 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)
}

override def get(batchId: Long): Option[T] = {
val batchMetadataFile = batchFile(batchId)
val batchMetadataFile = batchIdToPath(batchId)
if (fileManager.exists(batchMetadataFile)) {
val input = fileManager.open(batchMetadataFile)
val bytes = IOUtils.toByteArray(input)
Some(serializer.deserialize[T](ByteBuffer.wrap(bytes)))
Some(deserialize(bytes))
} else {
logDebug(s"Unable to find batch $batchMetadataFile")
None
Expand All @@ -172,7 +187,7 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)
override def get(startId: Option[Long], endId: Option[Long]): Array[(Long, T)] = {
val files = fileManager.list(metadataPath, batchFilesFilter)
val batchIds = files
.map(_.getPath.getName.toLong)
.map(f => pathToBatchId(f.getPath))
.filter { batchId =>
(endId.isEmpty || batchId <= endId.get) && (startId.isEmpty || batchId >= startId.get)
}
Expand All @@ -184,7 +199,7 @@ class HDFSMetadataLog[T: ClassTag](sqlContext: SQLContext, path: String)

override def getLatest(): Option[(Long, T)] = {
val batchIds = fileManager.list(metadataPath, batchFilesFilter)
.map(_.getPath.getName.toLong)
.map(f => pathToBatchId(f.getPath))
.sorted
.reverse
for (batchId <- batchIds) {
Expand Down
Loading