Coder Social home page Coder Social logo

Comments (8)

welcome avatar welcome commented on May 17, 2024

Thanks for opening your first issue here! ๐ŸŽ‰ Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord

from fiber.

H0llyW00dzZ avatar H0llyW00dzZ commented on May 17, 2024

Bug Description

I have a data race, when I call *fiber.App.Shutdown() methods and have some unprocessed requests , which handlers uses a request ctx

Snippet of data race message:

Previous read at 0x00c00023d1f8 by goroutine 45:
  github.com/valyala/fasthttp.(*RequestCtx).Done()
      ~/go/pkg/mod/github.com/valyala/[email protected]/server.go:2726 +0x6a
  context.(*cancelCtx).propagateCancel.func2()
      /usr/local/go/src/context/context.go:511 +0x62

How to Reproduce

  1. Handler that uses request ctx for needed funcs
  2. Run app with -race flag
  3. Do some requests to server and start shutdown
  4. See data race by *fiber.RequestCtx

Expected Behavior

I think this data race was not in plan

Fiber Version

2.52.4

Code Snippet (optional)

func (h *Handler) CreateTopic(c *fiber.Ctx) error {
	topic := new(feedback.Topic)

	if err := c.BodyParser(topic); err != nil {
		return err
	}

	id, err := h.feedbackService.CreateTopic(c.Context(), topic)
	if err != nil {
		return err
	}

	return c.Status(fiber.StatusCreated).JSON(map[string]string{"id": id})
}

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.

You have to use this method, I think, because it works fine for me, and I'm using Go 1.22.1

example:

// waitForShutdownSignal blocks execution until an OS interrupt or SIGTERM signal is received,
// then it gracefully shuts down the Fiber app within the specified timeout.
func waitForShutdownSignal(shutdownTimeout time.Duration, app *fiber.App, db database.Service) {
	// Setting up signal capturing.
	quit := make(chan os.Signal, 1)
	signal.Notify(quit, os.Interrupt, syscall.SIGTERM)

	// Blocking until a signal is received.
	sig := <-quit
	Logger.LogInfof("Shutting down server... reason: %v", sig)

	// Start graceful shutdown in a separate goroutine.
	go func() {
		// Shutdown the Fiber app
		if err := app.Shutdown(); err != nil {
			Logger.LogErrorf("Server forced to shutdown: %v", err)
		}

		// Clean up resources and close the database connection
		cleanup(db)
	}()

	// Create a timer that will wait for the shutdownTimeout to elapse
	shutdownTimer := time.NewTimer(shutdownTimeout)
	defer shutdownTimer.Stop()

	// Wait for the timeout to elapse
	<-shutdownTimer.C
	Logger.LogInfo("Server exiting")
}

logs:

$ go run cmd/api/main.go
2024/03/31 14:44:15 [H0llyW00dzZ] [INFO] Starting server on :8080

 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚                    H0llyW00dzZ                    โ”‚
 โ”‚                   Fiber v2.52.4                   โ”‚
 โ”‚               http://127.0.0.1:8080               โ”‚
 โ”‚       (bound on host 0.0.0.0 and port 8080)       โ”‚
 โ”‚                                                   โ”‚
 โ”‚ Handlers ............ 534 Processes ........... 1 โ”‚
 โ”‚ Prefork ....... Disabled  PID .............. 6860 โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

2024/03/31 14:44:22 [H0llyW00dzZ] [INFO] Shutting down server... reason: interrupt
2024/03/31 14:44:23 [H0llyW00dzZ] [INFO] Disconnected from database: defaultdb
2024/03/31 14:44:23 [H0llyW00dzZ] [INFO] Database connection closed.
2024/03/31 14:44:27 [H0llyW00dzZ] [INFO] Server exiting

from fiber.

H0llyW00dzZ avatar H0llyW00dzZ commented on May 17, 2024

with -race flag:

$ go run cmd/api/main.go -race flag
2024/03/31 15:05:12 [H0llyW00dzZ] [INFO] Starting server on :8080

 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚                    H0llyW00dzZ                    โ”‚
 โ”‚                   Fiber v2.52.4                   โ”‚
 โ”‚               http://127.0.0.1:8080               โ”‚
 โ”‚       (bound on host 0.0.0.0 and port 8080)       โ”‚
 โ”‚                                                   โ”‚
 โ”‚ Handlers ............ 534 Processes ........... 1 โ”‚
 โ”‚ Prefork ....... Disabled  PID ............. 16576 โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Shutting down server... reason: interrupt
2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Disconnected from database: defaultdb
2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Database connection closed.
2024/03/31 15:05:27 [H0llyW00dzZ] [INFO] Server exiting

from fiber.

gaby avatar gaby commented on May 17, 2024

Doesn't running with -race make your program super slow?

from fiber.

cherryReptile avatar cherryReptile commented on May 17, 2024

Doesn't running with -race make your program super slow?

It is only for tests

from fiber.

cherryReptile avatar cherryReptile commented on May 17, 2024

with -race flag:

$ go run cmd/api/main.go -race flag
2024/03/31 15:05:12 [H0llyW00dzZ] [INFO] Starting server on :8080

 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚                    H0llyW00dzZ                    โ”‚
 โ”‚                   Fiber v2.52.4                   โ”‚
 โ”‚               http://127.0.0.1:8080               โ”‚
 โ”‚       (bound on host 0.0.0.0 and port 8080)       โ”‚
 โ”‚                                                   โ”‚
 โ”‚ Handlers ............ 534 Processes ........... 1 โ”‚
 โ”‚ Prefork ....... Disabled  PID ............. 16576 โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Shutting down server... reason: interrupt
2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Disconnected from database: defaultdb
2024/03/31 15:05:22 [H0llyW00dzZ] [INFO] Database connection closed.
2024/03/31 15:05:27 [H0llyW00dzZ] [INFO] Server exiting

I send about 10 requests to a method that uses the request context for further steps, and immediately run the Shutdown method on the interrupt signal (ShutdownWithContext has similar behavior). I accidentally noticed this when app running with the -race flag.
So I can fix this using context package in handler, but without request ctx as a parent

from fiber.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.