mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
29 lines
830 B
Go
29 lines
830 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"google.golang.org/grpc"
|
||
|
"google.golang.org/grpc/keepalive"
|
||
|
)
|
||
|
|
||
|
func NewGrpcServer() *grpc.Server {
|
||
|
return grpc.NewServer(grpc.KeepaliveParams(keepalive.ServerParameters{
|
||
|
Time: 10 * time.Second, // wait time before ping if no activity
|
||
|
Timeout: 20 * time.Second, // ping timeout
|
||
|
}), grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
|
||
|
MinTime: 60 * time.Second, // min time a client should wait before sending a ping
|
||
|
}))
|
||
|
}
|
||
|
|
||
|
func GrpcDial(address string, opts ...grpc.DialOption) (*grpc.ClientConn, error) {
|
||
|
|
||
|
opts = append(opts, grpc.WithInsecure())
|
||
|
opts = append(opts, grpc.WithKeepaliveParams(keepalive.ClientParameters{
|
||
|
Time: 30 * time.Second, // client ping server if no activity for this long
|
||
|
Timeout: 20 * time.Second,
|
||
|
}))
|
||
|
|
||
|
return grpc.Dial(address, opts...)
|
||
|
}
|