zoukankan      html  css  js  c++  java
  • 大数据技术之Sqoop配置示例

    大数据技术之Sqoop配置示例


    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



    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


    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



    ------------------------

    import
    --connect
    jdbc:mysql://node3: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'

    -------------------------

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

    --------------------------------

    import
    --connect
    jdbc:mysql://node3: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
    ''

    =---------------------------

    import
    --connect
    jdbc:mysql://node3: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
    ''









  • 相关阅读:
    SPOJ 8222 NSUBSTR
    bzoj千题计划284:bzoj2882: 工艺
    bzoj千题计划283:bzoj4516: [Sdoi2016]生成魔咒(后缀数组)
    bzoj千题计划282:bzoj4517: [Sdoi2016]排列计数
    bzoj千题计划281:bzoj4558: [JLoi2016]方
    bzoj千题计划280:bzoj4592: [Shoi2015]脑洞治疗仪
    bzoj千题计划279:bzoj4591: [Shoi2015]超能粒子炮·改
    bzoj千题计划278:bzoj4590: [Shoi2015]自动刷题机
    bzoj千题计划277:bzoj4513: [Sdoi2016]储能表
    bzoj千题计划276:bzoj4515: [Sdoi2016]游戏
  • 原文地址:https://www.cnblogs.com/TendToBigData/p/10501406.html
Copyright © 2011-2022 走看看