Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-9215 Implement WAL-free Kinesis receiver that give at-least once guarantee
  3. SPARK-7139

Allow received block metadata to be saved to WAL and recovered on driver failure

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Resolved
    • Blocker
    • Resolution: Fixed
    • None
    • 1.4.0
    • DStreams
    • None

    Description

      The received API allows arbitrary metadata to be added for each block. However that information is not saved in the WAL as part of the block information in the driver.

      To fix this, the following needs to be done.

      1. Forward the metadata to the ReceivedBlockTracker in the driver.
      2. ReceivedBlockTracker saves the metadata and recovers it on restart.

      However there is one tricky thing. The ReceivedBlockTracker WAL is enabled only when `spark.streaming.receiver.writeAheadLog.enable = true`. This means that only when receiver WAL is enabled is the driver WAL enabled. This is not desired as the one may want to save and recovered block metadata information (especially information like Kafka offsets or Kinesis sequence numbers) that can be used to recover data without actually saving the data to the receiver WAL. So we have to always enable the tracker WAL.

      3. Always enable the ReceivedBlockTracker WAL. However, make sure that the WriteAheadLogBackedBlockRDD skips block lookup after restart as the blocks are obviously gone.

      Attachments

        Issue Links

          Activity

            People

              tdas Tathagata Das
              tdas Tathagata Das
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: