在Rhino-Etl中链接InputOperations

时间:2013-11-18 18:41:37

标签: rhino-etl

我刚刚开始使用Rhino-Etl进行非常简单的ETL过程,并且取得了很大的成功。我有一个稍微复杂的场景要解决,我没有发现ConventionInputCommandOperation的行为与我预期的一样。

我已经完成了一个非常简单的例子,说明了我要做的事情。基本上我有两个系统参与,我不知道我想从系统2得到什么,直到我第一次查询系统1.我想在另一个InputOperation之后立即注册一个InputOperation就像一个循环。这样操作1中的每一行都将被送到操作2.下面的代码失败,“执行操作无法完成详细程序:必须声明标量变量@PlanetAbbrv”。所以我的问题是你是如何处理输入操作依赖于先前输入操作的情况?

谢谢, 布赖恩

using System;
using Rhino.Etl.Core;
using Rhino.Etl.Core.ConventionOperations;

namespace ETLTest
{
    class Program
    {
        static void Main()
        {
            new MainProcess().Execute();
            Console.ReadLine();
        }
    }

    public class MainProcess : EtlProcess
    {
        protected override void Initialize()
        {
            Register(new MainReader());
            Register(new DetailReader());
        }

        protected override void PostProcessing()
        {
            foreach (var exception in GetAllErrors())
            {
                throw exception;
            }
        }
    }

    public class MainReader : ConventionInputCommandOperation
    {
        public MainReader() : base("Galactic1")
        {
            Command = @"select * from Planet";
        }
    }

    public class DetailReader : ConventionInputCommandOperation
    {
        public DetailReader() : base("Galactic2")
        {
            Command = @"select * from Delivery where DeliveryPlanetAbbrv = @PlanetAbbrv";
        }
    }
}

1 个答案:

答案 0 :(得分:0)

您需要让DetailReader选择所有行(取出where操作)。 然后使用JoinOperation将详细信息与主要信息进行匹配。

Register(new JoinPlanets()
                     .Right(new MainReader())
                     .Left(new DetailReader()));


public class JoinPlanets: JoinOperation
{
    protected override Row MergeRows(Row leftRow, Row rightRow)
    {
        Row row = leftRow.Clone();
        foreach (var column in leftRow.Columns)
            row[column] = leftRow[column];
        return row;
    }

    protected override void SetupJoinConditions()
    {
        FullOuterJoin.Left("PlanetAbbrv")
                     .Right("DeliveryPlanetAbbrv");
    }
}