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

tech.ytsaurus.client.PreparedModifyRowRequest Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client;

import java.util.List;

import tech.ytsaurus.client.rpc.Compression;
import tech.ytsaurus.core.tables.TableSchema;
import tech.ytsaurus.lang.NonNullApi;
import tech.ytsaurus.lang.NonNullFields;
import tech.ytsaurus.rpcproxy.ERowModificationType;


/**
 * Immutable row modification request that contains serialized and compressed rowset
 * 

* It is useful when same request is performed multiple times (e.g. to different clusters) * and saves CPU resources used on serialization and compressing. *

* It should be built using {@link tech.ytsaurus.client.request.PreparableModifyRowsRequest} method *

* Compression used in this request have to match with compression of the client otherwise exception will be thrown * when trying to execute this request. */ @NonNullApi @NonNullFields public class PreparedModifyRowRequest extends tech.ytsaurus.client.request.PreparedModifyRowRequest.BuilderBase { PreparedModifyRowRequest( String path, TableSchema schema, List rowModificationTypes, Compression codecId, List compressedAttachments ) { setPath(path).setSchema(schema).setRowModificationTypes(rowModificationTypes) .setCodecId(codecId).setCompressedAttachments(compressedAttachments); } @Override protected PreparedModifyRowRequest self() { return this; } @Override public tech.ytsaurus.client.request.PreparedModifyRowRequest build() { return new tech.ytsaurus.client.request.PreparedModifyRowRequest(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy