要連接MySQL數據庫,可以使用Sqoop提供的以下命令:
sqoop import --connect jdbc:mysql://hostname:port/database --username your_username --password your_password --table table_name --target-dir /path/to/hdfs/directory
sqoop export --connect jdbc:mysql://hostname:port/database --username your_username --password your_password --table table_name --export-dir /path/to/hdfs/directory
在這些命令中,需要將hostname
、port
、database
、your_username
、your_password
、table_name
和/path/to/hdfs/directory
替換為實際的值。另外,還可以根據需要添加其他參數來配置Sqoop連接MySQL數據庫的行為。