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.
[tiered storage] Provide LedgerOffloaderFactory for creating offloade…
…rs (apache#2392) * [tiered storage] Provide LedgerOffloaderFactory for creating offloaders ### Motivation In order to use NAR for packaging offloaders, we need a factory interface for creating offloaders. ### Changes - Provide a ledger offloader factory interface for creating offloaders. - Move implemention specific settings to implementation package to be respecting to offloader factory interface * remove unneeded change
- Loading branch information
Showing
6 changed files
with
150 additions
and
143 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
57 changes: 57 additions & 0 deletions
57
managed-ledger/src/main/java/org/apache/bookkeeper/mledger/LedgerOffloaderFactory.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,57 @@ | ||
/** | ||
* 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; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
import java.util.Properties; | ||
import org.apache.bookkeeper.common.annotation.InterfaceAudience.LimitedPrivate; | ||
import org.apache.bookkeeper.common.annotation.InterfaceStability.Evolving; | ||
import org.apache.bookkeeper.common.util.OrderedScheduler; | ||
|
||
/** | ||
* Factory to create {@link LedgerOffloader} to offload ledgers into long-term storage. | ||
*/ | ||
@LimitedPrivate | ||
@Evolving | ||
public interface LedgerOffloaderFactory<T extends LedgerOffloader> { | ||
|
||
/** | ||
* Check whether the provided driver <tt>driverName</tt> is supported. | ||
* | ||
* @param driverName offloader driver name | ||
* @return true if the driver is supported, otherwise false. | ||
*/ | ||
boolean isDriverSupported(String driverName); | ||
|
||
/** | ||
* Create a ledger offloader with the provided configuration, user-metadata and scheduler. | ||
* | ||
* @param properties service configuration | ||
* @param userMetadata user metadata | ||
* @param scheduler scheduler | ||
* @return the offloader instance | ||
* @throws IOException when fail to create an offloader | ||
*/ | ||
T create(Properties properties, | ||
Map<String, String> userMetadata, | ||
OrderedScheduler scheduler) | ||
throws IOException; | ||
|
||
} |
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
51 changes: 51 additions & 0 deletions
51
.../main/java/org/apache/bookkeeper/mledger/offload/jcloud/JCloudLedgerOffloaderFactory.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,51 @@ | ||
/** | ||
* 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.offload.jcloud; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
import java.util.Properties; | ||
import org.apache.bookkeeper.common.util.OrderedScheduler; | ||
import org.apache.bookkeeper.mledger.LedgerOffloaderFactory; | ||
import org.apache.bookkeeper.mledger.offload.jcloud.impl.BlobStoreManagedLedgerOffloader; | ||
|
||
/** | ||
* A jcloud based offloader factory. | ||
*/ | ||
public class JCloudLedgerOffloaderFactory implements LedgerOffloaderFactory<BlobStoreManagedLedgerOffloader> { | ||
|
||
public static JCloudLedgerOffloaderFactory of() { | ||
return INSTANCE; | ||
} | ||
|
||
private static final JCloudLedgerOffloaderFactory INSTANCE = new JCloudLedgerOffloaderFactory(); | ||
|
||
@Override | ||
public boolean isDriverSupported(String driverName) { | ||
return BlobStoreManagedLedgerOffloader.driverSupported(driverName); | ||
} | ||
|
||
@Override | ||
public BlobStoreManagedLedgerOffloader create(Properties properties, | ||
Map<String, String> userMetadata, | ||
OrderedScheduler scheduler) throws IOException { | ||
TieredStorageConfigurationData data = TieredStorageConfigurationData.create(properties); | ||
return BlobStoreManagedLedgerOffloader.create(data, userMetadata, scheduler); | ||
} | ||
} |
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