Uploaded image for project: 'Sqoop (Retired)'
  1. Sqoop (Retired)
  2. SQOOP-450

Direct MySQL import can fail when using mysqldump version 5.1.14 or above.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.4.1-incubating
    • 1.4.2
    • connectors/mysql
    • None

    Description

      When using direct MySQL connector, the expected output of the mysqldump command is individual records as follows:

      INSERT INTO `EMPLOYEES_MYSQL_1` VALUES (2,'Bob',100,'2009-04-20',400,'sales');
      INSERT INTO `EMPLOYEES_MYSQL_1` VALUES (3,'Fred',4000000000,'2009-01-23',15,'marketing');
      

      However, if the client version of MySQL being used is 5.1.14 or above, the output may have a warning header as follows if the tablespaces are not defined:

      --
      -- Not dumping tablespaces as no INFORMATION_SCHEMA.FILES table on this server
      --
      INSERT INTO `EMPLOYEES_MYSQL_1` VALUES (2,'Bob',100,'2009-04-20',400,'sales');
      INSERT INTO `EMPLOYEES_MYSQL_1` VALUES (3,'Fred',4000000000,'2009-01-23',15,'marketing');
      

      Notice that it contains an empty line and other lines that begin with the comment marker --.

      This causes the MySQLDumpMapper to error out due to unexpected format of the records being read.

      Attachments

        1. SQOOP-450-1.patch
          1 kB
          Arvind Prabhakar

        Activity

          People

            aprabhakar Arvind Prabhakar
            aprabhakar Arvind Prabhakar
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: