Versions Compared

Key

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

Table of Contents

Status

Current stateUnder DiscussionAccepted

Discussion thread: here

JIRA: here

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

Motivation

Kafka can be used in a stream processing pipeline to pass intermediate data between processing jobs. The amount of intermediate data generated from stream processing jobs can taken a large amount of disk space in the Kafka. It is important that we can delete this data soon after it is consumed by downstream application, otherwise we have to pay significant cost to purchase disks for Kafka clusters to keep those data.

However, Kafka doesn’t provide any mechanism to delete data after data is consumed by downstream jobs. It provides only time-based and size-based log retention policy, both of which are agnostic to consumer’s behavior. If we set small time-based log retention for intermediate data, the data may be deleted even before it is consumed by downstream jobs. If we set large time-based log retention, the data will take large amount of disk space for a long time. Neither solution is good for Kafka users. To address this problem, we propose to add a new admin API which can be called by user to purge data delete data that is no longer needed.

Note that this KIP is related to and overwrites supersedes KIP-47.


Public Interfaces

1) Java API

- Add the following API in Admin Client. This API returns a future object whose result will be available within RequestTimeoutMs, which is configured when user constructs the AdminClient.

Future<Map<TopicPartition, PurgeDataResult>> purgeDataBeforeDeleteDataResult>> deleteRecordsBefore(Map<TopicPartition, Long> offsetForPartition)

-  PurgeDataResult DeleteDataResult has the following two fields, which tells user if the data has been successfully purged for deleted for the corresponding partition.

PurgeDataResultDeleteDataResult(long: low_watermark, error: Exception)

2) Protocol

Create PurgeRequestDeleteRecordsRequest

 

Code Block
titlePurgeRequest
PurgeRequestDeleteRecordsRequest => topics timeout
  topics => [PurgeRequestTopicDeleteRecordsRequestTopic]
  timeout => int32
 
PurgeRequestTopicDeleteRecordsRequestTopic => topic partitions
  topic => str
  partitions => [PurgeRequestPartitionDeleteRecordsRequestPartition]
 
PurgeRequestPartitionDeleteRecordsRequestPartition => partition offset
  partition => int32
  offset => int64  // offset -1L will be translated into high_watermark of the partition when leader receives the request.

 Create PurgeReponse

Create DeleteRecordsResponse

 

Code Block
titlePurgeReponse
PurgeReponseDeleteRecordsResponse => topics
  topics => [PurgeResponseTopicDeleteRecordsResponseTopic]
 
PurgeResponseTopicDeleteRecordsResponseTopic => topic partitions
  topic => str
  partitions => [PurgeResponsePartitionDeleteRecordsResponsePartition]
 
PurgeResponsePartitionDeleteRecordsResponsePartition => partition low_watermark error_code
  partition => int32
  low_watermark => int32int64
  error_code => int16

 

Add a lowlog_start_watermark offset field to FetchRequestPartition

Code Block
titleFetchRequestPartition
FetchRequestPartition => partition fetch_offset low_watermark max_bytes
  partition => int32
  fetch_offset => int64
  lowlog_start_watermarkoffset => int64  <-- NEW. If it is issued from consumer, the value is -10. Otherwise, this is the lowlog_start_watermarkoffset of this partition on the follower.
  max_bytes => int32

 

Add a lowlog_start_watermark offset field to FetchResponsePartitionHeader 

...

Code Block
titleFetchResponsePartitionHeader
FetchResponsePartitionHeader => partition error_code high_watermark low_watermark
  partition => int32
  error_code => int16
  high_watermark => int64
  lowlog_start_watermarkoffset => int64  <-- NEW. This is the low_watermark of this partition on the leader.

3) Checkpoint file

We create one more checkpoint file, named "replicationlog-lowbegin-watermarkoffset-checkpoint", in every log directory. The checkpoint file will have the same format as existing checkpoint files (e.g. replication-offset-checkpoint) which map TopicPartition to Long.

4) Script

Add kafka-delete-data.sh that allows user to delete data in the command line. The script requires for the following arguments:

- bootstrap-server. This config is required from user. It is used to identify the Kafka cluster.
- command-config. This is an optional property file containing configs to be passed to Admin Client.
- delete-offset-json-file. This config is required from user. It allows user to specify offsets of partitions to be delete. The file has the following format:

 

Code Block
{
  "version" : int,
  "partitions" : [
    {
      "topic": str,
      "partition": int,
      "offset": long
    },
    ...
  ]
}


Proposed Changes

The idea is to add new APIs in Admin Client (see KIP-4) that can be called by user to purge data delete data that is no longer needed. New request and response needs to be added to communicate this request between client and broker. Given the impact of this API on the data, the API should be protected by Kafka’s authorization mechanism described in KIP-11 to prevent malicious or unintended data deletion. Furthermore, we adopt the soft delete approach because it is expensive to purge data delete data in the middle of a segment. Those segments whose maximum offset < offset-to-purge can delete can be deleted safely. Brokers can increment lowlog_start_watermark offset of a partition above to offset-to-purge delete so that data with offset < offset-to-purge delete will not be exposed to consumer even if it is still on the disk. And the low_watermark will log_start_offset will be checkpointed periodically similar to high_watermark to be persistent. 

Note that the way broker handles PurgeRequest is handles DeleteRecordsRequest is similar to how it handles ProduceRequest with ack = -1 all and isr=all_live_replicas, e.g. it the leader waits for all followers to catch up withlow_watermarkwith its log_start_offset, doesn't expose message below lowlog_start_watermarkoffset, and checkpoints log_start_offset periodically. The low_watermark periodically of a partition will be the minimum log_start_offset of all replicas of this partition and this value will be returned to user in DeleteRecordsResponse.

Please refer to public interface section for our design of the API, request and response. In this section we will describe how broker maintains low watermark per partition, how client communicates with broker to purge old delete old data, and how this API can be protected by authorization.

1) Interaction between user application and brokers

1) User application determines the maximum offset of data that can be purged per deleted per partition. This information is provided to purgeDataBeforedeleteRecordsBefore() as Map<TopicPartition, Long>. If users application only knows timestamp of data that can be purged deleted per partition, they can use offsetsForTimes() API to convert the cutoff timestamp into offsetToPurge offsetToDelete per partition before providing the map to purgeDataBeforeto deleteRecordsBefore() API.

2) Admin Client builds PurgeRequest using the offsetToPurge from purgeDataBeforebuilds DeleteRecordsRequest using the offsetToDelete from deleteRecordsBefore() parameter and the requestTimeoutMs is taken from the AdminClient constructor. OnePurgeRequestOne DeleteRecordsRequest is sent to each broker that acts as leader of any partition in the request. The request should only include partitions which the broker leads.

3) After receiving the PurgeRequestDeleteRecordsRequest, for each partition in the PurgeRequestDeleteRecordsRequest, the leader first sets offsetToPurge offsetToDelete to high_watermark if offsetToPurge offsetToDelete is -1L. It then sets lowlog_start_watermarkoffset of leader replica to max(lowlog_start_watermarkoffsetoffsetToPurgeoffsetToDelete) if offsetToPurge offsetToDelete <= high_watermark. Those segments whose largest offset < lowlog_start_watermarkoffset will be deleted by the leader.

4) The leader puts the PurgeRequestDeleteRecordsRequest into a DelayedOperationPurgatory. The PurgeRequestDeleteRecordsRequest can be completed when results for all partitions specified in the PurgeRequest DeleteRecordsRequest are available. The result of a partition will be available within RequestTimeoutMs and it is determined using the following logic:

  • If lowlog_start_watermarkoffset of this partition on all live followers is larger than or equal to the offsetToPurgeoffsetToDelete, the result of this partition will be the its low_watermark of the leader replica, which is the minimum log_start_offset of all its live replicas.
  • If high_watermark of this partition is smaller than the offsetToPurgeoffsetToDelete, the result of this partition will be OffsetOutOfRangeException.
  • If any replica of this partition goes offline, the result of this partition will be NotEnoughReplicasExceptionIf the leadership of this partition moves to another broker, the result of this partition will be NotLeaderException
  • If the result of this partition is not available after RequestTimeoutMs, the result of this partition will be TimeoutException

5) The leader sends FetchResponse with low_watermark with its log_start_offset to followers.

6) Follower sets replica's lowlog_start_watermarkoffset to the max(low_watermark read from FetchResponse, replica's low_watermarklog_start_offset of leader, log_start_offset of local replica). It also deletes those segments whose largest offset < lowlog_start_watermarkoffset.

7) Follower sends FetchRequest with replica's lowlog_start_watermarkoffset to the leader.

8) The leader updates lowlog_start_watermarkoffset of each follower. If the PurgeRequestDeleteRecordsRequest can be completed, the leader removes the PurgeRequestDeleteRecordsRequest from DelayedOperationPurgatory andsends PurgeResponse and sends DeleteRecordsResponse with the results (i.e. low_watermark or error) for the specified set of partitions.

9) If admin client does not receive PurgeResponseDeleteRecordsResponse from a broker within RequestTimeoutMs, the PurgeDataResultDeleteDataResult of the partitions on that broker will bePurgeDataResultDeleteDataResult(low_watermark = -1, error = TimeoutException). Otherwise, the PurgeDataResultDeleteDataResult of each partition will be constructed using the low_watermark and the errorof the corresponding partition which is read from the PurgeDataResponseDeleteDataResponse received from its leader broker. purgeDataBeforedeleteRecordsBefore(...).get() will unblock and returnreturn Map<TopicPartition, PurgeDataResult>DeleteDataResult> when PurgeDataResultDeleteDataResult of all partitions specified in the offsetForPartition param are available.

2) Routine operation in the broker

- Broker will delete those segments whose largest offset < lowlog_start_watermarkoffset.

- Only message with offset >= lowlog_start_watermarkoffset can be sent to consumer.

- When a segment is deleted due to log retention, broker updates lowlog_start_watermarkoffset to max(lowlog_start_watermarkoffset, smallest offset in the replica's log)

- Broker will checkpoint lowlog_start_watermarkoffset for all replicas periodically in the file "replicationlog-lowbegin-watermarkoffset-checkpoint", in the same way it checkpoints high_watermark of replicas. The checkpiont checkpoint file will have the same format as existing checkpoint files which map TopicPartition to Long.

3) API Authorization

Given the potential damage that can be caused if this API is used by mistake, it is important that we limit its usage to only authorized users. For this matter, we can take advantage of the existing authorization framework implemented in KIP-11purgeDataBeforedeleteRecordsBefore() will have the same authorization setting as deleteTopic(). Its operation type is be DELETE and its resource type is TOPIC.

4) ListOffsetRequest

low_watermark of log_start_offset of a partition will be used to decide the smallest offset of the partition that will be exposed to consumer. It will be returned when smallest_offset option is used in the ListOffsetRequest.

...

 The KIP changes the inter-broker protocol. Therefore the migration requires two rolling bounce. In the first rolling bounce we will deploy the new code but broker will still communicate using the existing protocol. In the second rolling bounce we will change the config so that broker will start to communicate with each other using the new protocol.

Test Plan

- Unit tests to validate that all the individual components work as expected.
- Integration tests to ensure that the feature works correctly end-to-end. 

Rejected Alternatives


- Using committed offset instead of an extra API to trigger data purge delete operation. Purge Delete data if its offset is smaller than committed offset of all consumer groups that need to consume from this partition.
This approach is discussed in KIP-68. The advantage of this approach is that it doesn't need coordination of user applications to determine when purgeDataBeforedeleteRecordsBefore() can be called, which can be hard to do if there are multiple consumer groups interested in consuming this topic. The disadvantage of this approach is that it is less flexible than purgeDataBeforedeleteRecordsBefore() API because it re-uses committed offset to trigger data purge delete operation. Also, it adds complexity to broker implementation and would be more complex to implement than the purgeDataBeforedeleteRecordsBefore() API. An alternative approach is to implement this logic by running an external service which calls purgeDataBeforedeleteRecordsBefore() API based on committed offset of consumer groups.

Leader sends PurgeResponse sends DeleteRecordsResponse without waiting for low_watermark of all followers to increase above the cutoff offset
This approach would be simpler to implement since it doesn't require DelayedOperationPurgatory for PurgeRequestDeleteRecordsRequest. The leader can reply to PurgeRequest DeleteRecordsRequest faster since it doesn't need to wait for followers. However, the purgeDataBeforethe deleteRecordsBefore() API would provide weaker guarantee in this approach because the data may not be deleted if the leader crashes right after it sends PurgeResponseDeleteRecordsResponse. It will be useful to know for sure whether the data has been deleted, e.g. when user wants to delete problematic data from upstream so that downstream application can re-consume clean data, or if user wants to delete some sensitive data.

- Purge Delete data on only one partition by each call to purgeDataBefore deleteRecordsBefore(...)
This approach would make the implementation of this API simpler, and would be consistent with the existing seek(TopicPartition partition, long offset) API. The downside of this approach is that it either increases the time to purge delete data if the number of partitions is large, or it requires user to take extra effort to parallelize the purgeDataBefore deleteRecordsBefore(...). This API may take time longer than seek() for a given partition since the broker needs to wait for follower's action before responding to PurgeDataRequestdeleteDataRequestThus we allow user to specify a map of partitions to make this API easy to use.