| // 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. |
| |
| using Apache.Iggy; |
| using Apache.Iggy.Benchmarks; |
| using Apache.Iggy.Enums; |
| using Apache.Iggy.Factory; |
| using Apache.Iggy.IggyClient; |
| using Microsoft.Extensions.Logging; |
| |
| const int messagesCount = 1000; |
| const int messagesBatch = 1000; |
| const int messageSize = 1000; |
| const int producerCount = 3; |
| const uint startingStreamId = 100; |
| const int topicId = 1; |
| Dictionary<int, IIggyClient> clients = new(); |
| var loggerFactory = LoggerFactory.Create(builder => |
| { |
| builder |
| .AddFilter("Iggy_SDK.MessageStream.Implementations;", LogLevel.Trace) |
| .AddConsole(); |
| }); |
| |
| for (var i = 0; i < producerCount; i++) |
| { |
| var bus = MessageStreamFactory.CreateMessageStream(options => |
| { |
| options.BaseAdress = "127.0.0.1:8090"; |
| options.Protocol = Protocol.Tcp; |
| options.MessageBatchingSettings = x => |
| { |
| x.Enabled = false; |
| x.MaxMessagesPerBatch = 1000; |
| x.Interval = TimeSpan.Zero; |
| }; |
| #if OS_LINUX |
| options.ReceiveBufferSize = Int32.MaxValue; |
| options.SendBufferSize = Int32.MaxValue; |
| #elif OS_WINDOWS |
| options.ReceiveBufferSize = int.MaxValue; |
| options.SendBufferSize = int.MaxValue; |
| #elif OS_MAC |
| options.ReceiveBufferSize = 7280*1024; |
| options.SendBufferSize = 7280*1024; |
| #endif |
| }, loggerFactory); |
| |
| await bus.LoginUser("iggy", "iggy"); |
| clients[i] = bus; |
| } |
| |
| try |
| { |
| for (uint i = 0; i < producerCount; i++) |
| { |
| await clients[0].CreateStreamAsync($"Test bench stream_{i}", startingStreamId + i); |
| |
| await clients[0].CreateTopicAsync(Identifier.Numeric(startingStreamId + i), |
| topicId: topicId, |
| name: $"Test bench topic_{i}", |
| compressionAlgorithm: CompressionAlgorithm.None, |
| messageExpiry: 0, |
| maxTopicSize: 2_000_000_000, |
| replicationFactor: 3, |
| partitionsCount: 1); |
| } |
| } |
| catch |
| { |
| Console.WriteLine("Failed to create streams, they already exist."); |
| } |
| |
| List<Task> tasks = new(); |
| |
| for (var i = 0; i < producerCount; i++) |
| { |
| tasks.Add(SendMessage.Create(clients[i], i, producerCount, messagesBatch, messagesCount, messageSize, |
| Identifier.Numeric(startingStreamId + (uint)i), |
| Identifier.Numeric(topicId))); |
| } |
| |
| await Task.WhenAll(tasks); |
| |
| try |
| { |
| for (uint i = 0; i < producerCount; i++) |
| { |
| await clients[0].DeleteStreamAsync(Identifier.Numeric(startingStreamId + i)); |
| } |
| } |
| catch |
| { |
| Console.WriteLine("Failed to delete streams"); |
| } |