Hello,
We are currently integrating Janus by wrapping the Janus API in a webapp, and I anticipate this problem :
- how to restart web server w/o breaking video recordings (for example for upgrading the webapp server).
- same problem if we have _several_ webapps instances behind a load balancer : I am afraid the webapp cannot be stateless, can it ?
Sharing state through a database sounds risky, should several events be published at the same time
From what I read in REST doc, I could use the http long polling API instead of websocket.
Another question on this topic : is it possible to long-poll the same session ID with different clients ?
The same events would have to be sent to several clients then...
Thank you in advance for your asnwers
Regards.