Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleSource offsets
{
	  "offsetstype": {
		"source"SOURCE",
  "offsets": [
			{
				    {
      "partition": {
					        // Connector-defined source partition
				  },
				      "offset": {
 					        // Connector-defined source offset
			        }
			    }
		]
	}  ]
}


Code Block
languagejs
titleSink offsets
{
	  "offsetstype": {
		"sink"SINK",
  "offsets": [
			{
				    {
      "partition": {
					        "topic": // Kafka topic
					        "partition": // Kafka partition
				  },
				      "offset": {
					        "offset": // Kafka offset
				}
			}
		]
	}      }
    }
  ]
}

Offsets endpoints behavior

...