org.apache.beam.sdk.extensions.smb.BucketShardId Maven / Gradle / Ivy
Show all versions of scio-smb_2.13 Show documentation
/*
* Copyright 2019 Spotify AB.
*
* 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 org.apache.beam.sdk.extensions.smb;
import com.google.auto.value.AutoValue;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import org.apache.beam.sdk.coders.AtomicCoder;
import org.apache.beam.sdk.coders.CoderException;
import org.apache.beam.sdk.coders.VarIntCoder;
/**
* Abstracts bucket and shard id in {@link SortedBucketIO}.
*
* Null keys
*
* Null keys are assigned a bucket ID of -1, separate from the rest of the bucketed data. Note
* that this does not necessarily reflect the final filename: {@link SMBFilenamePolicy} can
* special-case this bucket ID.
*/
@AutoValue
public abstract class BucketShardId {
private static final int NULL_KEYS_BUCKET_ID = -1;
public abstract int getBucketId();
public abstract int getShardId();
public static BucketShardId of(int bucketId, int shardId) {
return new AutoValue_BucketShardId(bucketId, shardId);
}
public static BucketShardId ofNullKey() {
return new AutoValue_BucketShardId(NULL_KEYS_BUCKET_ID, 0);
}
public boolean isNullKeyBucket() {
return getBucketId() == NULL_KEYS_BUCKET_ID;
}
/** {@link org.apache.beam.sdk.coders.Coder} for {@link BucketShardId}. */
public static class BucketShardIdCoder extends AtomicCoder {
public static BucketShardIdCoder of() {
return INSTANCE;
}
private static final BucketShardIdCoder INSTANCE = new BucketShardIdCoder();
private static final VarIntCoder intCoder = VarIntCoder.of();
private BucketShardIdCoder() {}
@Override
public void encode(BucketShardId value, OutputStream outStream)
throws CoderException, IOException {
intCoder.encode(value.getBucketId(), outStream);
intCoder.encode(value.getShardId(), outStream);
}
@Override
public BucketShardId decode(InputStream inStream) throws CoderException, IOException {
return BucketShardId.of(intCoder.decode(inStream), intCoder.decode(inStream));
}
}
}