1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Fix gcplogs memory/connection leak

The cloud logging client should be closed when the log driver is closed. Otherwise dockerd will keep a gRPC connection to the logging endpoint open indefinitely.

This results in a slow leak of tcp sockets (1) and memory (~200Kb) any time that a container using `--log-driver=gcplogs` is terminates.

Signed-off-by: Patrick Haas <patrickhaas@google.com>
This commit is contained in:
Patrick Haas 2020-09-30 14:52:22 -07:00
parent 46cdcd206c
commit ef553e14a4

View file

@ -54,6 +54,7 @@ func init() {
}
type gcplogs struct {
client *logging.Client
logger *logging.Logger
instance *instanceInfo
container *containerInfo
@ -170,6 +171,7 @@ func New(info logger.Info) (logger.Logger, error) {
}
l := &gcplogs{
client: c,
logger: lg,
container: &containerInfo{
Name: info.ContainerName,
@ -237,7 +239,7 @@ func (l *gcplogs) Log(m *logger.Message) error {
func (l *gcplogs) Close() error {
l.logger.Flush()
return nil
return l.client.Close()
}
func (l *gcplogs) Name() string {