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

Fix partitioned session window bug during checkpoint restore #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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 @@ -249,15 +249,26 @@ public override int CurrentlyBufferedInputCount

protected override void UpdatePointers()
{
// This method restores the member 'this.orderedKeysDictionary'
// The dictionary is not serializable because of the LinkedList value type,
// and hence it does not have [DataMember] attribute
int iter = FastDictionary<TKey, long>.IteratorStart;
var temp = new List<Tuple<TKey, long, TPartitionKey>>();
while (this.lastDataTimeDictionary.Iterate(ref iter))
{
var partitionKey = this.getPartitionKey(this.lastDataTimeDictionary.entries[iter].key);

if (this.stateDictionary.entries[iter].value.Any())
{
temp.Add(Tuple.Create(
this.lastDataTimeDictionary.entries[iter].key,
Math.Min(this.lastDataTimeDictionary.entries[iter].value + this.sessionTimeout, this.windowEndTimeDictionary.entries[iter].value), this.getPartitionKey(this.lastDataTimeDictionary.entries[iter].key)));
Math.Min(this.lastDataTimeDictionary.entries[iter].value + this.sessionTimeout, this.windowEndTimeDictionary.entries[iter].value),
partitionKey));
}
else if (!this.orderedKeysDictionary.ContainsKey(partitionKey))
{
// We still need to restore the empty list - as that was the case just before checkpoint
this.orderedKeysDictionary.Add(partitionKey, new LinkedList<TKey>());
}
Copy link
Contributor

@peterfreiling peterfreiling Oct 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add comments to explain why this is necessary - e.g., orderedKeysDictionary is not included in checkpoint, so needs to be restored, and every entry in the other collections also needs to be present in orderedKeysDictionary upon restore as that assumption is made throughout this class, etc. #Closed

}
foreach (var item in temp.OrderBy(o => o.Item2))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
// *********************************************************************
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License
// *********************************************************************
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reactive.Linq;
using System.Reactive.Subjects;
using Microsoft.StreamProcessing;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace SimpleTesting
{
/* This testcase verifies fix for bug where PartitionedSessionWindowPipe is not restored (from checkpoint) properly causing an exception
*
* Cause of the Bug:
* The PartitionedSessionWindowPipe keeps multiple dictionary states.
* One of the dictionary does not have a [DataMember] attribute, Because the value type is a LinkedList which does not support serialization.
* On checkpoint and then Restore, this dictionary is re-created using other data members in UpdatePointers callback.
* During this, the scenario of empty LinkedList value is missed and not restored.
* When next data event appears for the partition, the partitionKey is indexed on the dictionary resulting in KeyNotFoundException
*/
[TestClass]
public class PartitionedStreamCheckpointTests : TestWithConfigSettingsWithoutMemoryLeakDetection
{
[TestMethod, TestCategory("Gated")]
public void CheckpointPartitionedSessionWindow()
{
Config.DataBatchSize = 1;

var data = new PartitionedStreamEvent<int, double>[]
{
PartitionedStreamEvent.CreatePoint(0, 5, 1.0),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 8),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 11),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 14),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 17),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 21),
PartitionedStreamEvent.CreatePoint(0, 24, 1.0),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 100),
};

var expected = new PartitionedStreamEvent<int, double>[]
{
PartitionedStreamEvent.CreateStart(0, 5, 1.0),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 8),
PartitionedStreamEvent.CreateEnd(0, 9, 5, 1.0),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 11),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 14),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 17),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 21),
PartitionedStreamEvent.CreateStart(0, 24, 1.0),
PartitionedStreamEvent.CreateEnd(0, 28, 24, 1.0),
PartitionedStreamEvent.CreatePunctuation<int, double>(0, 100),
};

// This index represents the point when the checkpoint restore needs to happen to trigger the bug.
const int checkpointIndex = 6;

var subject = new Subject<PartitionedStreamEvent<int, double>>();
var output = new List<PartitionedStreamEvent<int, double>>();
var process = CreateQueryContainerForPartitionedStream(subject, output);

for (int i = 0; i < data.Length; i++)
{
if (i == checkpointIndex)
{
using (var ms = new MemoryStream())
{
process.Checkpoint(ms);
ms.Seek(0, SeekOrigin.Begin);

subject = new Subject<PartitionedStreamEvent<int, double>>();
process = CreateQueryContainerForPartitionedStream(subject, output, ms);
}
}

subject.OnNext(data[i]);
}

Assert.IsTrue(expected.SequenceEqual(output));
}

private Process CreateQueryContainerForPartitionedStream(
Subject<PartitionedStreamEvent<int, double>> subject,
List<PartitionedStreamEvent<int, double>> output,
Stream stream = null)
{
var qc = new QueryContainer();
var input = qc.RegisterInput(subject);
var streamableOutput = input.SessionTimeoutWindow(4, 5).Sum(o => o);
var egress = qc.RegisterOutput(streamableOutput).ForEachAsync(o => output.Add(o));
var process = qc.Restore(stream);

return process;
}
}
}