使用 Firestore 處理工作階段

本教學課程說明如何在 Cloud Run 上處理工作階段。

許多應用程式需要處理工作階段以進行驗證和使用者偏好設定。Jetty 架構隨附以記憶體為基礎的實作,以執行此函式。但是,此實作並不適合可從多個執行個體提供的應用程式,因為記錄在一個執行個體中的工作階段可能與其他執行個體不同。本教學課程說明如何在 Cloud Run 上處理工作階段。

目標

  • 編寫應用程式。
  • 在本機執行應用程式。
  • 在 Cloud Run 上部署應用程式。

費用

在本文件中,您會使用下列 Google Cloud的計費元件:

如要根據預測用量估算費用,請使用 Pricing Calculator

初次使用 Google Cloud 的使用者可能符合免費試用期資格。

完成本文所述工作後,您可以刪除建立的資源,避免繼續計費,詳情請參閱「清除所用資源」。

事前準備

  1. 登入 Google Cloud 帳戶。如果您是 Google Cloud新手,歡迎 建立帳戶,親自評估產品在實際工作環境中的成效。新客戶還能獲得價值 $300 美元的免費抵免額,可用於執行、測試及部署工作負載。
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  3. Verify that billing is enabled for your Google Cloud project.

  4. Enable the Firestore API.

    Roles required to enable APIs

    To enable APIs, you need the Service Usage Admin IAM role (roles/serviceusage.serviceUsageAdmin), which contains the serviceusage.services.enable permission. Learn how to grant roles.

    Enable the API

  5. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Roles required to select or create a project

    • Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
    • Create a project: To create a project, you need the Project Creator role (roles/resourcemanager.projectCreator), which contains the resourcemanager.projects.create permission. Learn how to grant roles.

    Go to project selector

  6. Verify that billing is enabled for your Google Cloud project.

  7. Enable the Firestore API.

    Roles required to enable APIs

    To enable APIs, you need the Service Usage Admin IAM role (roles/serviceusage.serviceUsageAdmin), which contains the serviceusage.services.enable permission. Learn how to grant roles.

    Enable the API

  8. 前往 Google Cloud 控制台,並在 Cloud Shell 中開啟應用程式。

    前往 Cloud Shell

    Cloud Shell 可讓您直接在瀏覽器中使用指令列工具存取雲端資源。在瀏覽器中開啟 Cloud Shell,然後按一下「繼續」,將程式碼範例和變更下載到應用程式目錄中。

  9. 在 Cloud Shell 中,將 gcloud CLI 設為使用新的 Google Cloud 專案:
    # Configure gcloud for your project
    gcloud config set project YOUR_PROJECT_ID
    
  10. 更新 Maven,預設使用 Java 11:
    sudo update-alternatives --config java
    
    出現提示時,請輸入數字來選取 Java 11。記下該版本列出的路徑。
  11. 將上一個步驟複製的路徑匯出為環境變數:
    export JAVA_HOME=java-11-path
    

網頁應用程式

這個應用程式為每個使用者顯示不同語言的問候語。系統一律會用與上次相同的語言問候回訪者。

多個應用程式視窗會顯示不同語言的問候語。

您必須先將目前使用者的相關資訊儲存在工作階段中,應用程式才能儲存使用者的偏好設定。這個範例應用程式使用 WebFilter 擷取及更新 Firestore 中的工作階段資料。

@Override
public void init(FilterConfig config) throws ServletException {
  // Initialize local copy of datastore session variables.
  firestore = FirestoreOptions.getDefaultInstance().getService();
  sessions = firestore.collection("sessions");

  try {
    // Delete all sessions unmodified for over two days.
    Calendar cal = Calendar.getInstance();
    cal.setTime(new Date());
    cal.add(Calendar.HOUR, -48);
    Date twoDaysAgo = Calendar.getInstance().getTime();
    QuerySnapshot sessionDocs =
        sessions.whereLessThan("lastModified", dtf.format(twoDaysAgo)).get().get();
    for (QueryDocumentSnapshot snapshot : sessionDocs.getDocuments()) {
      snapshot.getReference().delete();
    }
  } catch (InterruptedException | ExecutionException e) {
    throw new ServletException("Exception initializing FirestoreSessionFilter.", e);
  }
}

下圖說明 Firestore 如何處理 Cloud Run 應用程式的工作階段。

架構圖:使用者、Cloud Run、Firestore。

HttpServletRequest 會使用 Cookie 儲存本機工作階段的專屬 ID,該 ID 對應於 Firestore 中包含工作階段詳細資料的文件。

刪除工作階段

Firestore 不會刪除舊的或過期的工作階段。您可以刪除 Google Cloud 控制台中的工作階段資料,或是實作自動化的刪除策略。如果您使用 Memcache 或 Redis 這類工作階段儲存解決方案,則會自動刪除過期的工作階段。

在本機環境中執行

  1. 啟動 HTTP 伺服器:

    mvn jetty:run
    
  2. 在網路瀏覽器中查看應用程式:

    Cloud Shell

    在 Cloud Shell 工具列中,按一下 [Web preview] (網頁預覽) 網頁預覽,然後選取 [Preview on port 8080] (透過以下通訊埠預覽:8080)

    本機電腦

    透過瀏覽器前往以下網址:http://localhost:8080

    您會看到以下五個問候語其中之一:「Hello World」、「Hallo Welt」、「Hola mundo」、「Salut le Monde」或「Ciao Mondo」。如果您在其他瀏覽器或無痕模式下開啟頁面,語言就會變更。您可以在Google Cloud 控制台中查看和編輯工作階段資料。

     Google Cloud 控制台中的 Firestore 工作階段。

  3. 如要停止 HTTP 伺服器,請在您的終端機視窗中,按下 Control+C

在 Cloud Run 上部署及執行

您可以使用 Cloud Run 建構及部署應用程式,即使是處在高負載和大量資料的情況下,應用程式仍會穩定可靠地執行。

  1. 在終端機視窗中,使用 Jib Maven 外掛程式,將程式碼的映像檔建構及部署至 Google Container Registry (GCR)

    mvn clean package jib:build

  2. 將應用程式部署至 Cloud Run:

       gcloud beta run deploy session-handling --image gcr.io/MY_PROJECT/session-handling 
    --platform managed --region us-central1 --memory 512M

    MY_PROJECT 替換為您建立的Google Cloud 專案 ID。前往這個指令傳回的網址,即可查看網頁載入期間的工作階段資料保留情形。

應用程式偵錯

如果無法連線至 Cloud Run 應用程式,請檢查下列事項:

  1. 檢查 gcloud 部署指令是否順利完成,且未輸出任何錯誤。如果發生錯誤 (例如 message=Build failed),請修正錯誤,並再次嘗試部署 Cloud Run 應用程式
  2. 前往 Google Cloud 控制台的「Logs Explorer」頁面。

    前往「Logs Explorer」(記錄檔探索工具) 頁面

    1. 在「Recently selected resources」(最近選取的資源) 下拉式清單中,按一下「Cloud Run Application」(Cloud Run 應用程式),然後按一下「All module_id」(所有 module_id)。 系統隨即會顯示您造訪應用程式時的要求清單。如果您沒看見要求清單,請確認您已從下拉式清單中選取「All module_id」。如果在Google Cloud 控制台中看到錯誤訊息,請檢查應用程式的程式碼是否與「編寫網頁應用程式」一節中的程式碼相符。

    2. 確認已啟用 Firestore API。

清除所用資源

刪除專案

  1. 前往 Google Cloud 控制台的「Manage resources」(管理資源) 頁面。

    前往「Manage resources」(管理資源)

  2. 在專案清單中選取要刪除的專案,然後點選「Delete」(刪除)
  3. 在對話方塊中輸入專案 ID,然後按一下 [Shut down] (關閉) 以刪除專案。

刪除 Cloud Run 執行個體

從 Cloud Run 刪除服務。

後續步驟