shishkovilja commented on code in PR #12508:
URL: https://github.com/apache/ignite/pull/12508#discussion_r2538653160
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsFullMessage.java:
##########
@@ -371,17 +397,31 @@ public Map<Integer, PartitionSizesMap> partitionSizes() {
/**
* @return Errors map.
*/
- @Nullable Map<UUID, Exception> getErrorsMap() {
+ @Nullable Map<UUID, Throwable> errorsMap() {
return errs;
}
/**
* @param errs Errors map.
*/
- void setErrorsMap(Map<UUID, Exception> errs) {
+ void errorsMap(Map<UUID, Throwable> errs) {
Review Comment:
Unnecessary change of method name.
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/distributed/dht/preloader/GridDhtPartitionsFullMessage.java:
##########
@@ -62,58 +58,73 @@ public class GridDhtPartitionsFullMessage extends
GridDhtPartitionsAbstractMessa
/** grpId -> FullMap */
@GridToStringInclude
- @GridDirectTransient
private Map<Integer, GridDhtPartitionFullMap> parts;
- /** */
- @GridDirectMap(keyType = Integer.class, valueType = Integer.class)
- private Map<Integer, Integer> dupPartsData;
+ /**
+ * Serializer local partitions.
Review Comment:
```suggestion
* Serialized local partitions.
```
--
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]