All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.responsive.kafka.internal.db.WindowedKeySpec 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 static org.apache.kafka.streams.state.StateSerdes.TIMESTAMP_SIZE;

import dev.responsive.kafka.internal.utils.WindowedKey;
import java.nio.ByteBuffer;
import java.util.function.Predicate;
import org.apache.kafka.clients.consumer.ConsumerRecord;

public class WindowedKeySpec implements KeySpec {

  private final Predicate withinRetention;

  public WindowedKeySpec(final Predicate withinRetention) {
    this.withinRetention = withinRetention;
  }

  @Override
  public int sizeInBytes(final WindowedKey key) {
    return key.key.get().length + Long.BYTES;
  }

  @Override
  public WindowedKey keyFromRecord(final ConsumerRecord record) {
    final byte[] key = record.key();

    // the WindowKeySchema in Streams always encodes the changelog record keys by
    // concatenating the data key + windowStartTime + seqnum
    // the seqnum is just an arbitrary integer that unfortunately can't be avoided,
    // so we just need to make sure to stop reading 4 bytes from the end
    final int dataKeySize = key.length - TIMESTAMP_SIZE - 4;
    final byte[] dataKeyBytes = new byte[dataKeySize];
    System.arraycopy(key, 0, dataKeyBytes, 0, dataKeyBytes.length);

    final long windowStartTs = ByteBuffer.wrap(key).getLong(dataKeySize);

    return new WindowedKey(dataKeyBytes, windowStartTs);
  }

  @Override
  public boolean retain(final WindowedKey key) {
    return withinRetention.test(key);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy