no keep alive support?
-
That feature isn't desirable with RRF in standalone mode because we have some boards that only support up to 8 connnections where half of them can be allocated to non-HTTP services. That leaves us with potentially only 4 sockets for serving DWC, and we don't want to block them very long. So there hasn't been much anticipation in implementing keep-alive support in the HTTP responders either. It's really a similiar restriction to the LPC port that @gloomyandy explained.
For the same reason DWC is compiled with as few JS chunks as possible.
-
@gloomyandy said in no keep alive support?:
I'm not sure if DWC makes use of this feature but I suspect it may for some of the more frequent operations.
DWC/Chrome is asking for it. request header "Connection: keep-alive"
however the server always responds with a response header "Connection: close".I have yet to see it allow keep-alive.
(for more details see: https://github.com/Duet3D/RepRapFirmware/blob/dev/src/Networking/HttpResponder.cpp#L448).
If i read that properly the code already has everything it needs to handle persistent connections, as it's inspecting the request headers in HttpResponder::SendJsonResponse
see line 986 through 999
https://github.com/Duet3D/RepRapFirmware/blob/dev/src/Networking/HttpResponder.cpp#L986however when HttpResponder::SendJsonResponse calls HttpResponder::GetJsonResponse the first thing it does it set keepOpen = false;
https://github.com/Duet3D/RepRapFirmware/blob/dev/src/Networking/HttpResponder.cpp#L450
so the if statement that starts on 987 never gets run.
assuming i'm reading this properly, I haven't worked with c/c++ in almost 20 years.
-
Hello All,
This a an old thread, I know, but I would love to see the keep-alive feature supported for rest-api in future firmware updates.
(https://github.com/Duet3D/RepRapFirmware/wiki/HTTP-requests)I understand that keeping sockets open has a resource impact. But maybe it can be up to the user to decide what is important in a particular situation? And frequent polling has a resource impact too...
For my project I am using a Duet 3 MB6HC v1.0 standalone and I do not use the DWC at all (updates via bossa). I am developing specific controller software and rely on good and fast socket connections.
So, maybe this feature can be enabled via a setting, for those who would benefit from it?
Ideally, I would love a websocket, so that I do not have to poll anymore. But keep-alive is a great alternative. Possibly with a (configurable) timeout of 1 to a few seconds?
Hopefully you would reconsider
Thanks
Gerd
-
-
@Zambiorix I think both features are already supported in SBC mode and v3.5 will get an emulation layer for the rr_ style HTTP API as well (see here for the DSF RESTful API). In addition, DSF provides an IPC socket, so you may not even need to use HTTP if go that way.
We don't have plans to add keep-alive support to the firmware anytime soon and since we're short on sockets in standalone mode, I don't think we will add WebSocket support to the firmware either.WebSockets can be used to receive object model updates in SBC mode, though. -
I am not using duet3 in SBC mode, I am developing my own custom controller and want to remove layers of complexity, if possible.
Looking at the code,
keep-alive
is implemented, at least partially, insrc/Networking/HttpResponder.cpp
I have found several lines where
Connection
is set toclose
and other lines where akeepOpen
variable is used to setclose
orkeep-alive
.I also found a line where the socket is kept open
Commit(keepOpen ? ResponderState::reading : ResponderState::free, false);
And other places close it straight away
Commit(ResponderState::free, false); //or Commit();
In
GetJsonResponse
I have noticed,keepOpen
is set tofalse
and never changes.bool HttpResponder::GetJsonResponse(const char *_ecv_array request, OutputBuffer *&response, bool& keepOpen) noexcept { keepOpen = false; // assume we don't want to persist the connection ...
To me all this looks like 90% of the keep alive support is already in place?
I would try to finish the implementation myself.I could check for the existence of an extra custom header and, if present, keep the socket open. This would prevent browsers and other connections that send
keep-alive
from actually keeping the socket open.The
HttpReceiveTimeout
is set to 2 seconds, so the socket will close automatically when not used.I only need 1 connection for my project, so I could also try to implement that only 1 socket can be kept alive concurrently, the rest is ignored.
Do you know of any other pitfalls?
Keep-alive apparently has been tested in the past?Thanks
CheersGerd
-
@Zambiorix OK, so in fact it looks like it is already supported in the firmware. If a client sends a JSON request with
Connection: keep-alive
in the headers, it should keep the connection alive already. What board (base) are you using? -
I am using a Duet 3 MB6HC v1.0
There is some support implemented, but not for every command.
(text/plain commands don't have it)And currently keep-alive is disabled, so
Connection
header is always set toclose
.It has been tested in the past, but not sure it has only been disabled due to resource use ... there could still be other issues.
I would allow keep-alive for following conditions:
#1:Connection
request header is set tokeep-alive
#2: a custom request header is present (so browsers and other connections that setkeep-alive
by default are locked out)
#3: only one keep-alive socket is active concurrently
#4: read timeout of 2 seconds is plenty enough to automatically close the socketThis way there is no impact for default use.
At the moment I have no development environment installed and I don't have much time right now, but I would definitely look into this in the future.
-
I have installed the development environment and implemented
keep-alive
for HttpResponder.Its has no impact on browser calls, those sockets get closed even when
Connection: keep-alive
is set.If the
Rrf-Keep-Alive: force
header is set, keep-alive starts working for a single socket. (so max 1 concurrent open socket)
__LPC17xx__
is also checked and, if set, disables keep-alive.I have to do some more testing, but all seems to work smooth.
If interested I can create a pull request, for you to verify?
Cheers
Gerd -
@Zambiorix Yes, sounds good, thanks. Please target the 3.5-dev branch if possible.
-
When moving to the 3.5-dev branch, I get the following build error:
unrecognized option '--no-warn-rwx-segment'
I'm using ARM toolchain version 10.3-2021.10
Should I use a different one?
Thanks
CheersGerd
-
@Zambiorix See: https://github.com/Duet3D/RepRapFirmware/wiki/Building-RepRapFirmware, if you are using a current 3.5-dev you are in effect working with 3.5 beta 3.
-
Ok, I had to install a more recent ARM toolchain (12.2) and after changing
ArmGccPath
and addingCrcAppender
to thePATH
, it builds.
But on generating the binary file, I get:Generating binary file arm-none-eabi-objcopy -O binary "/Users/gerd/Documents/Projects/Projects/Duet3D/RepRapFirmware/Duet3_MB6HC/Duet3Firmware_MB6HC.elf" "/Users/gerd/Documents/Projects/Projects/Duet3D/RepRapFirmware/Duet3_MB6HC/Duet3Firmware_MB6HC.bin" && CrcAppender "/Users/gerd/Documents/Projects/Projects/Duet3D/RepRapFirmware/Duet3_MB6HC/Duet3Firmware_MB6HC.bin" Failure processing application bundle. Bundle header version compatibility check failed. A fatal error occured while processing application bundle make[1]: [post-build] Error 159 (ignored)
any ideas?
-
@gloomyandy thanks! Figured out I had to install a more recent arm toolchain