Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Socket.io with flask-socketio python. How to set socket keepalive/timeout

I am struggling to find any documentation about a timeout value for socket.io. I am using //cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.16/socket.io.min.js on the client and Flask-SocketIO on the server side.

Here is how I am creating the socket:

namespace = '/coregrapher'

var socket = io.connect('http://' + document.domain + ':' + location.port + namespace);

socket.on('connect', function() {
    socket.emit('my event', {data: 'I\'m connected!'});
});

socket.on('my response', function(msg) {
    $('#result').append(msg.data);
});

The issue is, if the server does not send anything to the client or visaversa for even one minute, the client disconnects and if the server tries to do another emit to the client, it fails because the client has already disconnected. How can I make the client stay connected?

Thanks!

like image 454
user1601716 Avatar asked Nov 26 '14 21:11

user1601716


2 Answers

The big picture issue is that if your server is non-responsive to keep-alive packets for some extended period of time, the client will drop the connection and try to reconnect. If it cannot reconnect, eventually, it will stop trying.

That said, if you want to modify the configuration of the retry logic, then you can send an options object as the 2nd argument to your .connect() call. Per the documentation here, there is control over the following options:

Options:

  • reconnection whether to reconnect automatically (true)
  • reconnectionDelay how long to wait before attempting a new reconnection (1000)
  • reconnectionDelayMax maximum amount of time to wait between reconnections (5000). Each attempt increases the reconnection by the amount specified by reconnectionDelay.
  • timeout connection timeout before a connect_error and connect_timeout events are emitted (20000)

So, if you want it to keep trying to reconnect automatically for a much longer period of time, you can increase the times for the last three options.

like image 108
jfriend00 Avatar answered Sep 23 '22 12:09

jfriend00


You can also set parameters in the server-side with Flask-SocketIO:

socketio = SocketIO(ping_timeout=10, ping_interval=5)

:param ping_timeout: The time in seconds that the client waits for the
                     server to respond before disconnecting. The default is
                     60 seconds.
:param ping_interval: The interval in seconds at which the client pings
                      the server. The default is 25 seconds.
like image 37
Sébastien Mascha Avatar answered Sep 22 '22 12:09

Sébastien Mascha