示例同步 Lambda 函数¶
本主题包含示例 Lambda 函数的代码,您可以按原样使用该代码创建第一个外部函数,也可以将其用作自定义 Lambda 函数的起点。
此函数是 同步 函数。
此示例是用 Python 编写的。
本主题内容:
此示例同步 Lambda 函数会提取、处理每一行,并返回相应行的值。每个输出值只是一个数组,其中包含输入行中每个值的副本。Snowflake 将返回的数组视为 SQL VARIANT。
import json def lambda_handler(event, context): # 200 is the HTTP status code for "ok". status_code = 200 # The return value will contain an array of arrays (one inner array per input row). array_of_rows_to_return = [ ] try: # From the input parameter named "event", get the body, which contains # the input rows. event_body = event["body"] # Convert the input from a JSON string into a JSON object. payload = json.loads(event_body) # This is basically an array of arrays. The inner array contains the # row number, and a value for each parameter passed to the function. rows = payload["data"] # For each input row in the JSON object... for row in rows: # Read the input row number (the output row number will be the same). row_number = row[0] # Read the first input parameter's value. For example, this can be a # numeric value or a string, or it can be a compound value such as # a JSON structure. input_value_1 = row[1] # Read the second input parameter's value. input_value_2 = row[2] # Compose the output based on the input. This simple example # merely echoes the input by collecting the values into an array that # will be treated as a single VARIANT value. output_value = ["Echoing inputs:", input_value_1, input_value_2] # Put the returned row number and the returned value into an array. row_to_return = [row_number, output_value] # ... and add that array to the main array. array_of_rows_to_return.append(row_to_return) json_compatible_string_to_return = json.dumps({"data" : array_of_rows_to_return}) except Exception as err: # 400 implies some type of error. status_code = 400 # Tell caller what this function could not handle. json_compatible_string_to_return = event_body # Return the return value and HTTP status code. return { 'statusCode': status_code, 'body': json_compatible_string_to_return }
备注
正如 Snowflake 在 创建 API Gateway 端点 的说明中建议的那样,此示例代码假设您使用的是 Lambda 代理集成。