-
Notifications
You must be signed in to change notification settings - Fork 647
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify querying for timeouts, and introduce cleaning-up abilities to guarantee we don't skip any timeouts
- Loading branch information
1 parent
46a05f6
commit 40beb96
Showing
3 changed files
with
333 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
260 changes: 260 additions & 0 deletions
260
src/NServiceBus.Core.Tests/Timeout/RavenTimeoutPersisterTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,260 @@ | ||
namespace NServiceBus.Core.Tests.Timeout | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Threading; | ||
using NServiceBus.Persistence.Raven; | ||
using NServiceBus.Persistence.Raven.TimeoutPersister; | ||
using NServiceBus.Timeout.Core; | ||
using NUnit.Framework; | ||
using Raven.Client; | ||
using Raven.Client.Document; | ||
|
||
[TestFixture] | ||
public class RavenTimeoutPersisterTests | ||
{ | ||
[TestCase, Repeat(200)] | ||
public void Should_not_skip_timeouts() | ||
{ | ||
var db = Guid.NewGuid().ToString(); | ||
documentStore = new DocumentStore | ||
{ | ||
Url = "http://localhost:8080", | ||
DefaultDatabase = db, | ||
}.Initialize(); | ||
persister = new RavenTimeoutPersistence(new StoreAccessor(documentStore)) | ||
{ | ||
TriggerCleanupEvery = TimeSpan.FromHours(1), // Make sure cleanup doesn't run automatically | ||
}; | ||
|
||
var startSlice = DateTime.UtcNow.AddYears(-10); | ||
// avoid cleanup from running during the test by making it register as being run | ||
Assert.AreEqual(0, persister.GetCleanupChunk(startSlice).Count()); | ||
|
||
var expected = new List<Tuple<string, DateTime>>(); | ||
var lastExpectedTimeout = DateTime.UtcNow; | ||
var finishedAdding = false; | ||
|
||
new Thread(() => | ||
{ | ||
var sagaId = Guid.NewGuid(); | ||
for (var i = 0; i < 10000; i++) | ||
{ | ||
var td = new TimeoutData | ||
{ | ||
SagaId = sagaId, | ||
Destination = new Address("queue", "machine"), | ||
Time = DateTime.UtcNow.AddSeconds(RandomProvider.GetThreadRandom().Next(5, 20)), | ||
OwningTimeoutManager = string.Empty, | ||
}; | ||
persister.Add(td); | ||
expected.Add(new Tuple<string, DateTime>(td.Id, td.Time)); | ||
lastExpectedTimeout = (td.Time > lastExpectedTimeout) ? td.Time : lastExpectedTimeout; | ||
} | ||
finishedAdding = true; | ||
Console.WriteLine("*** Finished adding ***"); | ||
}).Start(); | ||
|
||
// Mimic the behavior of the TimeoutPersister coordinator | ||
var found = 0; | ||
TimeoutData tempTd; | ||
while (!finishedAdding || startSlice < lastExpectedTimeout) | ||
{ | ||
DateTime nextRetrieval; | ||
var timeoutDatas = persister.GetNextChunk(startSlice, out nextRetrieval); | ||
foreach (var timeoutData in timeoutDatas) | ||
{ | ||
if (startSlice < timeoutData.Item2) | ||
{ | ||
startSlice = timeoutData.Item2; | ||
} | ||
|
||
Assert.IsTrue(persister.TryRemove(timeoutData.Item1, out tempTd)); | ||
found++; | ||
} | ||
} | ||
|
||
WaitForIndexing(documentStore); | ||
|
||
// If the persister reports stale results have been seen at one point during its normal operation, | ||
// we need to perform manual cleaup. | ||
while (true) | ||
{ | ||
var chunkToCleanup = persister.GetCleanupChunk(DateTime.UtcNow.AddDays(1)).ToArray(); | ||
Console.WriteLine("Cleanup: got a chunk of size " + chunkToCleanup.Length); | ||
if (chunkToCleanup.Length == 0) break; | ||
|
||
found += chunkToCleanup.Length; | ||
foreach (var tuple in chunkToCleanup) | ||
{ | ||
Assert.IsTrue(persister.TryRemove(tuple.Item1, out tempTd)); | ||
} | ||
|
||
WaitForIndexing(documentStore); | ||
} | ||
|
||
using (var session = documentStore.OpenSession()) | ||
{ | ||
var results = session.Query<TimeoutData>().ToList(); | ||
Assert.AreEqual(0, results.Count); | ||
} | ||
|
||
Assert.AreEqual(expected.Count, found); | ||
} | ||
|
||
[TestCase, Repeat(200)] | ||
public void Should_not_skip_timeouts_also_with_multiple_clients_adding_timeouts() | ||
{ | ||
var db = Guid.NewGuid().ToString(); | ||
documentStore = new DocumentStore | ||
{ | ||
Url = "http://localhost:8080", | ||
DefaultDatabase = db, | ||
}.Initialize(); | ||
persister = new RavenTimeoutPersistence(new StoreAccessor(documentStore)) | ||
{ | ||
TriggerCleanupEvery = TimeSpan.FromDays(1), // Make sure cleanup doesn't run automatically | ||
}; | ||
|
||
var startSlice = DateTime.UtcNow.AddYears(-10); | ||
// avoid cleanup from running during the test by making it register as being run | ||
Assert.AreEqual(0, persister.GetCleanupChunk(startSlice).Count()); | ||
|
||
const int insertsPerThread = 10000; | ||
var expected1 = new List<Tuple<string, DateTime>>(); | ||
var expected2 = new List<Tuple<string, DateTime>>(); | ||
var lastExpectedTimeout = DateTime.UtcNow; | ||
var finishedAdding1 = false; | ||
var finishedAdding2 = false; | ||
|
||
new Thread(() => | ||
{ | ||
var sagaId = Guid.NewGuid(); | ||
for (var i = 0; i < insertsPerThread; i++) | ||
{ | ||
var td = new TimeoutData | ||
{ | ||
SagaId = sagaId, | ||
Destination = new Address("queue", "machine"), | ||
Time = DateTime.UtcNow.AddSeconds(RandomProvider.GetThreadRandom().Next(1, 20)), | ||
OwningTimeoutManager = string.Empty, | ||
}; | ||
persister.Add(td); | ||
expected1.Add(new Tuple<string, DateTime>(td.Id, td.Time)); | ||
lastExpectedTimeout = (td.Time > lastExpectedTimeout) ? td.Time : lastExpectedTimeout; | ||
} | ||
finishedAdding1 = true; | ||
Console.WriteLine("*** Finished adding ***"); | ||
}).Start(); | ||
|
||
new Thread(() => | ||
{ | ||
using (var store = new DocumentStore | ||
{ | ||
Url = "http://localhost:8080", | ||
DefaultDatabase = db, | ||
}.Initialize()) | ||
{ | ||
var persister2 = new RavenTimeoutPersistence(new StoreAccessor(store)); | ||
var sagaId = Guid.NewGuid(); | ||
for (var i = 0; i < insertsPerThread; i++) | ||
{ | ||
var td = new TimeoutData | ||
{ | ||
SagaId = sagaId, | ||
Destination = new Address("queue", "machine"), | ||
Time = DateTime.UtcNow.AddSeconds(RandomProvider.GetThreadRandom().Next(1, 20)), | ||
OwningTimeoutManager = string.Empty, | ||
}; | ||
persister2.Add(td); | ||
expected2.Add(new Tuple<string, DateTime>(td.Id, td.Time)); | ||
lastExpectedTimeout = (td.Time > lastExpectedTimeout) ? td.Time : lastExpectedTimeout; | ||
} | ||
} | ||
finishedAdding2 = true; | ||
Console.WriteLine("*** Finished adding via a second client connection ***"); | ||
}).Start(); | ||
|
||
// Mimic the behavior of the TimeoutPersister coordinator | ||
var found = 0; | ||
TimeoutData tempTd; | ||
while (!finishedAdding1 || !finishedAdding2 || startSlice < lastExpectedTimeout) | ||
{ | ||
DateTime nextRetrieval; | ||
var timeoutDatas = persister.GetNextChunk(startSlice, out nextRetrieval); | ||
foreach (var timeoutData in timeoutDatas) | ||
{ | ||
if (startSlice < timeoutData.Item2) | ||
{ | ||
startSlice = timeoutData.Item2; | ||
} | ||
|
||
Assert.IsTrue(persister.TryRemove(timeoutData.Item1, out tempTd)); // Raven returns duplicates, so we can't assert on this here | ||
found++; | ||
} | ||
} | ||
|
||
WaitForIndexing(documentStore); | ||
|
||
// If the persister reports stale results have been seen at one point during its normal operation, | ||
// we need to perform manual cleaup. | ||
while (true) | ||
{ | ||
var chunkToCleanup = persister.GetCleanupChunk(DateTime.UtcNow.AddDays(1)).ToArray(); | ||
Console.WriteLine("Cleanup: got a chunk of size " + chunkToCleanup.Length); | ||
if (chunkToCleanup.Length == 0) break; | ||
|
||
found += chunkToCleanup.Length; | ||
foreach (var tuple in chunkToCleanup) | ||
{ | ||
Assert.IsTrue(persister.TryRemove(tuple.Item1, out tempTd)); | ||
} | ||
|
||
WaitForIndexing(documentStore); | ||
} | ||
|
||
using (var session = documentStore.OpenSession()) | ||
{ | ||
var results = session.Query<TimeoutData>().ToList(); | ||
Assert.AreEqual(0, results.Count); | ||
} | ||
|
||
Assert.AreEqual(expected1.Count + expected2.Count, found); | ||
} | ||
|
||
IDocumentStore documentStore; | ||
RavenTimeoutPersistence persister; | ||
|
||
[TearDown] | ||
public void TearDown() | ||
{ | ||
if (documentStore != null) | ||
documentStore.Dispose(); | ||
} | ||
|
||
static void WaitForIndexing(IDocumentStore store, string db = null, TimeSpan? timeout = null) | ||
{ | ||
var databaseCommands = store.DatabaseCommands; | ||
if (db != null) | ||
databaseCommands = databaseCommands.ForDatabase(db); | ||
var spinUntil = SpinWait.SpinUntil(() => databaseCommands.GetStatistics().StaleIndexes.Length == 0, timeout ?? TimeSpan.FromSeconds(20)); | ||
Assert.True(spinUntil); | ||
} | ||
|
||
static class RandomProvider | ||
{ | ||
private static int seed = Environment.TickCount; | ||
|
||
private static ThreadLocal<Random> randomWrapper = new ThreadLocal<Random>(() => | ||
new Random(Interlocked.Increment(ref seed)) | ||
); | ||
|
||
public static Random GetThreadRandom() | ||
{ | ||
return randomWrapper.Value; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.
40beb96
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would have been nicer if the commit message says more than "Fixes issue number"
40beb96
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well it does, on the second line
40beb96
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just read it 😉