when should we use data fusion over etl data flows

karthik
karthik Member
edited March 2023 in Datasets

hi,

when should we use data fusion over etl data flows and what are the differences between them.

thank you

Best Answer

  • dthierjung
    dthierjung Contributor
    Answer ✓

    Fusion is fantastic for relatively simple joins on large datasets that number in the tens of millions of rows and greater.

     

    The ETL and MySQL dataflows are different ways to accomplish the same end goal, allowing the user to pick the method they are most comfortable with. Some users work best in SQL, so the MySQL ETL recreates that, whereas some people prefer visual drag and drop dataflows which is Magic ETL.

     

    All things being equal, I believe that Magic ETL is slightly more performant than MySQL ETL however.

     

    The choice further comes down to how complicated some of your dataflows are/can be, and how they will be managed. It's easier to see what's happening from a high level with Magic, but can data transformations tricky to perform. MySQL allows for basically any data transformation to occur, but you need to go into each transform to view the logic.

Answers

  • dthierjung
    dthierjung Contributor
    Answer ✓

    Fusion is fantastic for relatively simple joins on large datasets that number in the tens of millions of rows and greater.

     

    The ETL and MySQL dataflows are different ways to accomplish the same end goal, allowing the user to pick the method they are most comfortable with. Some users work best in SQL, so the MySQL ETL recreates that, whereas some people prefer visual drag and drop dataflows which is Magic ETL.

     

    All things being equal, I believe that Magic ETL is slightly more performant than MySQL ETL however.

     

    The choice further comes down to how complicated some of your dataflows are/can be, and how they will be managed. It's easier to see what's happening from a high level with Magic, but can data transformations tricky to perform. MySQL allows for basically any data transformation to occur, but you need to go into each transform to view the logic.