是否可以在本地模拟一个 Google Cloud Task?
Is it possible to simulate a Google Cloud Task locally?
我正在开发云 运行 docker 应用程序,该应用程序处理一些长期 运行 数据集成过程。
在实际将容器部署到 Cloud 运行。
之前,我正在努力想出一种方法在本地 run/test 我向 Cloud Tasks 提交的内容
有什么办法吗?
Cloud Tasks 的本地模拟器不可用yet, in some cases you can substitute Cloud Tasks with Pub/Sub。
此外,考虑使用非 Google 解决方案,例如 Cloud-Tasks-In-Process-Emulator, gcloud-tasks-emulator 0.5.1 or Cloud tasks emulator.
据我所知,您想在本地测试云任务!是的,使用 ngrok 是可能的。通过使用 ngrok,您可以访问 public 上的本地应用程序,对于云任务,您需要 public url 来处理任务。
我正在开发云 运行 docker 应用程序,该应用程序处理一些长期 运行 数据集成过程。
在实际将容器部署到 Cloud 运行。
之前,我正在努力想出一种方法在本地 run/test 我向 Cloud Tasks 提交的内容有什么办法吗?
Cloud Tasks 的本地模拟器不可用yet, in some cases you can substitute Cloud Tasks with Pub/Sub。 此外,考虑使用非 Google 解决方案,例如 Cloud-Tasks-In-Process-Emulator, gcloud-tasks-emulator 0.5.1 or Cloud tasks emulator.
据我所知,您想在本地测试云任务!是的,使用 ngrok 是可能的。通过使用 ngrok,您可以访问 public 上的本地应用程序,对于云任务,您需要 public url 来处理任务。