[infinispan-issues] [JBoss JIRA] (ISPN-2546) StateChunk with isLastChunk=true not sent when all entries are sent ahead
Tristan Tarrant (JIRA)
jira-events at lists.jboss.org
Fri Nov 30 04:35:22 EST 2012
[ https://issues.jboss.org/browse/ISPN-2546?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Tristan Tarrant updated ISPN-2546:
----------------------------------
Fix Version/s: 5.2.0.Beta5
(was: 5.2.0.CR1)
> StateChunk with isLastChunk=true not sent when all entries are sent ahead
> -------------------------------------------------------------------------
>
> Key: ISPN-2546
> URL: https://issues.jboss.org/browse/ISPN-2546
> Project: Infinispan
> Issue Type: Bug
> Components: State transfer
> Affects Versions: 5.2.0.Beta4
> Reporter: Radim Vansa
> Assignee: Adrian Nistor
> Priority: Blocker
> Fix For: 5.2.0.Beta5
>
>
> During a state transfer the entries are sent batched to chunks. However, if all entries are sent in the non-last chunk, the list in entriesBySegment.get(segmentId) is empty. The code for sending last chunks is following:
> {code:title=OutboundTransferTask.sendEntries(...)}
> ...
> if (isLast) {
> for (int segmentId : segments) {
> List<InternalCacheEntry> entries = entriesBySegment.get(segmentId);
> if (entries == null) {
> chunks.add(new StateChunk(segmentId, InfinispanCollections.<InternalCacheEntry>emptyList(), true));
> }
> }
> }
> ...
> {code}
> See that the check is {{entries == null}} but not {{entries.isEmpty()}}.
> This causes to leave some segments unfinished, never finishing the state transfer.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the infinispan-issues
mailing list