forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PIP 76: Streaming Offload(Part I) (apache#9096)
This PR contains the new interface and implementation of the offloader in the below PIP Unit test is still in progress - [x] StreamingDataBlockHeaderImpl - [x] StreamingBlobStoreBackedReadHandleImpl - [x] BufferedOffloadStream - [x] BlobStoreManagedLedgerOffloader - [x] StreamingOffloadIndexBlock PIP 76: https://github.com/apache/pulsar/wiki/PIP-76:-Streaming-Offload
- Loading branch information
Showing
36 changed files
with
3,351 additions
and
193 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
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
61 changes: 61 additions & 0 deletions
61
managed-ledger/src/main/java/org/apache/bookkeeper/mledger/impl/OffloadSegmentInfoImpl.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,61 @@ | ||
/** | ||
* 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.bookkeeper.mledger.impl; | ||
|
||
|
||
import java.util.Map; | ||
import java.util.UUID; | ||
import lombok.ToString; | ||
import org.apache.bookkeeper.mledger.LedgerOffloader; | ||
|
||
@ToString | ||
public class OffloadSegmentInfoImpl { | ||
public OffloadSegmentInfoImpl(UUID uuid, long beginLedgerId, long beginEntryId, String driverName, | ||
Map<String, String> driverMetadata) { | ||
this.uuid = uuid; | ||
this.beginLedgerId = beginLedgerId; | ||
this.beginEntryId = beginEntryId; | ||
this.driverName = driverName; | ||
this.driverMetadata = driverMetadata; | ||
} | ||
|
||
|
||
public final UUID uuid; | ||
public final long beginLedgerId; | ||
public final long beginEntryId; | ||
public final String driverName; | ||
volatile private long endLedgerId; | ||
volatile private long endEntryId; | ||
volatile boolean closed = false; | ||
public final Map<String, String> driverMetadata; | ||
|
||
public boolean isClosed() { | ||
return closed; | ||
} | ||
|
||
public void closeSegment(long endLedger, long endEntry) { | ||
this.endLedgerId = endLedger; | ||
this.endEntryId = endEntry; | ||
this.closed = true; | ||
} | ||
|
||
public LedgerOffloader.OffloadResult result() { | ||
return new LedgerOffloader.OffloadResult(beginLedgerId, beginEntryId, endLedgerId, endEntryId); | ||
} | ||
} |
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
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
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
Oops, something went wrong.