odps func
Manage functions in ODPS (Open Data Processing Service).
See also odps.
More information: https://www.alibabacloud.com/help/doc-detail/27971.htm.
-
Show functions in the current project:
list functions; -
Create a Java function using a
.jarresource:
create function {{func_name}} as {{path.to.package.Func}} using '{{package.jar}}'; -
Create a Python function using a
.pyresource:
create function {{func_name}} as {{script.Func}} using '{{script.py}}'; -
Delete a function:
drop function {{func_name}};
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.