mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 10:44:55 +02:00
Merge pull request #881 from onesuper/odps-resource-tldr
odps-resource: add page
This commit is contained in:
commit
c18ade3f66
1 changed files with 27 additions and 0 deletions
27
pages/common/odps-resource.md
Normal file
27
pages/common/odps-resource.md
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# odps resource
|
||||||
|
|
||||||
|
> Manage resources in ODPS (Open Data Processing Service).
|
||||||
|
|
||||||
|
- Show resources in the current project:
|
||||||
|
|
||||||
|
`list resources;`
|
||||||
|
|
||||||
|
- Add file resource:
|
||||||
|
|
||||||
|
`add file {{file_name}} as {{alias}};`
|
||||||
|
|
||||||
|
- Add archive resource:
|
||||||
|
|
||||||
|
`add archive {{archive.tar.gz}} as {{alias}};`
|
||||||
|
|
||||||
|
- Add .jar resource:
|
||||||
|
|
||||||
|
`add jar {{package.jar}};`
|
||||||
|
|
||||||
|
- Add .py resource:
|
||||||
|
|
||||||
|
`add py {{script.py}};`
|
||||||
|
|
||||||
|
- Delete resource:
|
||||||
|
|
||||||
|
`drop resource {{resource_name}};`
|
Loading…
Add table
Reference in a new issue