1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

Merge pull request #885 from onesuper/odps-tunnel

Odps tunnel
This commit is contained in:
Felix Yan 2016-05-15 05:11:03 -05:00
commit 5bb2719231

View file

@ -0,0 +1,19 @@
# odps tunnel
> Data tunnel in ODPS (Open Data Processing Service).
- Download table to local file:
`tunnel download {{table_name}} {{file}};`
- Upload local file to a table partition:
`tunnel upload {{file}} {{table_name}}/{{partition_spec}};`
- Upload table specifying field and record delimiters:
`tunnel upload {{file}} {{table_name}} -fd {{field_delim}} -rd {{record_delim}};`
- Upload table using multiple threads:
`tunnel upload {{file}} {{table_name}} -threads {{num}};`