count = in.readInt();
this.intransition = new TreeMap<String, RegionState>();
for (int i = 0; i < count; i++) {
String key = in.readUTF();
RegionState regionState = new RegionState();
regionState.readFields(in);
this.intransition.put(key, regionState);
}
this.clusterId = in.readUTF();
int masterCoprocessorsLength = in.readInt();
masterCoprocessors = new String[masterCoprocessorsLength];