blob: d36fbe6c129a1b05b21ab6c3668383442b3d1f13 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Apache.Ignite.Core.Tests.Client.Datastream
{
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Apache.Ignite.Core.Cache.Configuration;
using Apache.Ignite.Core.Client;
using Apache.Ignite.Core.Client.Cache;
using Apache.Ignite.Core.Client.Datastream;
using Apache.Ignite.Core.Configuration;
using Apache.Ignite.Core.Impl.Client;
using Apache.Ignite.Core.Impl.Client.Datastream;
using NUnit.Framework;
/// <summary>
/// Tests thin client data streamer with topology changes.
/// </summary>
[Category(TestUtils.CategoryIntensive)]
public class DataStreamerClientTopologyChangeTest
{
/** */
private readonly bool _enablePartitionAwareness;
/// <summary>
/// Initializes a new instance of <see cref="DataStreamerClientTopologyChangeTest"/> class.
/// </summary>
public DataStreamerClientTopologyChangeTest() : this(false)
{
// No-op.
}
/// <summary>
/// Initializes a new instance of <see cref="DataStreamerClientTopologyChangeTest"/> class.
/// </summary>
public DataStreamerClientTopologyChangeTest(bool enablePartitionAwareness)
{
_enablePartitionAwareness = enablePartitionAwareness;
}
/// <summary>
/// Tears down the test.
/// </summary>
[TearDown]
public void TearDown()
{
Ignition.StopAll(true);
}
/// <summary>
/// Tests that streamer does not lose per-node buffer data when node leaves the cluster.
/// </summary>
[Test]
public void TestStreamerDoesNotLoseDataOnFlushWhenNewNodeEntersAndOriginalNodeLeaves()
{
var server = StartServer();
var client = StartClient();
var cache = CreateCache(client);
using (var streamer = client.GetDataStreamer<int, int>(cache.Name))
{
// Add to the buffer for the initial server.
streamer.Add(1, 1);
// Start new server, stop old one.
StartServer();
server.Dispose();
streamer.Add(2, 2);
streamer.Flush();
Assert.AreEqual(1, cache[1]);
Assert.AreEqual(2, cache[2]);
streamer.Add(3, 3);
streamer.Flush();
Assert.AreEqual(3, cache[3]);
}
}
/// <summary>
/// Tests that streamer does not lose per-node buffer data when node leaves the cluster.
/// </summary>
[Test]
public void TestStreamerDoesNotLoseDataOnDisposeWhenNewNodeEntersAndOriginalNodeLeaves()
{
var server = StartServer();
var client = StartClient();
var cache = CreateCache(client);
using (var streamer = client.GetDataStreamer<int, int>(cache.Name))
{
streamer.Add(1, 1);
StartServer();
server.Dispose();
streamer.Add(2, 2);
}
Assert.AreEqual(1, cache[1]);
Assert.AreEqual(2, cache[2]);
}
/// <summary>
/// Tests that streamer does not lose data during random topology changes.
/// </summary>
[Test]
public void TestStreamerDoesNotLoseDataOnRandomTopologyChanges()
{
const int maxNodes = 4;
const int topologyChanges = 16;
var nodes = new Queue<IIgnite>();
nodes.Enqueue(StartServer());
var client = StartClient(maxPort: 10809);
var cache = CreateCache(client);
var options = new DataStreamerClientOptions {AllowOverwrite = true};
var streamer = client.GetDataStreamer<int, int>(cache.Name, options);
var id = 0;
var cancel = false;
var adderTask = Task.Factory.StartNew(() =>
{
// ReSharper disable once AccessToModifiedClosure
while (!cancel)
{
id++;
streamer.Add(id, id);
if (id % 500 == 0)
{
// Sleep once in a while to reduce streamed data size.
Thread.Sleep(100);
}
}
});
for (int i = 0; i < topologyChanges; i++)
{
Thread.Sleep(100);
if (nodes.Count <= 2 || (nodes.Count < maxNodes && TestUtils.Random.Next(2) == 0))
{
nodes.Enqueue(StartServer());
}
else
{
nodes.Dequeue().Dispose();
}
}
cancel = true;
adderTask.Wait(TimeSpan.FromSeconds(15));
streamer.Close(cancel: false);
var streamerImpl = (DataStreamerClient<int, int>) streamer;
TestUtils.WaitForTrueCondition(
() => id == cache.GetSize(),
() => string.Format("Expected: {0}, actual: {1}, sent: {2}, alloc: {3}, pool: {4}", id,
cache.GetSize(), streamerImpl.EntriesSent, streamerImpl.ArraysAllocated,
streamerImpl.ArraysPooled),
timeout: 3000);
DataStreamerClientTest.CheckArrayPoolLeak(streamer);
Assert.Greater(id, 10000);
Assert.AreEqual(1, cache[1]);
Assert.AreEqual(id, cache[id]);
}
/// <summary>
/// Tests that flush fails when all servers leave the cluster.
/// </summary>
[Test]
public void TestFlushFailsWhenAllServersStop()
{
var server = StartServer();
var client = StartClient();
var cache = CreateCache(client);
var streamer = client.GetDataStreamer<int, int>(cache.Name);
streamer.Add(1, 1);
streamer.Flush();
server.Dispose();
streamer.Add(2, 2);
var ex = Assert.Throws<AggregateException>(() => streamer.Flush()).GetBaseException();
StringAssert.StartsWith("Failed to establish Ignite thin client connection", ex.Message);
}
/// <summary>
/// Tests that buffers for disconnected server nodes get flushed on explicit flush call.
/// </summary>
[Test]
public void TestDisconnectedBuffersGetFlushedOnExplicitFlush()
{
var server = StartServer();
var client = StartClient();
var cache = CreateCache(client);
var options = new DataStreamerClientOptions
{
PerNodeBufferSize = 3
};
using (var streamer = client.GetDataStreamer<int, int>(cache.Name, options))
{
// Fill the buffer for the initial server node.
streamer.Add(-1, -1);
streamer.Add(-2, -2);
StartServer();
server.Dispose();
// Perform cache operation to detect connection failure.
Assert.Catch(() => cache.Put(1, 3));
// Fill the buffer to force flush.
streamer.Add(1, 1);
streamer.Add(2, 2);
streamer.Add(3, 3);
// Automatic flush does not involve old buffer.
TestUtils.WaitForTrueCondition(() => cache.ContainsKey(1));
Assert.AreEqual(3, cache.GetSize());
Assert.IsTrue(cache.ContainsKeys(new[]{1, 2, 3}));
// Explicit flush includes old buffer.
streamer.Add(4, 4);
streamer.Flush();
Assert.AreEqual(6, cache.GetSize());
Assert.IsTrue(cache.ContainsKeys(new[]{-1, -2, 4}));
}
}
/// <summary>
/// Tests that buffers for disconnected server nodes get flushed on close / dispose.
/// </summary>
[Test]
public void TestDisconnectedBuffersGetFlushedOnClose()
{
var server = StartServer();
var client = StartClient();
var cache = CreateCache(client);
using (var streamer = client.GetDataStreamer<int, int>(cache.Name))
{
// Fill the buffer for the initial server node.
streamer.Add(-1, -1);
streamer.Add(-2, -2);
StartServer();
server.Dispose();
// Perform cache operation to detect connection failure.
Assert.Catch(() => cache.Put(1, 3));
// Fill the buffer for a new node.
streamer.Add(1, 1);
streamer.Add(2, 2);
}
// Close/Dispose flushes all buffers, including the buffer for the old node that was disconnected.
Assert.AreEqual(4, cache.GetSize());
Assert.IsTrue(cache.ContainsKeys(new[]{-1, -2, 1, 2}));
}
private static IgniteConfiguration GetServerConfiguration()
{
return new IgniteConfiguration(TestUtils.GetTestConfiguration())
{
AutoGenerateIgniteInstanceName = true,
DiscoverySpi = TestUtils.GetStaticDiscovery(maxPort: 47509),
DataStorageConfiguration = new DataStorageConfiguration
{
DefaultDataRegionConfiguration = new DataRegionConfiguration
{
Name = DataStorageConfiguration.DefaultDataRegionName,
MaxSize = 500 * 1024 * 1024
}
}
};
}
private static IIgnite StartServer()
{
return Ignition.Start(GetServerConfiguration());
}
private static ICacheClient<int, int> CreateCache(IIgniteClient client)
{
return client.CreateCache<int, int>(new CacheClientConfiguration
{
Name = TestUtils.TestName,
CacheMode = CacheMode.Replicated,
WriteSynchronizationMode = CacheWriteSynchronizationMode.FullSync,
RebalanceMode = CacheRebalanceMode.Sync
});
}
private IIgniteClient StartClient(int maxPort = 10805)
{
var cfg = new IgniteClientConfiguration("127.0.0.1:10800.." + maxPort)
{
EnablePartitionAwareness = _enablePartitionAwareness
};
return new IgniteClient(cfg);
}
}
}