Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Create ODPS Functions - Manage Data Processing | Online Free DevTools by Hexmos

Create ODPS functions instantly with ODPS Func. Manage data processing jobs and resources, and define custom logic using Java or Python scripts. Free online tool, no registration required.

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 .jar resource:

create function {{func_name}} as {{path.to.package.Func}} using '{{package.jar}}';

  • Create a Python function using a .py resource:

create function {{func_name}} as {{script.Func}} using '{{script.py}}';

  • Delete a function:

drop function {{func_name}};