The Python 2 version that is used by MaxCompute is Python 2.7. This topic describes how to write a user-defined table-valued function (UDTF) in Python 2.
UDTF code structure
- Encoding declaration: optional.
The declaration format is
#coding:utf-8
or# -*- coding: utf-8 -*-
. The two formats are equivalent. If Chinese characters appear in UDTF code that is written in Python 2, an error is returned when you run the UDTF. To resolve this issue, you must add an encoding declaration to the header of the code. - Module import: required.
UDTF code must include
from odps.udf import annotate
andfrom odps.udf import BaseUDTF
.from odps.udf import annotate
is used to import the function signature module. This way, MaxCompute can identify the function signature that is defined in the code.from odps.udf import BaseUDTF
is the base class for Python UDTFs. You must use this class to implement methods such asprocess
andclose
in derived classes.If you want to reference files or tables in UDTF code, UDTF code must include
from odps.distcache import get_cache_file
orfrom odps.distcache import get_cache_table
. - Function signature: optional.
The function signature is in the
@annotate(<signature>)
format. Thesignature
parameter is used to define the data types of the input parameters and return value of a UDTF. If you do not specify a function signature, input parameters of any data type can be matched when you call a UDTF in SQL statements. As a result, the data types of the return values cannot be inferred and all output parameters are of the STRING type. For more information about function signatures, see Function signatures and data types. - Custom Python class (derived class): required.
A custom Python class is the organizational unit of UDTF code. This class defines the variables and methods that are used to meet your business requirements. In UDTF code, you can reference third-party libraries that are built in MaxCompute or reference files or tables. For more information, see Third-party libraries or Resource reference.
- Methods to implement Python classes: required.
Four methods can be used to implement Python classes. The following table describes these methods.
Method Description BaseUDTF.init()
The initialization method. To implement this method for a derived class, you must call the super(BaseUDTF, self).init()
initialization method of the base class when you start to run code. TheINIT
method is called only once throughout the lifecycle of a UDTF. This method is called only before the first record is processed. If a UDTF needs to save internal states, all states can be initialized by using this method.BaseUDTF.process([args, ...])
The process
function is called once for each SQL record. The parameters of theprocess
function are the input parameters of the UDTF that is specified in SQL statements.BaseUDTF.forward([args, ...])
The output method of a UDTF. This method is called by user code. One output record is generated each time the forward
method is called. The parameters in theforward
method are the UDTF output parameters that are specified in SQL statements.If no function signature is specified in the Python code, all output values must be converted into the STRING type when the
forward
method is called.BaseUDTF.close()
The method to terminate a UDTF. This method is called only once. It is called only before the last record is processed.
#coding:utf-8
# Import the function signature module and the base class.
from odps.udf import annotate
from odps.udf import BaseUDTF
# The function signature.
@annotate('string -> string')
# The custom Python class.
class Explode(BaseUDTF):
# Methods used to implement Python classes.
def process(self, arg):
props = arg.split(',')
for p in props:
self.forward(p)
Limits
- Read data from and write data to local files.
- Start subprocesses.
- Start threads.
- Enable socket communication.
- Use other systems to call Python 2 UDFs.
- All the modules that are implemented based on Python standard libraries and do not depend on extension modules are available.
- The following C extension modules are available:
- array and audioop
- binascii and bisect
- cmath, _codecs_cn, _codecs_hk, _codecs_iso2022, _codecs_jp, _codecs_kr, _codecs_tw, _collections, and cStringIO
- datetime
- _functools and future_builtins
- _heapq and _hashlib
- itertools
- _json
- _locale and _lsprof
- math, _md5, and _multibytecodec
- operator
- _random
- _sha256, _sha512, _sha, _struct, and strop
- time
- unicodedata
- _weakref
- cPickle
- When you run UDF code in a sandbox environment, the maximum size of data that can be written to the standard output (sys.stdout) or standard error output (
sys.stderr
) is 20 KB. If the size exceeds 20 KB, extra characters are ignored.
Third-party libraries
Function signatures and data types
@annotate(<signature>)
signature
is a function signature string. This parameter is used to identify the data types of the input parameters and return values. When a UDTF is run, the input parameters and return values of the UDTF must be of the same data type as those specified in the function signature. The system checks whether the UDTF complies with the definition of the function signature during semantics parsing. If the data types of the UDTF are inconsistent with the data types specified in the function signature, an error is returned. The signature is in the following format: 'arg_type_list -> type_list'
Parameter description:type_list
: indicates the data types of return values. A UDTF can return multiple columns. The following data types are supported: BIGINT, STRING, DOUBLE, BOOLEAN, DATETIME, DECIMAL, FLOAT, BINARY, DATE, DECIMAL(precision,scale), complex data types (ARRAY, MAP, and STRUCT), and nested complex data types.arg_type_list
: indicates the data types of input parameters. If multiple input parameters are used, specify multiple data types and separate them with commas (,). The following data types are supported: BIGINT, STRING, DOUBLE, BOOLEAN, DATETIME, DECIMAL, FLOAT, BINARY, DATE, DECIMAL(precision,scale), CHAR, VARCHAR, complex data types (ARRAY, MAP, and STRUCT), and nested complex data types.arg_type_list
can also be set to an asterisk (*) or left empty.- If
arg_type_list
is set to an asterisk (*), a random number of input parameters are used. - If
arg_type_list
is left empty, no input parameters are used.
- If
Function signature | Description |
---|---|
@annotate('bigint,boolean->string,datetime') | The data types of the input parameters are BIGINT and BOOLEAN. The data types of the return values are STRING and DATETIME. |
| A random number of input parameters are used and the data types of the return values are STRING and DATETIME. |
| No input parameters are used, and the data types of the return values are DOUBLE, BIGINT, and STRING. |
| The data types of the input parameters are ARRAY, STRUCT, and MAP. The data types of the return values are MAP and STRUCT. |
The following table describes the mappings between the data types that are supported in MaxCompute SQL and the Python 2 data types. You must write Python UDTFs based on the mappings to ensure data type consistency.
MaxCompute SQL data type | Python 2 data type |
---|---|
BIGINT | INT |
STRING | STR |
DOUBLE | FLOAT |
BOOLEAN | BOOL |
DATETIME | INT |
FLOAT | FLOAT |
CHAR | STR |
VARCHAR | STR |
BINARY | BYTEARRAY |
DATE | INT |
DECIMAL | DECIMAL.DECIMAL |
ARRAY | LIST |
MAP | DICT |
STRUCT | COLLECTIONS.NAMEDTUPLE |
- The DATETIME type supported in MaxCompute SQL is mapped to the Python data type INT. A value of the INT type follows the UNIX format, which is the number of milliseconds that have elapsed since 00:00:00 Thursday, January 1, 1970. You can process data of the DATETIME type by using the DATETIME module in Python standard libraries.
- The
silent
parameter is added toodps.udf.int(value)
. If thesilent
parameter is set to True and the data type ofvalue
cannot be converted into the INT type, None is returned, and no error is returned. - NULL in MaxCompute SQL is mapped to None in Python 2.
Resource reference
You can reference files and tables in Python UDTFs by using the odps.distcache
module.
odps.distcache.get_cache_file(resource_name)
: returns the content of a specific file.resource_name
is a string that specifies the name of an existing file in your MaxCompute project. If the file name is invalid or the file does not exist, an error is returned.Note To reference a file in a UDTF, you must declare the file resource when you create the UDTF. Otherwise, an error is returned when the UDTF is called.- The return value is a file-like object. If this object is no longer used, you must call the
close
method to release the open file.
odps.distcache.get_cache_table(resource_name)
: returns the content of a specified table.resource_name
is a string that specifies the name of an existing table in your MaxCompute project. If the table name is invalid or the table does not exist, an error is returned.- The return value is of the generator type. The caller traverses the table to obtain the content. Each time the caller traverses the table, a record of the ARRAY type is generated.
# -*- coding: utf-8 -*-
from odps.udf import annotate
from odps.udf import BaseUDTF
from odps.distcache import get_cache_file
from odps.distcache import get_cache_table
@annotate('string -> string, bigint')
class UDTFExample(BaseUDTF):
"""Read pageid and adid in the file and table to generate dict.
"""
def __init__(self):
import json
cache_file = get_cache_file('test_json.txt')
self.my_dict = json.load(cache_file)
cache_file.close()
records = list(get_cache_table('table_resource1'))
for record in records:
self.my_dict[record[0]] = [record[1]]
"""Enter pageid and generate pageid and all adid values.
"""
def process(self, pageid):
for adid in self.my_dict[pageid]:
self.forward(pageid, adid)
Usage notes
- Use a UDF in a MaxCompute project: The method is similar to that of using built-in functions.
- Use a UDF across projects: Use a UDF of Project B in Project A. The following statement shows an example:
select B:udf_in_other_project(arg0, arg1) as res from table_t;
. For more information about resource sharing across projects, see Cross-project resource access based on packages.
For more information about how to use MaxCompute Studio to develop and call a Python 2 UDTF, see Develop a Python UDF.