HBASE-15840 WAL.proto compilation broken for cpp
This commit is contained in:
parent
1dff18e33f
commit
9269b8199e
|
@ -3092,7 +3092,7 @@ public final class ProtobufUtil {
|
|||
String name = path.getName();
|
||||
builder.addStoreFile(name);
|
||||
Long size = storeFilesSize.get(name) == null ? (Long) 0L : storeFilesSize.get(name);
|
||||
builder.setStoreFileSize(size);
|
||||
builder.setStoreFileSizeBytes(size);
|
||||
}
|
||||
desc.addStores(builder);
|
||||
}
|
||||
|
|
|
@ -7822,23 +7822,23 @@ public final class WALProtos {
|
|||
com.google.protobuf.ByteString
|
||||
getStoreFileBytes(int index);
|
||||
|
||||
// optional uint64 store_file_size = 4;
|
||||
// optional uint64 store_file_size_bytes = 4;
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
boolean hasStoreFileSize();
|
||||
boolean hasStoreFileSizeBytes();
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
long getStoreFileSize();
|
||||
long getStoreFileSizeBytes();
|
||||
}
|
||||
/**
|
||||
* Protobuf type {@code hbase.pb.StoreDescriptor}
|
||||
|
@ -7911,7 +7911,7 @@ public final class WALProtos {
|
|||
}
|
||||
case 32: {
|
||||
bitField0_ |= 0x00000004;
|
||||
storeFileSize_ = input.readUInt64();
|
||||
storeFileSizeBytes_ = input.readUInt64();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -8074,35 +8074,35 @@ public final class WALProtos {
|
|||
return storeFile_.getByteString(index);
|
||||
}
|
||||
|
||||
// optional uint64 store_file_size = 4;
|
||||
public static final int STORE_FILE_SIZE_FIELD_NUMBER = 4;
|
||||
private long storeFileSize_;
|
||||
// optional uint64 store_file_size_bytes = 4;
|
||||
public static final int STORE_FILE_SIZE_BYTES_FIELD_NUMBER = 4;
|
||||
private long storeFileSizeBytes_;
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasStoreFileSize() {
|
||||
public boolean hasStoreFileSizeBytes() {
|
||||
return ((bitField0_ & 0x00000004) == 0x00000004);
|
||||
}
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public long getStoreFileSize() {
|
||||
return storeFileSize_;
|
||||
public long getStoreFileSizeBytes() {
|
||||
return storeFileSizeBytes_;
|
||||
}
|
||||
|
||||
private void initFields() {
|
||||
familyName_ = com.google.protobuf.ByteString.EMPTY;
|
||||
storeHomeDir_ = "";
|
||||
storeFile_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
||||
storeFileSize_ = 0L;
|
||||
storeFileSizeBytes_ = 0L;
|
||||
}
|
||||
private byte memoizedIsInitialized = -1;
|
||||
public final boolean isInitialized() {
|
||||
|
@ -8134,7 +8134,7 @@ public final class WALProtos {
|
|||
output.writeBytes(3, storeFile_.getByteString(i));
|
||||
}
|
||||
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
||||
output.writeUInt64(4, storeFileSize_);
|
||||
output.writeUInt64(4, storeFileSizeBytes_);
|
||||
}
|
||||
getUnknownFields().writeTo(output);
|
||||
}
|
||||
|
@ -8164,7 +8164,7 @@ public final class WALProtos {
|
|||
}
|
||||
if (((bitField0_ & 0x00000004) == 0x00000004)) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeUInt64Size(4, storeFileSize_);
|
||||
.computeUInt64Size(4, storeFileSizeBytes_);
|
||||
}
|
||||
size += getUnknownFields().getSerializedSize();
|
||||
memoizedSerializedSize = size;
|
||||
|
@ -8201,10 +8201,10 @@ public final class WALProtos {
|
|||
}
|
||||
result = result && getStoreFileList()
|
||||
.equals(other.getStoreFileList());
|
||||
result = result && (hasStoreFileSize() == other.hasStoreFileSize());
|
||||
if (hasStoreFileSize()) {
|
||||
result = result && (getStoreFileSize()
|
||||
== other.getStoreFileSize());
|
||||
result = result && (hasStoreFileSizeBytes() == other.hasStoreFileSizeBytes());
|
||||
if (hasStoreFileSizeBytes()) {
|
||||
result = result && (getStoreFileSizeBytes()
|
||||
== other.getStoreFileSizeBytes());
|
||||
}
|
||||
result = result &&
|
||||
getUnknownFields().equals(other.getUnknownFields());
|
||||
|
@ -8231,9 +8231,9 @@ public final class WALProtos {
|
|||
hash = (37 * hash) + STORE_FILE_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getStoreFileList().hashCode();
|
||||
}
|
||||
if (hasStoreFileSize()) {
|
||||
hash = (37 * hash) + STORE_FILE_SIZE_FIELD_NUMBER;
|
||||
hash = (53 * hash) + hashLong(getStoreFileSize());
|
||||
if (hasStoreFileSizeBytes()) {
|
||||
hash = (37 * hash) + STORE_FILE_SIZE_BYTES_FIELD_NUMBER;
|
||||
hash = (53 * hash) + hashLong(getStoreFileSizeBytes());
|
||||
}
|
||||
hash = (29 * hash) + getUnknownFields().hashCode();
|
||||
memoizedHashCode = hash;
|
||||
|
@ -8350,7 +8350,7 @@ public final class WALProtos {
|
|||
bitField0_ = (bitField0_ & ~0x00000002);
|
||||
storeFile_ = com.google.protobuf.LazyStringArrayList.EMPTY;
|
||||
bitField0_ = (bitField0_ & ~0x00000004);
|
||||
storeFileSize_ = 0L;
|
||||
storeFileSizeBytes_ = 0L;
|
||||
bitField0_ = (bitField0_ & ~0x00000008);
|
||||
return this;
|
||||
}
|
||||
|
@ -8397,7 +8397,7 @@ public final class WALProtos {
|
|||
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
|
||||
to_bitField0_ |= 0x00000004;
|
||||
}
|
||||
result.storeFileSize_ = storeFileSize_;
|
||||
result.storeFileSizeBytes_ = storeFileSizeBytes_;
|
||||
result.bitField0_ = to_bitField0_;
|
||||
onBuilt();
|
||||
return result;
|
||||
|
@ -8432,8 +8432,8 @@ public final class WALProtos {
|
|||
}
|
||||
onChanged();
|
||||
}
|
||||
if (other.hasStoreFileSize()) {
|
||||
setStoreFileSize(other.getStoreFileSize());
|
||||
if (other.hasStoreFileSizeBytes()) {
|
||||
setStoreFileSizeBytes(other.getStoreFileSizeBytes());
|
||||
}
|
||||
this.mergeUnknownFields(other.getUnknownFields());
|
||||
return this;
|
||||
|
@ -8733,51 +8733,51 @@ public final class WALProtos {
|
|||
return this;
|
||||
}
|
||||
|
||||
// optional uint64 store_file_size = 4;
|
||||
private long storeFileSize_ ;
|
||||
// optional uint64 store_file_size_bytes = 4;
|
||||
private long storeFileSizeBytes_ ;
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasStoreFileSize() {
|
||||
public boolean hasStoreFileSizeBytes() {
|
||||
return ((bitField0_ & 0x00000008) == 0x00000008);
|
||||
}
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public long getStoreFileSize() {
|
||||
return storeFileSize_;
|
||||
public long getStoreFileSizeBytes() {
|
||||
return storeFileSizeBytes_;
|
||||
}
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public Builder setStoreFileSize(long value) {
|
||||
public Builder setStoreFileSizeBytes(long value) {
|
||||
bitField0_ |= 0x00000008;
|
||||
storeFileSize_ = value;
|
||||
storeFileSizeBytes_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>optional uint64 store_file_size = 4;</code>
|
||||
* <code>optional uint64 store_file_size_bytes = 4;</code>
|
||||
*
|
||||
* <pre>
|
||||
* size of store file
|
||||
* </pre>
|
||||
*/
|
||||
public Builder clearStoreFileSize() {
|
||||
public Builder clearStoreFileSizeBytes() {
|
||||
bitField0_ = (bitField0_ & ~0x00000008);
|
||||
storeFileSize_ = 0L;
|
||||
storeFileSizeBytes_ = 0L;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
|
@ -11999,25 +11999,25 @@ public final class WALProtos {
|
|||
"ome_dir\030\002 \002(\t\022\024\n\014flush_output\030\003 \003(\t\"S\n\013F" +
|
||||
"lushAction\022\017\n\013START_FLUSH\020\000\022\020\n\014COMMIT_FL" +
|
||||
"USH\020\001\022\017\n\013ABORT_FLUSH\020\002\022\020\n\014CANNOT_FLUSH\020\003",
|
||||
"\"k\n\017StoreDescriptor\022\023\n\013family_name\030\001 \002(\014" +
|
||||
"\"q\n\017StoreDescriptor\022\023\n\013family_name\030\001 \002(\014" +
|
||||
"\022\026\n\016store_home_dir\030\002 \002(\t\022\022\n\nstore_file\030\003" +
|
||||
" \003(\t\022\027\n\017store_file_size\030\004 \001(\004\"\237\001\n\022BulkLo" +
|
||||
"adDescriptor\022\'\n\ntable_name\030\001 \002(\0132\023.hbase" +
|
||||
".pb.TableName\022\033\n\023encoded_region_name\030\002 \002" +
|
||||
"(\014\022)\n\006stores\030\003 \003(\0132\031.hbase.pb.StoreDescr" +
|
||||
"iptor\022\030\n\020bulkload_seq_num\030\004 \002(\003\"\272\002\n\025Regi" +
|
||||
"onEventDescriptor\022=\n\nevent_type\030\001 \002(\0162)." +
|
||||
"hbase.pb.RegionEventDescriptor.EventType" +
|
||||
"\022\022\n\ntable_name\030\002 \002(\014\022\033\n\023encoded_region_n",
|
||||
"ame\030\003 \002(\014\022\033\n\023log_sequence_number\030\004 \001(\004\022)" +
|
||||
"\n\006stores\030\005 \003(\0132\031.hbase.pb.StoreDescripto" +
|
||||
"r\022$\n\006server\030\006 \001(\0132\024.hbase.pb.ServerName\022" +
|
||||
"\023\n\013region_name\030\007 \001(\014\".\n\tEventType\022\017\n\013REG" +
|
||||
"ION_OPEN\020\000\022\020\n\014REGION_CLOSE\020\001\"\014\n\nWALTrail" +
|
||||
"er*F\n\tScopeType\022\033\n\027REPLICATION_SCOPE_LOC" +
|
||||
"AL\020\000\022\034\n\030REPLICATION_SCOPE_GLOBAL\020\001B?\n*or" +
|
||||
"g.apache.hadoop.hbase.protobuf.generated" +
|
||||
"B\tWALProtosH\001\210\001\000\240\001\001"
|
||||
" \003(\t\022\035\n\025store_file_size_bytes\030\004 \001(\004\"\237\001\n\022" +
|
||||
"BulkLoadDescriptor\022\'\n\ntable_name\030\001 \002(\0132\023" +
|
||||
".hbase.pb.TableName\022\033\n\023encoded_region_na" +
|
||||
"me\030\002 \002(\014\022)\n\006stores\030\003 \003(\0132\031.hbase.pb.Stor" +
|
||||
"eDescriptor\022\030\n\020bulkload_seq_num\030\004 \002(\003\"\272\002" +
|
||||
"\n\025RegionEventDescriptor\022=\n\nevent_type\030\001 " +
|
||||
"\002(\0162).hbase.pb.RegionEventDescriptor.Eve" +
|
||||
"ntType\022\022\n\ntable_name\030\002 \002(\014\022\033\n\023encoded_re",
|
||||
"gion_name\030\003 \002(\014\022\033\n\023log_sequence_number\030\004" +
|
||||
" \001(\004\022)\n\006stores\030\005 \003(\0132\031.hbase.pb.StoreDes" +
|
||||
"criptor\022$\n\006server\030\006 \001(\0132\024.hbase.pb.Serve" +
|
||||
"rName\022\023\n\013region_name\030\007 \001(\014\".\n\tEventType\022" +
|
||||
"\017\n\013REGION_OPEN\020\000\022\020\n\014REGION_CLOSE\020\001\"\014\n\nWA" +
|
||||
"LTrailer*F\n\tScopeType\022\033\n\027REPLICATION_SCO" +
|
||||
"PE_LOCAL\020\000\022\034\n\030REPLICATION_SCOPE_GLOBAL\020\001" +
|
||||
"B?\n*org.apache.hadoop.hbase.protobuf.gen" +
|
||||
"eratedB\tWALProtosH\001\210\001\000\240\001\001"
|
||||
};
|
||||
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
||||
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
||||
|
@ -12065,7 +12065,7 @@ public final class WALProtos {
|
|||
internal_static_hbase_pb_StoreDescriptor_fieldAccessorTable = new
|
||||
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
||||
internal_static_hbase_pb_StoreDescriptor_descriptor,
|
||||
new java.lang.String[] { "FamilyName", "StoreHomeDir", "StoreFile", "StoreFileSize", });
|
||||
new java.lang.String[] { "FamilyName", "StoreHomeDir", "StoreFile", "StoreFileSizeBytes", });
|
||||
internal_static_hbase_pb_BulkLoadDescriptor_descriptor =
|
||||
getDescriptor().getMessageTypes().get(6);
|
||||
internal_static_hbase_pb_BulkLoadDescriptor_fieldAccessorTable = new
|
||||
|
|
|
@ -132,7 +132,7 @@ message StoreDescriptor {
|
|||
required bytes family_name = 1;
|
||||
required string store_home_dir = 2; //relative to region dir
|
||||
repeated string store_file = 3; // relative to store dir
|
||||
optional uint64 store_file_size = 4; // size of store file
|
||||
optional uint64 store_file_size_bytes = 4; // size of store file
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -756,7 +756,7 @@ public class ReplicationSource extends Thread
|
|||
List<StoreDescriptor> stores = bld.getStoresList();
|
||||
int totalStores = stores.size();
|
||||
for (int j = 0; j < totalStores; j++) {
|
||||
totalStoreFilesSize += stores.get(j).getStoreFileSize();
|
||||
totalStoreFilesSize += stores.get(j).getStoreFileSizeBytes();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
LOG.error("Failed to deserialize bulk load entry from wal edit. "
|
||||
|
|
Loading…
Reference in New Issue