Uploaded image for project: 'Spark'
  1. Spark
  2. SPARK-19564

KafkaOffsetReader's consumers should not be in the same group

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 2.1.1, 2.2.0
    • 2.1.1, 2.2.0
    • Structured Streaming
    • None

    Description

      In `KafkaOffsetReader`, when error occurs, we abort the existing consumer and create a new consumer. In our current implementation, the first consumer and the second consumer would be in the same group, which violates our intention of the two consumers not being in the same group.

      The cause is that, in our current implementation, the first consumer is created before `groupId` and `nextId` are initialized in the constructor. Then even if `groupId` and `nextId` are increased during the creation of that first consumer, `groupId` and `nextId` would still be initialized to default values in the constructor.

      We should make sure that `groupId` and `nextId` are initialized before any consumer is created.

      Attachments

        Activity

          People

            lwlin Liwei Lin
            lwlin Liwei Lin
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: