Versions Compared

Key

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

...

Current state: Under Discussion

Discussion thread: here [Change the link from the KIP proposal email archive to your own email thread]

JIRA: here [Change the link from KAFKA-1 to your own ticket]

...

Code Block
languagejava
titleRemoteStorageManager.copyLogSegmentData

/**
 * ...
 * @return Custom metadata to be added to the segment metadata after copying.
 * ...
 */
Optional<Map<String, byte[]>> copyLogSegmentData(
  RemoteLogSegmentMetadata remoteLogSegmentMetadata,
  LogSegmentData logSegmentData
) throws RemoteStorageException;

...

Code Block
languagejava
titlecustomMetadata

/**
* @return Optional map of custom metadata for this segment.
*/
public Optional<Map<String, byte[]>> customMetadata() {
   return customMetadata;
}

...