Uploaded image for project: 'Kafka'
  1. Kafka
  2. KAFKA-9192

NullPointerException if field in schema not present in value

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 2.2.1
    • 2.2.3, 2.5.0, 2.3.2, 2.4.1
    • connect
    • None

    Description

      Given a message:

      {
         "schema":{
            "type":"struct",
            "fields":[
               {
                  "type":"string",
                  "optional":true,
                  "field":"abc"
               }
            ],
            "optional":false,
            "name":"foobar"
         },
         "payload":{
         }
      }
      

      I would expect, given the field is optional, for the JsonConverter to still process this value.

      What happens is I get a null pointer exception, the stacktrace points to this line: https://github.com/apache/kafka/blob/2.1/connect/json/src/main/java/org/apache/kafka/connect/json/JsonConverter.java#L701 called by https://github.com/apache/kafka/blob/2.1/connect/json/src/main/java/org/apache/kafka/connect/json/JsonConverter.java#L181

      Issue seems to be that we need to check and see if the jsonValue is null before checking if the jsonValue has a null value.

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              mt3593 Mark Tinsley
              Randall Hauch Randall Hauch
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: