Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1757] feat(server): Add block number check on getting shuffle result #1758

Merged
merged 9 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ public class ShuffleTaskInfo {

private final AtomicReference<ShuffleSpecification> specification;

private final Map<Integer, Map<Integer, AtomicLong>> partitionBlockCounters;

public ShuffleTaskInfo(String appId) {
this.appId = appId;
this.currentTimes = System.currentTimeMillis();
Expand All @@ -75,6 +77,7 @@ public ShuffleTaskInfo(String appId) {
this.hugePartitionTags = JavaUtils.newConcurrentMap();
this.existHugePartition = new AtomicBoolean(false);
this.specification = new AtomicReference<>();
this.partitionBlockCounters = JavaUtils.newConcurrentMap();
}

public Long getCurrentTimes() {
Expand Down Expand Up @@ -198,6 +201,25 @@ public Set<Integer> getShuffleIds() {
return partitionDataSizes.keySet();
}

public void incrBlockNumber(int shuffleId, int partitionId, int delta) {
this.partitionBlockCounters
.computeIfAbsent(shuffleId, x -> JavaUtils.newConcurrentMap())
.computeIfAbsent(partitionId, x -> new AtomicLong())
.addAndGet(delta);
}

public long getBlockNumber(int shuffleId, int partitionId) {
Map<Integer, AtomicLong> partitionBlockCounters = this.partitionBlockCounters.get(shuffleId);
if (partitionBlockCounters == null) {
zuston marked this conversation as resolved.
Show resolved Hide resolved
return 0L;
}
AtomicLong counter = partitionBlockCounters.get(partitionId);
if (counter == null) {
return 0L;
}
return counter.get();
}

@Override
public String toString() {
return "ShuffleTaskInfo{"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -413,8 +413,14 @@ public void addFinishedBlockIds(
+ " bitmaps!");
}

ShuffleTaskInfo taskInfo = getShuffleTaskInfo(appId);
if (taskInfo == null) {
throw new InvalidRequestException(
"ShuffleTaskInfo is not found that should not happen for appId: " + appId);
}
for (Map.Entry<Integer, long[]> entry : partitionToBlockIds.entrySet()) {
Integer partitionId = entry.getKey();
taskInfo.incrBlockNumber(shuffleId, partitionId, entry.getValue().length);
zuston marked this conversation as resolved.
Show resolved Hide resolved
Roaring64NavigableMap bitmap = blockIds[partitionId % bitmapNum];
synchronized (bitmap) {
for (long blockId : entry.getValue()) {
Expand Down Expand Up @@ -553,13 +559,18 @@ public byte[] getFinishedBlockIds(
}
Map<Integer, Roaring64NavigableMap[]> shuffleIdToPartitions = partitionsToBlockIds.get(appId);
if (shuffleIdToPartitions == null) {
LOG.warn("Empty blockIds for app: {}. This should not happen", appId);
return null;
}

Roaring64NavigableMap[] blockIds = shuffleIdToPartitions.get(shuffleId);
if (blockIds == null) {
LOG.warn("Empty blockIds for app: {}, shuffleId: {}", appId, shuffleId);
return new byte[] {};
}

ShuffleTaskInfo taskInfo = getShuffleTaskInfo(appId);
long expectedBlockNumber = 0;
Map<Integer, Set<Integer>> bitmapIndexToPartitions = Maps.newHashMap();
for (int partitionId : partitions) {
int bitmapIndex = partitionId % blockIds.length;
Expand All @@ -569,6 +580,7 @@ public byte[] getFinishedBlockIds(
HashSet<Integer> newHashSet = Sets.newHashSet(partitionId);
bitmapIndexToPartitions.put(bitmapIndex, newHashSet);
}
expectedBlockNumber += taskInfo.getBlockNumber(shuffleId, partitionId);
}

Roaring64NavigableMap res = Roaring64NavigableMap.bitmapOf();
Expand All @@ -577,6 +589,17 @@ public byte[] getFinishedBlockIds(
Roaring64NavigableMap bitmap = blockIds[entry.getKey()];
getBlockIdsByPartitionId(requestPartitions, bitmap, res, blockIdLayout);
}

if (res.getLongCardinality() != expectedBlockNumber) {
throw new RssException(
"Inconsistent block number for partitions: "
+ partitions
+ ". Excepted: "
+ expectedBlockNumber
+ ", actual: "
+ res.getLongCardinality());
}

return RssUtils.serializeBitMap(res);
}

Expand Down
Loading