redis cluster continuously print log WSA_IO_PENDING

前端 未结 3 2065
醉话见心
醉话见心 2021-02-19 03:22

When I start up all the redis-server of the redis cluster, all these servers continuously print logs like WSA_IO_PENDING clusterWriteDone

[9956] 03 Feb 18:17:25.         


        
3条回答
  •  时光说笑
    2021-02-19 03:29

    1. Go on this location C:\Program Files\Redis

    2. Open file redis.windows-service.conf in Notepad.

    You will find a section like below:

    # Specify the server verbosity level.
    # This can be one of:
    # debug (a lot of information, useful for development/testing)
    # verbose (many rarely useful info, but not a mess like the debug level)
    # notice (moderately verbose, what you want in production probably)
    # warning (only very important / critical messages are logged)
    loglevel notice
    
    # Specify the log file name. Also 'stdout' can be used to force
    # Redis to log on the standard output.
    logfile "Logs/redis_log.txt"
    

    Here, you can change the value of loglevel as per your requirement. I think changing it to warning will solve this issue because it will log only essential errors.

提交回复
热议问题