Data360 Analyze

 View Only
  • 1.  Legacy Data Flow BRG Import Failure LAE 6.1.4 to D3SA 3.2.6

    Posted 06-04-2019 10:07

    I get the attached failure message when attempting to import a legacy data flow.  All dependent libraries have been successfully imported to D3SA (and are in the library path) prior to receiving this message, all such libraries were saved in LAE 6.1.4 prior to being imported.  The BRG contains no visualizer nodes.  

     

    Attached files

    legacy import error.JPG

     



  • 2.  RE: Legacy Data Flow BRG Import Failure LAE 6.1.4 to D3SA 3.2.6

    Employee
    Posted 06-07-2019 07:04

    This issue  relates to support ticket #72760.

    The import error can occur in the following narrow set of circumstances:

        When a Lavastorm core library node has been overridden and the node's name was not changed.

    A fix for this issue will be available in the next maintenance release (v.3.4.2).

    A work-around for this issue has also been provided in the mean time.



  • 3.  RE: Legacy Data Flow BRG Import Failure LAE 6.1.4 to D3SA 3.2.6

    Posted 06-07-2019 07:41

    Hi Adrian, we have experienced this in 3.2.7 - can you provide details of the workaround please?



  • 4.  RE: Legacy Data Flow BRG Import Failure LAE 6.1.4 to D3SA 3.2.6

    Employee
    Posted 06-07-2019 08:06

    The issue will be in one or more local library nodes within the Lavastorm graph. Open the affected .brg file in a text editor and look for the library node definitions which will be in the stanzas starting with libnode:

    The affected libnode(s) will not include a line similar to this

        editor:Label=<foo>

    where <foo> is the name of the node.

    For example, depending on the core node the start of the stanza may look like:

    libnode:Filter_3
    bretype:core::Filter
    editor:handle=5aba410f03217f3f

    ...

    or

    libnode:Output_Delimited
    bretype:core::Output Delimited
    editor:handle=5aba410f36e72d0f

    ...

    You need to insert a line to specify the label, so in the above case the definitions would start with:

    libnode:Filter_3
    bretype:core::Filter
    editor:Label=Filter
    editor:handle=5aba410f03217f3f

    ...

    or

    libnode:Output_Delimited
    bretype:core::Output Delimited
    editor:Label=Output Delimited

    editor:handle=5aba410f36e72d0f

    ...

     



  • 5.  RE: Legacy Data Flow BRG Import Failure LAE 6.1.4 to D3SA 3.2.6

    Posted 06-11-2019 02:08

    Thanks Adrian.