Why does App Engine Flexible Enviroment not allow WebSockets and HTTP/2 traffic?

♀尐吖头ヾ 提交于 2019-12-10 12:14:45

问题


I'm more interested in WebSocket, but after reading documentation here, I was surprised when I read that:

The following features are not supported by App Engine flexible environment: HTTP/2 traffic to the backend service, Websockets , HTTP requests that directly access instances

I was planning to build an app with gorilla-websocket, but now that I've read this, I don't know how I could accomplish it. I understand WebSocket is not get supported in App Engine Standard Environment, but why not in the Flexible Environment?


回答1:


There are other options:

Like the standard environment, the flexible environment does not support websockets. If you need to use websockets you can use Compute Engine or Kubernetes Engine.

as stated here.

You can follow the feature request too.


Update:

Currently websocket support is available for following languages

  • Python
  • Java
  • Node.js

But it's in beta

Docs: https://cloud.google.com/appengine/docs/flexible/python/using-websockets-and-session-affinity



来源:https://stackoverflow.com/questions/49481903/why-does-app-engine-flexible-enviroment-not-allow-websockets-and-http-2-traffic

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!