redis cluster continuously print log WSA_IO_PENDING2019 Community Moderator ElectionOverly verbose logging in Redis ClusterHow to atomically delete keys matching a pattern using RedisWhen to Redis? When to MongoDB?How do I run Redis on Windows?How do I delete everything in Redis?Redis administration panelRedis - Connect to Remote ServerMemcached vs. Redis?Redis Cluster Support in Redis 2.8.19Does socket.io-redis support redis clusters?Redis sentinel vs clustering

Motivation for Zeta Function of an Algebraic Variety

weren't playing vs didn't play

When traveling to Europe from North America, do I need to purchase a different power strip?

Do items de-spawn in Diablo?

Should I tell my boss the work he did was worthless

Is "conspicuously missing" or "conspicuously" the subject of this sentence?

Why doesn't this Google Translate ad use the word "Translation" instead of "Translate"?

In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?

Reversed Sudoku

Why is computing ridge regression with a Cholesky decomposition much quicker than using SVD?

List elements digit difference sort

Examples of a statistic that is not independent of sample's distribution?

What was the Kree's motivation in Captain Marvel?

meaning and function of 幸 in "则幸分我一杯羹"

Virginia employer terminated employee and wants signing bonus returned

How to detect if C code (which needs 'extern C') is compiled in C++

Accepted offer letter, position changed

When a wind turbine does not produce enough electricity how does the power company compensate for the loss?

NASA's RS-25 Engines shut down time

Can I pump my MTB tire to max (55 psi / 380 kPa) without the tube inside bursting?

What's the "normal" opposite of flautando?

Declaring and defining template, and specialising them

Child Theme Path Being Ignored With wp_enqueue_scripts

How to draw cubes in a 3 dimensional plane



redis cluster continuously print log WSA_IO_PENDING



2019 Community Moderator ElectionOverly verbose logging in Redis ClusterHow to atomically delete keys matching a pattern using RedisWhen to Redis? When to MongoDB?How do I run Redis on Windows?How do I delete everything in Redis?Redis administration panelRedis - Connect to Remote ServerMemcached vs. Redis?Redis Cluster Support in Redis 2.8.19Does socket.io-redis support redis clusters?Redis sentinel vs clustering










14















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.044 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- 
[9956] 03 Feb 18:17:25.062 # clusterWriteDone written 2520 fd 15----------------------------------------------------------‌​---
[9956] 03 Feb 18:17:25.545 # WSA_IO_PENDING writing to socket fd --------------------------------------------------------
[9956] 03 Feb 18:17:25.568 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- –









share|improve this question
























  • Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

    – rob
    Nov 9 '17 at 8:39











  • @rob, what is the sample config you are using for the cluster?

    – Tarun Lalwani
    Nov 23 '17 at 13:56






  • 1





    @TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

    – rob
    Nov 23 '17 at 14:32






  • 1





    that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

    – rob
    Nov 30 '17 at 10:58






  • 1





    That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

    – Cy Rossignol
    Nov 30 '17 at 23:24
















14















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.044 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- 
[9956] 03 Feb 18:17:25.062 # clusterWriteDone written 2520 fd 15----------------------------------------------------------‌​---
[9956] 03 Feb 18:17:25.545 # WSA_IO_PENDING writing to socket fd --------------------------------------------------------
[9956] 03 Feb 18:17:25.568 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- –









share|improve this question
























  • Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

    – rob
    Nov 9 '17 at 8:39











  • @rob, what is the sample config you are using for the cluster?

    – Tarun Lalwani
    Nov 23 '17 at 13:56






  • 1





    @TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

    – rob
    Nov 23 '17 at 14:32






  • 1





    that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

    – rob
    Nov 30 '17 at 10:58






  • 1





    That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

    – Cy Rossignol
    Nov 30 '17 at 23:24














14












14








14


2






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.044 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- 
[9956] 03 Feb 18:17:25.062 # clusterWriteDone written 2520 fd 15----------------------------------------------------------‌​---
[9956] 03 Feb 18:17:25.545 # WSA_IO_PENDING writing to socket fd --------------------------------------------------------
[9956] 03 Feb 18:17:25.568 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- –









share|improve this question
















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.044 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- 
[9956] 03 Feb 18:17:25.062 # clusterWriteDone written 2520 fd 15----------------------------------------------------------‌​---
[9956] 03 Feb 18:17:25.545 # WSA_IO_PENDING writing to socket fd --------------------------------------------------------
[9956] 03 Feb 18:17:25.568 # WSA_IO_PENDING writing to socket fd -------------------------------------------------------- –






redis






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 6:27









Cœur

18.7k9110150




18.7k9110150










asked Feb 3 '17 at 10:19









leexiaodongleexiaodong

736




736












  • Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

    – rob
    Nov 9 '17 at 8:39











  • @rob, what is the sample config you are using for the cluster?

    – Tarun Lalwani
    Nov 23 '17 at 13:56






  • 1





    @TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

    – rob
    Nov 23 '17 at 14:32






  • 1





    that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

    – rob
    Nov 30 '17 at 10:58






  • 1





    That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

    – Cy Rossignol
    Nov 30 '17 at 23:24


















  • Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

    – rob
    Nov 9 '17 at 8:39











  • @rob, what is the sample config you are using for the cluster?

    – Tarun Lalwani
    Nov 23 '17 at 13:56






  • 1





    @TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

    – rob
    Nov 23 '17 at 14:32






  • 1





    that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

    – rob
    Nov 30 '17 at 10:58






  • 1





    That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

    – Cy Rossignol
    Nov 30 '17 at 23:24

















Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

– rob
Nov 9 '17 at 8:39





Seeing the same in Windows event log, logging set to "notice". However Redis is working correctly, just a pain to filter logs :(

– rob
Nov 9 '17 at 8:39













@rob, what is the sample config you are using for the cluster?

– Tarun Lalwani
Nov 23 '17 at 13:56





@rob, what is the sample config you are using for the cluster?

– Tarun Lalwani
Nov 23 '17 at 13:56




1




1





@TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

– rob
Nov 23 '17 at 14:32





@TarunLalwani here is a pastebin of the redis.windows-service.conf with all the lines starting with # removed pastebin.com/wJK5pj73 The only action I took after installing was to uncomment #cluster-enabled yes #cluster-config-file nodes-6379.conf #cluster-node-timeout 15000

– rob
Nov 23 '17 at 14:32




1




1





that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

– rob
Nov 30 '17 at 10:58





that will teach me for using Windows. It was supposed to be a quick win not to have to stand up additional Linux VMs. Where I am, getting new VMs can take ages, red tape etc.

– rob
Nov 30 '17 at 10:58




1




1





That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

– Cy Rossignol
Nov 30 '17 at 23:24






That issue was opened on the main Redis repository. I don't think you'll find much help there because this problem is related to the Windows Redis Fork maintained by Microsoft. The error you see is returned by the OS to programs using the Windows Sockets API (Winsock) used by Redis on Windows. WSA_IO_PENDING does not indicate an error. It's a nuance of Winsock returned (in the same way as an error) to indicate to the program the state of an operation, so Redis must be logging any code returned as non-zero. It may indicate a busy server/network.

– Cy Rossignol
Nov 30 '17 at 23:24













3 Answers
3






active

oldest

votes


















1














There is no way to specifically turn those "warnings" off in 3.2.x port of Redis for Windows as the logging statements use highest LL_WARNING level. This issue has been reported in my fork of that unmaintained MSOpenTech's repo (which I updated to Redis 4.0.2) and has been fixed by decreasing that level to LL_DEBUG. More details: https://github.com/tporadowski/redis/issues/14



This change will be included in the next release (4.0.2.3) or you can get the latest source code and build it for yourself.



Current releases can be found here: https://github.com/tporadowski/redis/releases






share|improve this answer






























    2





    +400









    An issue was open in the official redis repo 10 months ago about that problem. Unfortunately it seems to be abandoned, and it hasn't been solved yet:



    Redis cluster print "WSA_IO_PENDING writing to socket..." continuously, does it matter?



    However, that issue may not be related to redis itself, but to the Windows Sockets API, as pointed out by Cy Rossignol in the comments. It's the winsock API that returns that status to the application, as seen in the documentation:




    WSA_IO_PENDING (997)



    Overlapped operations will complete later.



    The application has
    initiated an overlapped operation that cannot be completed
    immediately. A completion indication will be given later when the
    operation has been completed. Note that this error is returned by the
    operating system, so the error number may change in future releases of
    Windows.




    Maybe it didn't get much attention because it's not a bug, although it's indeed an inconvenience that floods the system logs. In that case, you may not get help there.



    Seems like there's no temporary fix. The Windows Redis fork is archived and I don't know if you could get any help there either.






    share|improve this answer
































      0














      1. Go on this location C:Program FilesRedis


      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.






      share|improve this answer























      • As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

        – Cy Rossignol
        May 11 '18 at 21:12










      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f42021901%2fredis-cluster-continuously-print-log-wsa-io-pending%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      There is no way to specifically turn those "warnings" off in 3.2.x port of Redis for Windows as the logging statements use highest LL_WARNING level. This issue has been reported in my fork of that unmaintained MSOpenTech's repo (which I updated to Redis 4.0.2) and has been fixed by decreasing that level to LL_DEBUG. More details: https://github.com/tporadowski/redis/issues/14



      This change will be included in the next release (4.0.2.3) or you can get the latest source code and build it for yourself.



      Current releases can be found here: https://github.com/tporadowski/redis/releases






      share|improve this answer



























        1














        There is no way to specifically turn those "warnings" off in 3.2.x port of Redis for Windows as the logging statements use highest LL_WARNING level. This issue has been reported in my fork of that unmaintained MSOpenTech's repo (which I updated to Redis 4.0.2) and has been fixed by decreasing that level to LL_DEBUG. More details: https://github.com/tporadowski/redis/issues/14



        This change will be included in the next release (4.0.2.3) or you can get the latest source code and build it for yourself.



        Current releases can be found here: https://github.com/tporadowski/redis/releases






        share|improve this answer

























          1












          1








          1







          There is no way to specifically turn those "warnings" off in 3.2.x port of Redis for Windows as the logging statements use highest LL_WARNING level. This issue has been reported in my fork of that unmaintained MSOpenTech's repo (which I updated to Redis 4.0.2) and has been fixed by decreasing that level to LL_DEBUG. More details: https://github.com/tporadowski/redis/issues/14



          This change will be included in the next release (4.0.2.3) or you can get the latest source code and build it for yourself.



          Current releases can be found here: https://github.com/tporadowski/redis/releases






          share|improve this answer













          There is no way to specifically turn those "warnings" off in 3.2.x port of Redis for Windows as the logging statements use highest LL_WARNING level. This issue has been reported in my fork of that unmaintained MSOpenTech's repo (which I updated to Redis 4.0.2) and has been fixed by decreasing that level to LL_DEBUG. More details: https://github.com/tporadowski/redis/issues/14



          This change will be included in the next release (4.0.2.3) or you can get the latest source code and build it for yourself.



          Current releases can be found here: https://github.com/tporadowski/redis/releases







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Apr 12 '18 at 8:32









          Tomasz PoradowskiTomasz Poradowski

          26718




          26718























              2





              +400









              An issue was open in the official redis repo 10 months ago about that problem. Unfortunately it seems to be abandoned, and it hasn't been solved yet:



              Redis cluster print "WSA_IO_PENDING writing to socket..." continuously, does it matter?



              However, that issue may not be related to redis itself, but to the Windows Sockets API, as pointed out by Cy Rossignol in the comments. It's the winsock API that returns that status to the application, as seen in the documentation:




              WSA_IO_PENDING (997)



              Overlapped operations will complete later.



              The application has
              initiated an overlapped operation that cannot be completed
              immediately. A completion indication will be given later when the
              operation has been completed. Note that this error is returned by the
              operating system, so the error number may change in future releases of
              Windows.




              Maybe it didn't get much attention because it's not a bug, although it's indeed an inconvenience that floods the system logs. In that case, you may not get help there.



              Seems like there's no temporary fix. The Windows Redis fork is archived and I don't know if you could get any help there either.






              share|improve this answer





























                2





                +400









                An issue was open in the official redis repo 10 months ago about that problem. Unfortunately it seems to be abandoned, and it hasn't been solved yet:



                Redis cluster print "WSA_IO_PENDING writing to socket..." continuously, does it matter?



                However, that issue may not be related to redis itself, but to the Windows Sockets API, as pointed out by Cy Rossignol in the comments. It's the winsock API that returns that status to the application, as seen in the documentation:




                WSA_IO_PENDING (997)



                Overlapped operations will complete later.



                The application has
                initiated an overlapped operation that cannot be completed
                immediately. A completion indication will be given later when the
                operation has been completed. Note that this error is returned by the
                operating system, so the error number may change in future releases of
                Windows.




                Maybe it didn't get much attention because it's not a bug, although it's indeed an inconvenience that floods the system logs. In that case, you may not get help there.



                Seems like there's no temporary fix. The Windows Redis fork is archived and I don't know if you could get any help there either.






                share|improve this answer



























                  2





                  +400







                  2





                  +400



                  2




                  +400





                  An issue was open in the official redis repo 10 months ago about that problem. Unfortunately it seems to be abandoned, and it hasn't been solved yet:



                  Redis cluster print "WSA_IO_PENDING writing to socket..." continuously, does it matter?



                  However, that issue may not be related to redis itself, but to the Windows Sockets API, as pointed out by Cy Rossignol in the comments. It's the winsock API that returns that status to the application, as seen in the documentation:




                  WSA_IO_PENDING (997)



                  Overlapped operations will complete later.



                  The application has
                  initiated an overlapped operation that cannot be completed
                  immediately. A completion indication will be given later when the
                  operation has been completed. Note that this error is returned by the
                  operating system, so the error number may change in future releases of
                  Windows.




                  Maybe it didn't get much attention because it's not a bug, although it's indeed an inconvenience that floods the system logs. In that case, you may not get help there.



                  Seems like there's no temporary fix. The Windows Redis fork is archived and I don't know if you could get any help there either.






                  share|improve this answer















                  An issue was open in the official redis repo 10 months ago about that problem. Unfortunately it seems to be abandoned, and it hasn't been solved yet:



                  Redis cluster print "WSA_IO_PENDING writing to socket..." continuously, does it matter?



                  However, that issue may not be related to redis itself, but to the Windows Sockets API, as pointed out by Cy Rossignol in the comments. It's the winsock API that returns that status to the application, as seen in the documentation:




                  WSA_IO_PENDING (997)



                  Overlapped operations will complete later.



                  The application has
                  initiated an overlapped operation that cannot be completed
                  immediately. A completion indication will be given later when the
                  operation has been completed. Note that this error is returned by the
                  operating system, so the error number may change in future releases of
                  Windows.




                  Maybe it didn't get much attention because it's not a bug, although it's indeed an inconvenience that floods the system logs. In that case, you may not get help there.



                  Seems like there's no temporary fix. The Windows Redis fork is archived and I don't know if you could get any help there either.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Aug 23 '18 at 14:34

























                  answered Nov 30 '17 at 20:07









                  karliwsonkarliwson

                  2,4801138




                  2,4801138





















                      0














                      1. Go on this location C:Program FilesRedis


                      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.






                      share|improve this answer























                      • As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                        – Cy Rossignol
                        May 11 '18 at 21:12















                      0














                      1. Go on this location C:Program FilesRedis


                      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.






                      share|improve this answer























                      • As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                        – Cy Rossignol
                        May 11 '18 at 21:12













                      0












                      0








                      0







                      1. Go on this location C:Program FilesRedis


                      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.






                      share|improve this answer













                      1. Go on this location C:Program FilesRedis


                      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.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered May 9 '18 at 10:21









                      Ankush JainAnkush Jain

                      2,59421328




                      2,59421328












                      • As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                        – Cy Rossignol
                        May 11 '18 at 21:12

















                      • As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                        – Cy Rossignol
                        May 11 '18 at 21:12
















                      As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                      – Cy Rossignol
                      May 11 '18 at 21:12





                      As Tomasz pointed out in his answer, Microsoft's Redis fork records the messages in question at the "warning" level so changing the logging verbosity probably won't hide the unwanted entries.

                      – Cy Rossignol
                      May 11 '18 at 21:12

















                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f42021901%2fredis-cluster-continuously-print-log-wsa-io-pending%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                      2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

                      Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme