sqoop基本使用
一、导入MySQL数据库参数:
通用参数:
- --connect
- --username
- password 指定数据库连接密码(明文)
- -P 交互式的指定密码
- --password-file
2.导入控制参数--选择部分数据导入
--query (导入id条件数据记录)
sqoop import --connect jdbc:mysql//master:3306/Person(数据库名字)--username root -password 123456 --query "select*from Student where id<=500 AND \$condition"
--columns class (id,name,age)导入列