Reputation: 31
We want to create a backend service for our Flex App engine.
in the cloud logs and my GCP invoice, I can see that I already have an HTTP load balancer, but when I go to network services -> Load balancing I don't find my load balancer.
I think the load balancer is auto-created by GCP once you create an APP engine. But How can I create a back End service to it. the goal is to customize the Load balancer to better handle web sockets time-outs.
Upvotes: 0
Views: 170
Reputation: 16553
Yes, App Engine handles the load balancer automatically. While this is very convenient it means that you can't modify the load balancer to use a backend service.
To accomplish this, you'll need to create and configure your own load balancer. I've never done this but I expect that a kubernetes cluster could be used.
Upvotes: 2