public static interface ImportSstpb.DownloadResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
int |
getCrc32()
The CRC32 checksum of the rewritten SST file (implementation can return
zero, indicating the CRC32 was not calculated).
|
ImportSstpb.Error |
getError()
.import_sstpb.Error error = 3; |
ImportSstpb.ErrorOrBuilder |
getErrorOrBuilder()
.import_sstpb.Error error = 3; |
boolean |
getIsEmpty()
Whether the SST is empty.
|
long |
getLength()
The actual length of the rewritten SST file.
|
ImportSstpb.Range |
getRange()
The actual key range (after rewrite) of the downloaded SST.
|
ImportSstpb.RangeOrBuilder |
getRangeOrBuilder()
The actual key range (after rewrite) of the downloaded SST.
|
boolean |
hasError()
.import_sstpb.Error error = 3; |
boolean |
hasRange()
The actual key range (after rewrite) of the downloaded SST.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasRange()
The actual key range (after rewrite) of the downloaded SST. The range is inclusive in both ends.
.import_sstpb.Range range = 1 [(.gogoproto.nullable) = false];
ImportSstpb.Range getRange()
The actual key range (after rewrite) of the downloaded SST. The range is inclusive in both ends.
.import_sstpb.Range range = 1 [(.gogoproto.nullable) = false];
ImportSstpb.RangeOrBuilder getRangeOrBuilder()
The actual key range (after rewrite) of the downloaded SST. The range is inclusive in both ends.
.import_sstpb.Range range = 1 [(.gogoproto.nullable) = false];
boolean getIsEmpty()
Whether the SST is empty. An empty SST is prohibited in TiKV, do not ingest if this field is true. (Deprecated, should be replaced by checking `length == 0` in the future)
bool is_empty = 2;
boolean hasError()
.import_sstpb.Error error = 3;
ImportSstpb.Error getError()
.import_sstpb.Error error = 3;
ImportSstpb.ErrorOrBuilder getErrorOrBuilder()
.import_sstpb.Error error = 3;
int getCrc32()
The CRC32 checksum of the rewritten SST file (implementation can return zero, indicating the CRC32 was not calculated).
uint32 crc32 = 4;
long getLength()
The actual length of the rewritten SST file.
uint64 length = 5;
Copyright © 2024 PingCAP. All rights reserved.