/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

  1. namespace Rhino.Etl.Tests.LoadTest
  2. {
  3. using Core;
  4. using Rhino.Etl.Core.Pipelines;
  5. public class Join_250_000_UsersWithMostlyFallingOut : EtlProcess
  6. {
  7. public AccumulateResults operation;
  8. protected override void Initialize()
  9. {
  10. PipelineExecuter = new SingleThreadedPipelineExecuter();
  11. Register(new JoinUsersAndIds()
  12. .Left(new GenerateUsers(25000))
  13. .Right(new GenerateRandomIds(15000)));
  14. operation = new AccumulateResults();
  15. Register(this.operation);
  16. }
  17. }
  18. }