lukecwik commented on code in PR #24093: URL: https://github.com/apache/beam/pull/24093#discussion_r1020413908
########## sdks/java/core/src/main/java/org/apache/beam/sdk/coders/ZstdCoder.java: ########## @@ -0,0 +1,110 @@ +/* + * 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.beam.sdk.coders; + +import com.github.luben.zstd.Zstd; +import com.github.luben.zstd.ZstdCompressCtx; +import com.github.luben.zstd.ZstdDecompressCtx; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.List; +import javax.annotation.Nullable; +import org.apache.beam.sdk.util.CoderUtils; +import org.apache.beam.vendor.guava.v26_0_jre.com.google.common.collect.ImmutableList; + +/** + * Wraps an existing coder with Zstandard compression. It makes sense to use this coder when it's + * likely that the encoded value is quite large and compressible or when a dictionary is available + * to improve compression performance. + */ +public class ZstdCoder<T> extends StructuredCoder<T> { Review Comment: StructuredCoder is the wrong base class since: ``` A StructuredCoder should be defined purely in terms of its component coders, and contain no additional configuration. ``` Please use `Coder` since the dictionary and compression level will impact the encoded representation -- 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]
