|
|
|
@ -1,22 +1,10 @@
|
|
|
|
|
// Copyright © 2023 OpenIM. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
"log"
|
|
|
|
|
"os"
|
|
|
|
|
"sync"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
@ -35,6 +23,7 @@ type KubernetesConnManager struct {
|
|
|
|
|
namespace string
|
|
|
|
|
dialOptions []grpc.DialOption
|
|
|
|
|
|
|
|
|
|
rpcTargets map[string]string
|
|
|
|
|
selfTarget string
|
|
|
|
|
|
|
|
|
|
mu sync.RWMutex
|
|
|
|
@ -76,11 +65,14 @@ func (k *KubernetesConnManager) initializeConns(serviceName string) error {
|
|
|
|
|
return fmt.Errorf("failed to get endpoints for service %s: %v", serviceName, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// fmt.Println("Endpoints:", endpoints, "endpoints.Subsets:", endpoints.Subsets)
|
|
|
|
|
|
|
|
|
|
var conns []*grpc.ClientConn
|
|
|
|
|
for _, subset := range endpoints.Subsets {
|
|
|
|
|
for _, address := range subset.Addresses {
|
|
|
|
|
target := fmt.Sprintf("%s:%d", address.IP, port)
|
|
|
|
|
conn, err := grpc.Dial(target, grpc.WithTransportCredentials(insecure.NewCredentials()))
|
|
|
|
|
// fmt.Println("IP target:", target)
|
|
|
|
|
conn, err := grpc.Dial(target, append(k.dialOptions, grpc.WithTransportCredentials(insecure.NewCredentials()))...)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return fmt.Errorf("failed to dial endpoint %s: %v", target, err)
|
|
|
|
|
}
|
|
|
|
@ -89,10 +81,8 @@ func (k *KubernetesConnManager) initializeConns(serviceName string) error {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
k.mu.Lock()
|
|
|
|
|
defer k.mu.Unlock()
|
|
|
|
|
k.connMap[serviceName] = conns
|
|
|
|
|
|
|
|
|
|
// go k.watchEndpoints(serviceName)
|
|
|
|
|
k.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
@ -100,23 +90,23 @@ func (k *KubernetesConnManager) initializeConns(serviceName string) error {
|
|
|
|
|
// GetConns returns gRPC client connections for a given Kubernetes service name.
|
|
|
|
|
func (k *KubernetesConnManager) GetConns(ctx context.Context, serviceName string, opts ...grpc.DialOption) ([]*grpc.ClientConn, error) {
|
|
|
|
|
k.mu.RLock()
|
|
|
|
|
conns, exists := k.connMap[serviceName]
|
|
|
|
|
defer k.mu.RUnlock()
|
|
|
|
|
|
|
|
|
|
conns, exists := k.connMap[serviceName]
|
|
|
|
|
k.mu.RUnlock()
|
|
|
|
|
if exists {
|
|
|
|
|
return conns, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
k.mu.Lock()
|
|
|
|
|
defer k.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
// Check if another goroutine has already initialized the connections when we released the read lock
|
|
|
|
|
conns, exists = k.connMap[serviceName]
|
|
|
|
|
if exists {
|
|
|
|
|
return conns, nil
|
|
|
|
|
}
|
|
|
|
|
k.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
if err := k.initializeConns(serviceName); err != nil {
|
|
|
|
|
fmt.Println("Failed to initialize connections:", err)
|
|
|
|
|
return nil, fmt.Errorf("failed to initialize connections for service %s: %v", serviceName, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -125,26 +115,64 @@ func (k *KubernetesConnManager) GetConns(ctx context.Context, serviceName string
|
|
|
|
|
|
|
|
|
|
// GetConn returns a single gRPC client connection for a given Kubernetes service name.
|
|
|
|
|
func (k *KubernetesConnManager) GetConn(ctx context.Context, serviceName string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
|
|
|
|
|
port, err := k.getServicePort(serviceName)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
var target string
|
|
|
|
|
|
|
|
|
|
fmt.Println("SVC port:", port)
|
|
|
|
|
if k.rpcTargets[serviceName] == "" {
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
|
|
svcPort, err := k.getServicePort(serviceName)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
target := fmt.Sprintf("%s.%s.svc.cluster.local:%d", serviceName, k.namespace, port)
|
|
|
|
|
target = fmt.Sprintf("%s.%s.svc.cluster.local:%d", serviceName, k.namespace, svcPort)
|
|
|
|
|
|
|
|
|
|
fmt.Println("SVC target:", target)
|
|
|
|
|
// fmt.Println("SVC target:", target)
|
|
|
|
|
} else {
|
|
|
|
|
target = k.rpcTargets[serviceName]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return grpc.DialContext(
|
|
|
|
|
ctx,
|
|
|
|
|
target,
|
|
|
|
|
append([]grpc.DialOption{grpc.WithTransportCredentials(insecure.NewCredentials())}, k.dialOptions...)...,
|
|
|
|
|
append([]grpc.DialOption{
|
|
|
|
|
grpc.WithTransportCredentials(insecure.NewCredentials()),
|
|
|
|
|
grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(1024*1024*10), grpc.MaxCallSendMsgSize(1024*1024*20)),
|
|
|
|
|
}, k.dialOptions...)...,
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetSelfConnTarget returns the connection target for the current service.
|
|
|
|
|
func (k *KubernetesConnManager) GetSelfConnTarget() string {
|
|
|
|
|
if k.selfTarget == "" {
|
|
|
|
|
hostName := os.Getenv("HOSTNAME")
|
|
|
|
|
|
|
|
|
|
pod, err := k.clientset.CoreV1().Pods(k.namespace).Get(context.Background(), hostName, metav1.GetOptions{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Printf("failed to get pod %s: %v \n", hostName, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for pod.Status.PodIP == "" {
|
|
|
|
|
pod, err = k.clientset.CoreV1().Pods(k.namespace).Get(context.TODO(), hostName, metav1.GetOptions{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
log.Printf("Error getting pod: %v \n", err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
time.Sleep(3 * time.Second)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var selfPort int32
|
|
|
|
|
|
|
|
|
|
for _, port := range pod.Spec.Containers[0].Ports {
|
|
|
|
|
if port.ContainerPort != 10001 {
|
|
|
|
|
selfPort = port.ContainerPort
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
k.selfTarget = fmt.Sprintf("%s:%d", pod.Status.PodIP, selfPort)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return k.selfTarget
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -175,6 +203,7 @@ func (k *KubernetesConnManager) Close() {
|
|
|
|
|
func (k *KubernetesConnManager) Register(serviceName, host string, port int, opts ...grpc.DialOption) error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (k *KubernetesConnManager) UnRegister() error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
@ -184,6 +213,8 @@ func (k *KubernetesConnManager) GetUserIdHashGatewayHost(ctx context.Context, us
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (k *KubernetesConnManager) getServicePort(serviceName string) (int32, error) {
|
|
|
|
|
var svcPort int32
|
|
|
|
|
|
|
|
|
|
svc, err := k.clientset.CoreV1().Services(k.namespace).Get(context.Background(), serviceName, metav1.GetOptions{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
fmt.Print("namespace:", k.namespace)
|
|
|
|
@ -194,7 +225,15 @@ func (k *KubernetesConnManager) getServicePort(serviceName string) (int32, error
|
|
|
|
|
return 0, fmt.Errorf("service %s has no ports defined", serviceName)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return svc.Spec.Ports[0].Port, nil
|
|
|
|
|
for _, port := range svc.Spec.Ports {
|
|
|
|
|
// fmt.Println(serviceName, " Now Get Port:", port.Port)
|
|
|
|
|
if port.Port != 10001 {
|
|
|
|
|
svcPort = port.Port
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return svcPort, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// watchEndpoints listens for changes in Pod resources.
|
|
|
|
@ -229,68 +268,3 @@ func (k *KubernetesConnManager) handleEndpointChange(obj interface{}) {
|
|
|
|
|
fmt.Printf("Error initializing connections for %s: %v\n", serviceName, err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// =================
|
|
|
|
|
|
|
|
|
|
// initEndpoints initializes connections by fetching all available endpoints in the specified namespace.
|
|
|
|
|
|
|
|
|
|
// func (k *KubernetesConnManager) initEndpoints() error {
|
|
|
|
|
// k.mu.Lock()
|
|
|
|
|
// defer k.mu.Unlock()
|
|
|
|
|
|
|
|
|
|
// pods, err := k.clientset.CoreV1().Pods(k.namespace).List(context.TODO(), metav1.ListOptions{})
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return fmt.Errorf("failed to list pods: %v", err)
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// for _, pod := range pods.Items {
|
|
|
|
|
// if pod.Status.Phase == v1.PodRunning {
|
|
|
|
|
// target := fmt.Sprintf("%s:%d", address.IP, port)
|
|
|
|
|
// conn, err := grpc.Dial(target, grpc.WithTransportCredentials(insecure.NewCredentials()))
|
|
|
|
|
// conn, err := k.createGRPCConnection(pod)
|
|
|
|
|
// if err != nil {
|
|
|
|
|
// return fmt.Errorf("failed to create GRPC connection for pod %s: %v", pod.Name, err)
|
|
|
|
|
// }
|
|
|
|
|
// k.connMap[pod.Name] = append(k.connMap[pod.Name], conn)
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// return nil
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// -----
|
|
|
|
|
|
|
|
|
|
// func (k *KubernetesConnManager) watchEndpoints1(serviceName string) {
|
|
|
|
|
// // watch for changes to the service's endpoints
|
|
|
|
|
// informerFactory := informers.NewSharedInformerFactory(k.clientset, time.Minute)
|
|
|
|
|
// endpointsInformer := informerFactory.Core().V1().Endpoints().Informer()
|
|
|
|
|
|
|
|
|
|
// endpointsInformer.AddEventHandler(cache.ResourceEventHandlerFuncs{
|
|
|
|
|
// AddFunc: func(obj interface{}) {
|
|
|
|
|
// eps := obj.(*v1.Endpoints)
|
|
|
|
|
// if eps.Name == serviceName {
|
|
|
|
|
// k.initializeConns(serviceName)
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// UpdateFunc: func(oldObj, newObj interface{}) {
|
|
|
|
|
// eps := newObj.(*v1.Endpoints)
|
|
|
|
|
// if eps.Name == serviceName {
|
|
|
|
|
// k.initializeConns(serviceName)
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// DeleteFunc: func(obj interface{}) {
|
|
|
|
|
// eps := obj.(*v1.Endpoints)
|
|
|
|
|
// if eps.Name == serviceName {
|
|
|
|
|
// k.mu.Lock()
|
|
|
|
|
// defer k.mu.Unlock()
|
|
|
|
|
// for _, conn := range k.connMap[serviceName] {
|
|
|
|
|
// _ = conn.Close()
|
|
|
|
|
// }
|
|
|
|
|
// delete(k.connMap, serviceName)
|
|
|
|
|
// }
|
|
|
|
|
// },
|
|
|
|
|
// })
|
|
|
|
|
|
|
|
|
|
// informerFactory.Start(wait.NeverStop)
|
|
|
|
|
// informerFactory.WaitForCacheSync(wait.NeverStop)
|
|
|
|
|
// }
|
|
|
|
|