本文介紹Java運行時實現函數實例生命周期回調的方法。

背景信息

當您實現并配置函數實例生命周期回調后,函數計算系統將在相關實例生命周期事件發生時調用對應的回調程序。函數實例生命周期涉及Initializer、PreStop和PreFreeze三種回調。Java運行時已支持三種回調方式。更多信息,請參見函數實例生命周期回調

函數實例生命周期回調程序與正常調用請求計費規則一致,但其執行日志只能在函數日志實例日志高級日志中查詢,調用請求列表不會展示回調程序日志。具體操作,請參見查看實例生命周期回調函數日志

回調方法簽名

Initializer回調簽名

初始化回調程序(Initializer回調)是在函數實例啟動成功之后,運行請求處理程序(Handler)之前執行。函數計算保證在一個實例生命周期內,成功且只成功執行一次Initializer回調。例如您的Initializer回調第一次執行失敗了,系統會重試,直到成功為止,然后再執行您的請求處理程序。因此,您在實現Initializer回調時,需要保證它被重復調用時的正確性。

Initializer回調只有一個context輸入參數,使用方法同事件請求處理程序。

使用Initializer回調需要繼承FunctionInitializer接口,并實現該接口的initialize方法,接口定義如下。
package com.aliyun.fc.runtime;

import java.io.IOException;

/**
 * This is the interface for the initialization operation
 */
public interface FunctionInitializer {

    /**
     * The interface to handle a function compute initialize request
     *
     * @param context The function compute initialize environment context object.
     * @throws IOException IOException during I/O handling
     */
    void initialize(Context context) throws IOException;
}

PreStop回調簽名

預停止回調程序(PreStop回調)在函數實例銷毀前執行,使用PreStop回調需要繼承PreStopHandler接口,并實現該接口的preStop方法,接口定義如下。
package com.aliyun.fc.runtime;

import java.io.IOException;

/**
 * This is the interface for the preStop operation
 */
public interface PreStopHandler {

    /**
     * The interface to handle a function compute preStop request
     *
     * @param context The function compute preStop environment context object.
     * @throws IOException IOException during I/O handling
     */
    void preStop(Context context) throws IOException;
}

PreFreeze回調簽名

預凍結回調程序(PreFreeze回調)在函數實例凍結前執行,使用PreFreeze回調需要繼承PreFreezeHandler接口,并實現該接口的preFreeze方法,接口定義如下。
package com.aliyun.fc.runtime;

import java.io.IOException;

/**
 * This is the interface for the preFreeze operation
 */
public interface PreFreezeHandler {

    /**
     * The interface to handle a function compute preFreeze request
     *
     * @param context The function compute preFreeze environment context object.
     * @throws IOException IOException during I/O handling
     */
    void preFreeze(Context context) throws IOException;
}

簡單示例:流式事件請求處理程序

package example;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import com.aliyun.fc.runtime.Context;
import com.aliyun.fc.runtime.StreamRequestHandler;
import com.aliyun.fc.runtime.FunctionInitializer;
import com.aliyun.fc.runtime.PreFreezeHandler;
import com.aliyun.fc.runtime.PreStopHandler;

public class App implements StreamRequestHandler, FunctionInitializer, PreFreezeHandler, PreStopHandler {
    @Override
    public void initialize(Context context) throws IOException {
        context.getLogger().info("initialize start ...");
    }

    @Override
    public void handleRequest(
            InputStream inputStream, OutputStream outputStream, Context context) throws IOException {
        context.getLogger().info("handlerRequest ...");
        outputStream.write(new String("hello world\n").getBytes());
    }

    @Override
    public void preFreeze(Context context) throws IOException {
        context.getLogger().info("preFreeze start ...");
    }

    @Override
    public void preStop(Context context) throws IOException {
        context.getLogger().info("preStop start ...");
    }
}

配置生命周期回調函數

通過控制臺配置

函數計算控制臺FC函數配置中設置生命周期回調,回調格式為[包名].[類名]::[方法名]。示例如下:db_java_lifecycle
  • Initializer回調程序:設置為example.App::initialize,表示實現example包中App.java文件里的initialize方法。
  • PreFreeze回調程序:設置為example.App::preFreeze,表示實現example包中App.java文件里的preFreeze方法。
  • PreStop回調程序:設置為example.App::preStop,表示實現example包中App.java文件里的preStop方法。

通過Serverless Devs配置

如果使用Serverless Devs工具,需要在s.yaml配置文件中添加Initializer 回調程序PreFreeze 回調程序PreStop 回調程序
  • Initializer回調配置

    function配置下添加initializerinitializationTimeout兩個字段。

  • PreFreeze回調配置

    function配置下添加instanceLifecycleConfig.preFreeze字段,包括handlertimeout兩個字段。

  • PreStop回調配置

    function配置下添加instanceLifecycleConfig.preStop字段,包括handlertimeout兩個字段。

具體的示例如下所示。

edition: 1.0.0
name: hello-world  #  項目名稱
access: default    #  密鑰別名

vars: # 全局變量
  region: cn-shanghai # 地域
  service:
    name: fc-example
    description: 'fc example by serverless devs'

services:
  helloworld: # 業務名稱/模塊名稱
    component: fc
    actions: # 自定義執行邏輯
      pre-deploy: # 在deploy之前運行
        - run: mvn package # 要運行的命令行
          path: ./ # 命令行運行的路徑
    props: #  組件的屬性值
      region: ${vars.region}
      service: ${vars.service}
      function:
        name: java8-lifecycle-hook-demo
        description: 'fc example by serverless devs'
        runtime: java8
        codeUri: ./target
        handler: example.App::handleRequest
        memorySize: 128
        timeout: 60
        initializationTimeout: 60
        initializer: example.App::initialize
        instanceLifecycleConfig:
          preFreeze:
            handler: example.App::preFreeze
            timeout: 30
          preStop:
            handler: example.App::preStop
            timeout: 30

關于Serverless Devs的YAML配置規范,請參見Serverless Devs操作命令

查看實例生命周期回調函數日志

您可以通過函數日志功能查看回調函數日志。

  1. 登錄函數計算控制臺,在左側導航欄,單擊服務及函數
  2. 在頂部菜單欄,選擇地域,然后在服務列表頁面,單擊目標服務。
  3. 函數管理頁面,單擊目標函數名稱,然后在函數詳情頁面,單擊測試函數頁簽。
  4. 測試函數頁簽,單擊測試函數,然后選擇調用日志 > 函數日志
    函數日志頁簽,您可以查看函數的調用日志、Initializer回調日志和PreFreeze回調日志,示例如下。
    2022-10-09 19:26:17 FunctionCompute dotnetcore3.1 runtime inited.
    2022-10-09 19:26:17 FC Initialize Start RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] Initialize start
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] Handle initializer: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] Initialize end
    2022-10-09 19:26:17 FC Initialize End RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 FC Invoke Start RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] Handle request: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 FC Invoke End RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 FC PreFreeze Start RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] PreFreeze start
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] Handle PreFreeze: 793ad2f1-9826-4d9a-90d9-5bf39e******
    2022-10-09 19:26:17 2022-10-09 19:26:17 793ad2f1-9826-4d9a-90d9-5bf39e****** [INFO] PreFreeze end
    2022-10-09 19:26:17 FC PreFreeze End RequestId: 793ad2f1-9826-4d9a-90d9-5bf39e******
    因為每個函數實例會緩存一段時間,不會馬上銷毀,因此不能立即查看PreStop回調日志。如需快速觸發PreStop回調,可更新函數配置或者函數代碼。更新完成后,再次查看函數日志,您可以查看PreStop回調日志。示例如下。
    2022-10-09 19:32:17 FC PreStop Start RequestId: 03be685c-378b-4736-8b08-a67c1d*****
    2022-10-09 19:32:17 2022-10-09 19:32:17 03be685c-378b-4736-8b08-a67c1d***** [INFO] PreStop start
    2022-10-09 19:32:17 2022-10-09 19:32:17 03be685c-378b-4736-8b08-a67c1d***** [INFO] Handle PreStop: 03be685c-378b-4736-8b08-a67c1d*****
    2022-10-09 19:32:17 2022-10-09 19:32:17 03be685c-378b-4736-8b08-a67c1d***** [INFO] PreStop end
    2022-10-09 19:32:17 FC PreStop End RequestId: 03be685c-378b-4736-8b08-a67c1d*****

示例程序

  • java11-mysql函數計算提供的Initializer回調和PreStop回調的示例程序。

    該示例為您展示了如何使用Java運行時的Initializer回調從環境變量中獲取數據庫配置并創建MySQL連接,以及如何使用PreStop回調負責關閉MySQL連接。