Yes you're correct it's more than 100% & GKE internal.
Memory usage for all containers in the cluster is divided by total memory requests for those containers. This can be more than 100% if total usage exceeds the total request.
Memory utilization:
The memory utilization of containers that can be attributed to a resource within the selected time span.
The metric used is kubernetes.io/container/memory/request_utilization. This Metrics API offers a basic set of metrics to support automatic scaling and similar use cases. This API makes information available about resource usage for nodes and pods, including metrics for CPU and memory. If you deploy the Metrics API into your cluster, clients of the Kubernetes API can then query for this information.
There are 2 types of memory available as below :
1)Evictable memory is memory that will be removed from the resource if usage becomes too high.
2)Non-evictable memory usage exceeds the limits, the container may be terminated. For more information about resource limits, see and use Requests and limits it may help to resolve your issue.
A Container is guaranteed to have as much memory as it requests, but is not allowed to use more memory than its limit.Assign Memory Resources to Containers and Pods for more information.