zoukankan      html  css  js  c++  java
  • Sqoop 测试数据导入示例

    Sqoop 1.4.6

    执行方法  

    sqoop --options-file options1



    1.hdfstomysql
    
    export
    --connect
    jdbc:mysql://bigdatacloud:3306/test
    --username
    root
    --password
    123
    --table
    hdfstomysql
    --columns
    id,name,age
    -m
    1
    --export-dir
    hdfs://mycluster/hdfstomysql
    
    2.mysqltohive
    
    import
    --connect
    jdbc:mysql://bigdatacloud:3306/test
    --username
    root
    --password
    123
    --target-dir
    /sqoop/THive
    --delete-target-dir
    --as-textfile
    -m
    1
    --table
    T_P
    --columns
    id,name,age
    --hive-import
    --hive-overwrite
    --hive-table
    T_hive
    
    
    3.mysqltohdfs
    import
    --connect
    jdbc:mysql://bigdatacloud:3306/test
    --username
    root
    --password
    123
    --target-dir
    /sqoop/T1
    --delete-target-dir
    --as-textfile
    -m
    1
    --table
    T_P
    --columns
    id,name,age
    


    1.
    
    import
    --connect
    jdbc:mysql://bigdatahadoop:3306/test
    --username
    root
    --password
    123456
    --table
    t_person
    --columns
    id,name,age
    --where
    1=1
    --target-dir
    /sqoop/test1
    --delete-target-dir
    --as-textfile
    -m
    1
    --null-string
    ''
    --null-non-string
    ''





    2

    import
    --connect
    jdbc:mysql://bigdatacloud:3306/test
    --username
    root
    --password
    123456
    --query
    'select p.id,name,age,c.card_id,date_format(c.create_date,'%Y-%m-%d') as c_date  from t_person p join t_id_card c on p.id=c.p_id where p.age>17 and $CONDITIONS'
    --target-dir
    /sqoop/test2
    --delete-target-dir
    --as-textfile
    -m
    1
    --null-string
    ''
    --null-non-string 
    ''
    



    3

    import
    --connect
    jdbc:mysql://bigdataspark:3306/test
    --username
    root
    --password
    123456
    --query
    'select p.id,name,age,c.card_id,date_format(c.create_date,'%Y-%m-%d') as c_date  from t_person p join t_id_card c on p.id=c.p_id where p.age>17 and $CONDITIONS'
    --target-dir
    /sqoop/test3
    --delete-target-dir
    --as-textfile
    -m
    1
    --null-string
    ''
    --null-non-string 
    ''
    --hive-import
    --hive-overwrite
    --create-hive-table
    --hive-table
    t_person_card
    --hive-partition-key
    day
    --hive-partition-value
    '2016-07-03'
    


    4

    export
    --connect
    jdbc:mysql://bigdatacloud:3306/test
    --username
    root
    --password
    123456
    --table
    t_person
    --columns
    id,name,age
    -m
    1
    --export-dir
    hdfs://mycluster/test
    



  • 相关阅读:
    JavaScript ECMAScript 2015 (ES6) 和 ECMAScript 2016 (ES7) 新特性速查
    Sass中文文档
    TypeScript手册中文版
    敏捷:什么是用户故事(User Story)
    Repeater为空时显示“暂无数据”,很方便实用方法
    jquery之css()改变字体大小,颜色,背景色
    七牛 在线管理 v0.1
    clion idea jetbrain windows下搞c/c++
    amazeui 搜索 动态
    命令行启动软件
  • 原文地址:https://www.cnblogs.com/TendToBigData/p/10501375.html
Copyright © 2011-2022 走看看