/Rhino.Etl.Tests/LoadTest/Join_250_000_UsersWithMostlyFallingOut.cs
http://github.com/ayende/rhino-etl · C# · 21 lines · 18 code · 3 blank · 0 comment · 0 complexity · 9a9b8b920851267cbe930a4743c9731f MD5 · raw file
- namespace Rhino.Etl.Tests.LoadTest
- {
- using Core;
- using Rhino.Etl.Core.Pipelines;
- public class Join_250_000_UsersWithMostlyFallingOut : EtlProcess
- {
- public AccumulateResults operation;
- protected override void Initialize()
- {
- PipelineExecuter = new SingleThreadedPipelineExecuter();
- Register(new JoinUsersAndIds()
- .Left(new GenerateUsers(25000))
- .Right(new GenerateRandomIds(15000)));
- operation = new AccumulateResults();
- Register(this.operation);
- }
- }
- }