dev.responsive.kafka.internal.db.RemoteTableSpecFactory Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2023 Responsive Computing, Inc.
*
* Licensed 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 dev.responsive.kafka.internal.db;
import dev.responsive.kafka.api.stores.ResponsiveKeyValueParams;
import dev.responsive.kafka.api.stores.ResponsiveWindowParams;
import dev.responsive.kafka.internal.db.partitioning.Segmenter.SegmentPartition;
import dev.responsive.kafka.internal.db.partitioning.TablePartitioner;
import dev.responsive.kafka.internal.db.spec.BaseTableSpec;
import dev.responsive.kafka.internal.db.spec.GlobalTableSpec;
import dev.responsive.kafka.internal.db.spec.RemoteTableSpec;
import dev.responsive.kafka.internal.db.spec.TimeWindowedCompactionTableSpec;
import dev.responsive.kafka.internal.db.spec.TtlTableSpec;
import dev.responsive.kafka.internal.stores.SchemaTypes;
import dev.responsive.kafka.internal.utils.WindowedKey;
import org.apache.kafka.common.utils.Bytes;
/**
* Translates {@link dev.responsive.kafka.api.stores.ResponsiveKeyValueParams}
* and {@link dev.responsive.kafka.api.stores.ResponsiveWindowParams} into
* corresponding {@link RemoteTableSpec} instances.
*
* Do not move functionality from this class into the above classes since
* those are public classes and it's better to keep this functionality
* internal.
*/
public class RemoteTableSpecFactory {
public static RemoteTableSpec globalSpec(
final ResponsiveKeyValueParams params,
final TablePartitioner partitioner
) {
return new GlobalTableSpec<>(new BaseTableSpec<>(params.name().tableName(), partitioner));
}
public static RemoteTableSpec fromKVParams(
final ResponsiveKeyValueParams params,
final TablePartitioner partitioner
) {
RemoteTableSpec spec =
new BaseTableSpec<>(params.name().tableName(), partitioner);
if (params.timeToLive().isPresent()) {
spec = new TtlTableSpec<>(spec, params.timeToLive().get());
}
if (params.schemaType() == SchemaTypes.KVSchema.FACT) {
spec = new TimeWindowedCompactionTableSpec<>(spec);
}
return spec;
}
public static RemoteTableSpec fromWindowParams(
final ResponsiveWindowParams params,
final TablePartitioner partitioner
) {
return new BaseTableSpec<>(params.name().tableName(), partitioner);
}
}