• Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    Websocket connection dropping

    Official EVOK API
    4
    13
    3662
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • O
      oversc0re last edited by

      Hi!
      I just bought the Unipi and I am getting familiar with possible interfaces. I must admit I am a bit dissaponted that there is no out of the box support for mqtt, as it is nowdays defacto standard for home automation, but it looks like websocket should do the job.

      Enough introduction, let's get to the point: After I set the filter to DI only, the incomming streaming stops as expected. But after some period the connection drops. What could be the reason for that? Is there an IDLE timeout? Should I be sending some keepalives? I haven't played with watchdogs; I suppose they are disabled by default?

      Thanx and regards,
      Matic

      1 Reply Last reply Reply Quote 0
      • T
        TomasKnot last edited by TomasKnot

        Hi @oversc0re!

        What sort of dropout periods you are seeing? The websocket interface doesn't have keepalive pings enabled (though they are implemented in the library we are using) so that shouldn't be an issue; that said the problems could still be caused by an idle timeout somewhere along the line, so sending an occasional 'all' command might help.

        We have a simple websocket-to-mqtt interface written in python which we use internally, and that is capable of keeping the connection going for weeks on end - though I presume there is some form of reconnection code in that program (I haven't looked at it recently enough to recall it offhand).

        O M 2 Replies Last reply Reply Quote 0
        • O
          oversc0re @TomasKnot last edited by

          Hi @tomas_knot,
          I have a simple script in Node-red although i will probably be writing a python script sooner or later.
          The connection is reconnected immediately but the filter settings are gone and I have to reapply them. This happens a minute or two after filters are applied.
          Does filtering out all the unnecessary streaming actually improve response time of digital input notifications?

          Thanx and regards
          Matic

          T 1 Reply Last reply Reply Quote 0
          • T
            TomasKnot @oversc0re last edited by TomasKnot

            @oversc0re

            The response time doesn't really improve, the intended use is to allow for multiple differentiated connections which listen at the same time.

            That said, the drops you are seeing do not usually happen. I'm inclined to think there are timeouts somewhere on the line from EVOK to Node-red, but it's hard to debug from our point of view. Do you still have the same issues if you send an occasional 'all' command? It shouldn't be necessary but it might help in your case.

            1 Reply Last reply Reply Quote 0
            • O
              oversc0re last edited by

              Hello,
              yup, sending cmd:all every minute prevents the connection drop.

              Even though, I don't feell like writing a state machine for blinds in node-red is a good idea. I will test this behavior while migrating to python along the way.

              Regards, Matic

              1 Reply Last reply Reply Quote 0
              • M
                matthijs @TomasKnot last edited by

                @tomas_knot Hi, Would it be possible to share this websocket to MQTT script? I have a websocket configured now that runs all the time (perfectly stable btw) and inititates a rest call to update a Domoticz switch if needed, however I would like to explore making this push pull with MQTT for myself te learn and to see if that's a bit more resources friendly.

                1 Reply Last reply Reply Quote 0
                • T
                  TomasKnot last edited by TomasKnot

                  The websocket-to-MQTT is part of a wider array of scripts used in our company, which include a number of proprietary details, so we unfortunately cannot share it without extensive modification. We may at some point in a future, but we need to discuss it internally first.

                  Apologies

                  M 1 Reply Last reply Reply Quote 0
                  • M
                    matthijs @TomasKnot last edited by

                    @tomas_knot ok, thanks for responding. Love to see MQTT into the base neuron by default in the future.

                    1 Reply Last reply Reply Quote 0
                    • B
                      Boy Lenssen last edited by

                      @TomasKnot I have one customer where I suspect the websocketconnection to break.

                      What is the timeout on the websocket?

                      Is it also possible that the websocket is not alive yet when the system is already started? Because the customer also had it right after booting the system. I have a local application running that connects to the websocket as soon as linux auto-logs in. Could it be that it connects too soon? I might have to add a check on disconnect, to do a reconnect I think

                      1 Reply Last reply Reply Quote 0
                      • T
                        TomasKnot last edited by

                        Hi @Boy-Lenssen!

                        Apologies for the slightly delayed reply, I was on a brief vacation for the past few days. The timeout is set to 30 seconds of the receiving device not responding, which is default for the Tornado server. It is possible to set this higher in the code, but it can cause issues with connections not being closed at times they should be.

                        Unfortunately it is also the case that WebSocket does not run immediately at startup, but requires approximately 15s from device boot to become fully responsive. This is mostly because of the Python backend of the server. However you shouldn't be able to connect to it until it is fully established.

                        I hope this helps

                        B 1 Reply Last reply Reply Quote 0
                        • B
                          Boy Lenssen @TomasKnot last edited by

                          @tomasknot Hi, thanks for you response!

                          I have the system running on a location, used to control an escape room. I never saw the issue there that the connection was lost and there is no communication happening sometimes for 10 minutes. Now suddenly I think I'm seeing this connection break. Also, at startup, one of the Neuron (L203) lights was blinking red instead of solid green (well, flashing very fast every 2 seconds, the operative mode). Don't know what that is.

                          I now added code that if the socket connection with Evok disconnects, it directly reconnects, as I need to be able to listen to input changes...

                          1 Reply Last reply Reply Quote 0
                          • B
                            Boy Lenssen last edited by

                            It looks like reconnecting when connection drops seems to work for my clients.

                            I have the system running here now for around an hour now and the socketconnection is still up. So weird that I don't see the issue here. There has to be some difference and I'll need to investigate further.

                            You say the connection discounnects after a certain time, but why don't I see this happening?

                            1 Reply Last reply Reply Quote 0
                            • T
                              TomasKnot last edited by TomasKnot

                              It should only disconnect if either a certain number of requests fails to reach the client; or no successful messages have been sent over >10 minutes, while there have been failures during that time.

                              The actual implementation/behaviour is from the tornado.websocket library, albeit we use a slightly older version of Tornado.

                              If you do have the time to investigate further we would quite welcome the feedback. We have put this on our list of things to improve in the future, but right now I can't give you any more specifics.

                              1 Reply Last reply Reply Quote 0
                              • First post
                                Last post