For a deeper look into our Elektron API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
24 3 7 11

Python Websocket lost connection

Hi,

I'm writing a client side websocket program in python to get real time data from Refinitiv.

I'm using multithreading where one thread receives the data and put them in a queue and the other thread

handle the data in the queue(update our own database).

It's supposed to run 24/7 all year long.

But I've discovered that after some time(ranging from about 1 to 4 days) the connection will be lost.

The strange thing is that it dosen't jump to on_close() or on_error(). The program simply stops receiving data or ping/pong message from the server but the program is still running just nothing happens.

So how should I go about reconnecting to the server in this situation.

I've already written reconnection logic in on_close() and on_error(). But since it doesn't jump to either of those functions I don't know what to do.

Please help. Thank you

python#technologywebsocketsconnection
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi @tobywong ,

Thank you for your participation in the forum.

Are any of the replies below satisfactory in resolving your query?

If yes please click the 'Accept' text next to the most appropriate reply. This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.

Thank you,

AHS

Upvotes
Accepted
79.2k 251 52 74

@tobywong

I assume that you are using the third party WebDocket client library to establish the WebSocket connection to the server. You may check the offical documents of that WebSocket client library.

Regarding how to handle ping messages, you can refer to this example.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
79.2k 251 52 74

@tobywong

Thank you for reaching out to us.

You can use ping message and other incomming messages to verify the connection status.

Typically, the server sends a ping message to the application every 20 seconds. If it doesn't get any messages back from the application, it will cut the connection.

You can also use this method to verify the connection status. For example, if the applicaiton doesn't receive any messages (including ping messges) from the server for a specific time (20 seconds), the application can disconnect and then reconnect to the server.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
24 3 7 11

@Jirapongse I'm speculating that there are so much data to receive and handle that my application doesn't have time to send the 'pong' message back? But it's weird that it doesn't jump to on_close() or on_error() where I have re-connection logic written in.

As for your suggestion, how do I check if the application doesn't receive any messages from the server for a specific time?

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@tobywong

You may also check what the last message that the application received.

Is it the login closed status message?


@Jirapongse

It's not the login closed status message.

The last message is the 'ping' I sent. There is no 'pong' being sent back.

There is no error message. My program will print the error message and error code if there's an error(it should jump to the on_error() function if there is an error).

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.