/healthz 部署在 Google App Engine returns 404 上的应用程序的路由
/healthz route of an app deployed on Google App Engine returns 404
在部署在 Google App Engine 上的应用程序上对 /healthz
路由的 HTTP 请求似乎没有到达应用程序内的 /healthz
端点。
相反,一个 404
页面被提供,显然来自 GCP 基础设施。
我能知道如何覆盖此行为并使这些请求到达我的应用程序吗?
谢谢。
。
更多背景知识:
我正在 Google App Engine 上部署 Streamlit 应用程序。
Streamlit web UI 似乎定期向 /healthz
端点发送请求,当这些请求失败时,Streamlit 应用程序停止工作并显示如下错误消息。
一些 URL 以 z
结尾的路径,包括 /healthz
,保留供 App Engine 使用,不能使用。
我设法以一种相当讨厌的方式解决了 healthz 冲突。我还启用了 session_affinity
来帮助进行 websocket 连接。
这是我的 app.yaml
,我将在下面解释 healthz 修复:
runtime: python
env: flex
# This is a horrible workaround to get streamlit working on app engine
# https://discuss.streamlit.io/t/has-anyone-deployed-to-google-cloud-platform/931/20
entrypoint: find ${VIRTUAL_ENV}/lib/python3.6/site-packages/streamlit -type f \( -iname \*.py -o -iname \*.js \) -print0 | xargs -0 sed -i 's/healthz/health-check/g' && streamlit run sim_v3.py --server.port $PORT --server.enableCORS=false
runtime_config:
python_version: 3
manual_scaling:
instances: 1
network:
session_affinity: true
入侵发生在入口点命令中。我在 python virtualenv dependencies 文件夹 site-packages
中找到所有文件,它们是 .py
或 .js
并将 healthz
替换为 health-check
如果您打算支持已部署的 streamlit 应用程序,我建议您避免使用此解决方案。如果
它会崩溃
- python 的版本在 google python 运行时发生变化
- streamlit 进行的更改会破坏此内联替换
- google 决定更改他们的文件夹命名约定
在部署在 Google App Engine 上的应用程序上对 /healthz
路由的 HTTP 请求似乎没有到达应用程序内的 /healthz
端点。
相反,一个 404
页面被提供,显然来自 GCP 基础设施。
我能知道如何覆盖此行为并使这些请求到达我的应用程序吗?
谢谢。
更多背景知识:
我正在 Google App Engine 上部署 Streamlit 应用程序。
Streamlit web UI 似乎定期向 /healthz
端点发送请求,当这些请求失败时,Streamlit 应用程序停止工作并显示如下错误消息。
一些 URL 以 z
结尾的路径,包括 /healthz
,保留供 App Engine 使用,不能使用。
我设法以一种相当讨厌的方式解决了 healthz 冲突。我还启用了 session_affinity
来帮助进行 websocket 连接。
这是我的 app.yaml
,我将在下面解释 healthz 修复:
runtime: python
env: flex
# This is a horrible workaround to get streamlit working on app engine
# https://discuss.streamlit.io/t/has-anyone-deployed-to-google-cloud-platform/931/20
entrypoint: find ${VIRTUAL_ENV}/lib/python3.6/site-packages/streamlit -type f \( -iname \*.py -o -iname \*.js \) -print0 | xargs -0 sed -i 's/healthz/health-check/g' && streamlit run sim_v3.py --server.port $PORT --server.enableCORS=false
runtime_config:
python_version: 3
manual_scaling:
instances: 1
network:
session_affinity: true
入侵发生在入口点命令中。我在 python virtualenv dependencies 文件夹 site-packages
中找到所有文件,它们是 .py
或 .js
并将 healthz
替换为 health-check
如果您打算支持已部署的 streamlit 应用程序,我建议您避免使用此解决方案。如果
它会崩溃- python 的版本在 google python 运行时发生变化
- streamlit 进行的更改会破坏此内联替换
- google 决定更改他们的文件夹命名约定