dimas-b commented on code in PR #4659: URL: https://github.com/apache/polaris/pull/4659#discussion_r3406657539
########## polaris-core/src/main/java/org/apache/polaris/core/persistence/IdempotencyStoreFactory.java: ########## @@ -0,0 +1,39 @@ +/* + * 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.polaris.core.persistence; + +import com.google.common.annotations.Beta; +import org.apache.polaris.core.context.RealmContext; + +/** + * Factory for per-realm {@link IdempotencyStore} instances. + * + * <p>This SPI is intentionally kept separate from {@link MetaStoreManagerFactory}: handler-level + * idempotency persistence is conceptually independent from the catalog metastore, and a deployment + * may want to back it with a different store (e.g. a dedicated PostgreSQL instance) than the + * primary metastore. Backends register implementations with {@link + * io.smallrye.common.annotation.Identifier} matching the {@code polaris.idempotency.type} + * configuration value. + * + * <p>Returned instances must be safe to share across threads. + */ +@Beta +public interface IdempotencyStoreFactory { + + /** Returns the {@link IdempotencyStore} to use for the given realm. */ + IdempotencyStore getOrCreateIdempotencyStore(RealmContext realmContext); Review Comment: What SPI do you mean as being removed? This PR adds `IdempotencyStoreFactory` so if we remove it from the PR it will have to be cleaned up later :thinking: ########## polaris-core/src/main/java/org/apache/polaris/core/persistence/IdempotencyStoreFactory.java: ########## @@ -0,0 +1,39 @@ +/* + * 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.polaris.core.persistence; + +import com.google.common.annotations.Beta; +import org.apache.polaris.core.context.RealmContext; + +/** + * Factory for per-realm {@link IdempotencyStore} instances. + * + * <p>This SPI is intentionally kept separate from {@link MetaStoreManagerFactory}: handler-level + * idempotency persistence is conceptually independent from the catalog metastore, and a deployment + * may want to back it with a different store (e.g. a dedicated PostgreSQL instance) than the + * primary metastore. Backends register implementations with {@link + * io.smallrye.common.annotation.Identifier} matching the {@code polaris.idempotency.type} + * configuration value. + * + * <p>Returned instances must be safe to share across threads. + */ +@Beta +public interface IdempotencyStoreFactory { + + /** Returns the {@link IdempotencyStore} to use for the given realm. */ + IdempotencyStore getOrCreateIdempotencyStore(RealmContext realmContext); Review Comment: What core SPI do you mean as being removed? This PR adds `IdempotencyStoreFactory` so if we remove it from the PR it will have to be cleaned up later :thinking: -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
