-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat][broker][PIP-195] New bucket based delayed message tracker - in…
…terface&config&proto -part 1 (#17344)
- Loading branch information
Showing
6 changed files
with
185 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
pulsar-broker/src/main/java/org/apache/pulsar/broker/delayed/BucketSnapshotStorage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.apache.pulsar.broker.delayed; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.CompletableFuture; | ||
import org.apache.pulsar.broker.delayed.proto.DelayedMessageIndexBucketSnapshotFormat.SnapshotMetadata; | ||
import org.apache.pulsar.broker.delayed.proto.DelayedMessageIndexBucketSnapshotFormat.SnapshotSegment; | ||
|
||
public interface BucketSnapshotStorage { | ||
|
||
/** | ||
* Create a delayed message index bucket snapshot with metadata and bucketSnapshotSegments. | ||
* | ||
* @param snapshotMetadata the metadata of snapshot | ||
* @param bucketSnapshotSegments the list of snapshot segments | ||
* @return the future with bucketId(ledgerId). | ||
*/ | ||
CompletableFuture<Long> createBucketSnapshot(SnapshotMetadata snapshotMetadata, | ||
List<SnapshotSegment> bucketSnapshotSegments); | ||
|
||
/** | ||
* Get delayed message index bucket snapshot metadata. | ||
* | ||
* @param bucketId the bucketId of snapshot | ||
* @return the future with snapshot expanded metadata | ||
*/ | ||
CompletableFuture<SnapshotMetadata> getBucketSnapshotMetadata(long bucketId); | ||
|
||
/** | ||
* Get a sequence of delayed message index bucket snapshot segments. | ||
* | ||
* @param bucketId the bucketId of snapshot | ||
* @param firstSegmentEntryId entryId of first segment of sequence | ||
* @param lastSegmentEntryId entryId of last segment of sequence | ||
* @return the future with snapshot segment | ||
*/ | ||
CompletableFuture<List<SnapshotSegment>> getBucketSnapshotSegment(long bucketId, long firstSegmentEntryId, | ||
long lastSegmentEntryId); | ||
|
||
/** | ||
* Get total byte length of delayed message index bucket snapshot. | ||
* | ||
* @param bucketId the bucketId of snapshot | ||
* @return the future with byte length of snapshot | ||
*/ | ||
CompletableFuture<Long> getBucketSnapshotLength(long bucketId); | ||
|
||
/** | ||
* Delete delayed message index bucket snapshot by bucketId. | ||
* | ||
* @param bucketId the bucketId of snapshot | ||
*/ | ||
CompletableFuture<Void> deleteBucketSnapshot(long bucketId); | ||
|
||
/** | ||
* Start the bucket snapshot storage service. | ||
*/ | ||
void start() throws Exception; | ||
|
||
/** | ||
* Close the bucket snapshot storage service. | ||
*/ | ||
void close() throws Exception; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
pulsar-broker/src/main/proto/DelayedMessageIndexBucketSnapshotFormat.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
syntax = "proto2"; | ||
|
||
package pulsar.delay; | ||
option java_package = "org.apache.pulsar.broker.delayed.proto"; | ||
option optimize_for = SPEED; | ||
|
||
message DelayedIndex { | ||
required uint64 timestamp = 1; | ||
required int64 ledger_id = 2; | ||
required int64 entry_id = 3; | ||
} | ||
|
||
message SnapshotSegmentMetadata { | ||
map<uint64, bytes> delayed_index_bit_map = 1; | ||
required uint64 max_schedule_timestamp = 2; | ||
} | ||
|
||
message SnapshotSegment { | ||
repeated DelayedIndex indexes = 1; | ||
} | ||
|
||
message SnapshotMetadata { | ||
repeated SnapshotSegmentMetadata metadata_list = 1; | ||
} |