Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰 [Bug]: Logger module causes OOM with ${bytesSent} and ${bytesReceived} #3060

Open
3 tasks done
shell-skrimp opened this issue Jul 4, 2024 · 10 comments 路 May be fixed by #3066
Open
3 tasks done

馃悰 [Bug]: Logger module causes OOM with ${bytesSent} and ${bytesReceived} #3060

shell-skrimp opened this issue Jul 4, 2024 · 10 comments 路 May be fixed by #3066
Assignees

Comments

@shell-skrimp
Copy link

shell-skrimp commented Jul 4, 2024

Bug Description

When download large files the process can be OOM'd. I have tried serving ~2GB ISOs and I've noticed that memory is not reclaimed.

How to Reproduce

Steps to reproduce the behavior:

  1. Setup a go-fiber app using static being sure to add a large file (such as an ISO) to the static directory, for example:
	app.Static("/", "./mydir", fiber.Static{
		Download: true,
	})
  1. Download with curl multiple times (until memory is exhausted): curl localhost/isos/some.iso
  2. This will result in a large amount of memory being used. Under normal circumstances about 33MB RSS is used. Once I've downloaded a 2GB iso, the process is now using 4128M. If I download the file again, this amount of memory increases. Eventually the process is OOM'd.
  3. I have tried tweaking some functionality such as disabling keep-alives as well as setting Download: true (in static) and CacheDuration: -1

pprof (if it helps):

(-inuse_space)

Showing nodes accounting for 2GB, 99.92% of 2GB total
Dropped 8 nodes (cum <= 0.01GB)
Showing top 10 nodes out of 11
      flat  flat%   sum%        cum   cum%
       2GB 99.92% 99.92%        2GB 99.92%  github.com/valyala/bytebufferpool.(*ByteBuffer).ReadFrom
         0     0% 99.92%        2GB 99.92%  github.com/gofiber/fiber/v2.(*App).handler
         0     0% 99.92%        2GB 99.92%  github.com/gofiber/fiber/v2.(*App).next
         0     0% 99.92%        2GB 99.92%  github.com/gofiber/fiber/v2/middleware/logger.New.func3
         0     0% 99.92%        2GB 99.92%  github.com/gofiber/fiber/v2/middleware/logger.createTagMap.func12
         0     0% 99.92%        2GB 99.92%  github.com/valyala/fasthttp.(*Response).Body
         0     0% 99.92%        2GB 99.92%  github.com/valyala/fasthttp.(*Server).serveConn
         0     0% 99.92%        2GB 99.92%  github.com/valyala/fasthttp.(*bigFileReader).WriteTo
         0     0% 99.92%        2GB 99.92%  github.com/valyala/fasthttp.(*workerPool).getCh.func1
         0     0% 99.92%        2GB 99.92%  github.com/valyala/fasthttp.(*workerPool).workerFunc

(-alloc_space)

Showing top 10 nodes out of 11
      flat  flat%   sum%        cum   cum%
      12GB   100%   100%       12GB   100%  github.com/valyala/bytebufferpool.(*ByteBuffer).ReadFrom
         0     0%   100%       12GB   100%  github.com/gofiber/fiber/v2.(*App).handler
         0     0%   100%       12GB   100%  github.com/gofiber/fiber/v2.(*App).next

Expected Behavior

File should be served without OOMing.

Fiber Version

v2.52.4

Code Snippet (optional)

package main

import (
	"log"
	"os"

	"github.com/gofiber/fiber/v2"
	"github.com/gofiber/fiber/v2/middleware/logger"
)

func main() {
	app := fiber.New()

	// comment out to "fix" bug
	app.Use(logger.New(logger.Config{
		TimeZone:   "UTC",
		TimeFormat: "02/Jan/2006:15:04:05 -0700",
		Format:     "${ip} - - [${time}] \"${method} ${path}${queryParams} HTTP/1.1\" ${status} ${bytesSent} \"${referer}\" \"${ua}\"\n",
		Output:     os.Stdout,
	}))

	app.Static("/", "./static", fiber.Static{
		Browse:        true,
		CacheDuration: -1,
	})

	v1 := app.Group("/api/v1")

	v1.Get("/start", func(c *fiber.Ctx) error {
		return nil
	})
	v1.Get("/start2", func(c *fiber.Ctx) error {
		return nil
	})

	v1.Get("/start3", func(c *fiber.Ctx) error {
		return nil
	})
	v1.Get("/start4", func(c *fiber.Ctx) error {
		return nil
	})

	log.Fatal(app.Listen(":3000"))
}

Checklist:

  • I agree to follow Fiber's Code of Conduct.
  • I have checked for existing issues that describe my problem prior to opening this one.
  • I understand that improperly formatted bug reports may be closed without explanation.
@gaby
Copy link
Member

gaby commented Jul 4, 2024

@shell-skrimp Your example code says "fber/v3", but the errors say "fiber/v2". Which one is it?

@shell-skrimp
Copy link
Author

@gaby I've updated the sample to show the bug. The bug occurs when app.Use(logger.New(logger.Config{ is enabled. If you comment out that block of code there is no bug.

@efectn
Copy link
Member

efectn commented Jul 4, 2024

@gaby I've updated the sample to show the bug. The bug occurs when app.Use(logger.New(logger.Config{ is enabled. If you comment out that block of code there is no bug.

Does this issue still occur if you remove ${bytesSent} from logger format?

@ReneWerner87 ReneWerner87 added the v2 label Jul 4, 2024
@shell-skrimp
Copy link
Author

@efectn if I set that to - there is no bug

@ReneWerner87
Copy link
Member

ok then it is related to this line

return appendInt(output, len(c.Response().Body()))

@shell-skrimp
Copy link
Author

I can confirm on main program when I omit or change ${bytesSent} to - there is no bug; I will just do that for now.

@shell-skrimp shell-skrimp changed the title 馃悰 [Bug]: OOM when downloading large static files 馃悰 [Bug]: Logger module causes OOM with ${bytesSent} Jul 4, 2024
@shell-skrimp
Copy link
Author

@ReneWerner87 I believe that's the bug because it reads from the body without closing?

@ReneWerner87
Copy link
Member

Close is not really needed there. Its something else
We need to debug

@gaby
Copy link
Member

gaby commented Jul 5, 2024

This also happens with {bytesReceived} tag.

@shell-skrimp shell-skrimp changed the title 馃悰 [Bug]: Logger module causes OOM with ${bytesSent} 馃悰 [Bug]: Logger module causes OOM with ${bytesSent} and ${bytesReceived} Jul 5, 2024
@gaby gaby self-assigned this Jul 9, 2024
@gaby
Copy link
Member

gaby commented Jul 9, 2024

@shell-skrimp Fix has been submitted for both Fiber/v2 and Fiber/v3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants