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
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
|
show 5 more comments
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
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
|
show 5 more comments
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
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
redis
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
|
show 5 more comments
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
|
show 5 more comments
3 Answers
3
active
oldest
votes
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
add a comment |
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.
add a comment |
Go on this location
C:Program FilesRedis
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.
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered Apr 12 '18 at 8:32
Tomasz PoradowskiTomasz Poradowski
26718
26718
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Aug 23 '18 at 14:34
answered Nov 30 '17 at 20:07
karliwsonkarliwson
2,4801138
2,4801138
add a comment |
add a comment |
Go on this location
C:Program FilesRedis
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.
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
add a comment |
Go on this location
C:Program FilesRedis
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.
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
add a comment |
Go on this location
C:Program FilesRedis
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.
Go on this location
C:Program FilesRedis
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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