Wowza Community

About HTTP session timeout problem

Hi,

Few days ago, the concurrent users of our wowza server is up to 25000.

But the network bandwidth is only 600Mbps.(1 connection max bitrate = 1Mbps)

It seems only 600 concurrent sessions on that time.

Then I tracked the wowza access log.

In most sessions, the session duration is too large but the data volume is too small.

We estimate session duration by httpSession.getTimeRunningSeconds() and data volume by httpSession.getIOPerformanceCounter().getMessagesOutBytes()

And some sessions are rejected by my authentication module.

But it does not call onHTTPSessionDestroy after 30 seconds.

The time it call onHTTPSessionDestroy will prolong 600~3000 seconds after I rejected it.

Accroding to above conditions,

I guess some http sessions had already stopped to transmit data but it did not call timeout immediately.

This situation occured twice when concurrent users raise high in a short time.

Is there any factor affet the http session timeout mechanism?

Thanks,

Roy

I would recommend doing small controlled tests on a development server to test assumptions and see what actually happens.

Some of what you are seeing is probably because iOS devices generate an extra session that is disposed of quickly.

Richard

You can use the Apple Stream Validator, or possibly other tools they provide.

https://developer.apple.com/downloads/index.action?=http%20#

You need to be registerd Apple Developer. And these tools only run on Mac OSX. You could open multiple Mac terminals to run the Stream Validator to create HLS sessions.

You can also create an HLS session just by entering a playlist.m3u8 url in a browser. It won’t last long since it is not being played.

Richard

Hi, Richard

I will do some test.

Do you know what tool could simulate multiple http streaming?

Thanks,

Roy