Im running JDK6u1. It seems that there are two different settings for 
jdk5 and jdk6, whats the best options to put here

 <bean id="threadExecutor"
        
class="org.apache.mina.integration.spring.ThreadPoolExecutorFactoryBean">
        <!-- use configured thread count as core pool size -->
        <property name="corePoolSize" value="${rtmp.threadcount}" />
        <!-- use a SynchronousQueue to handle requests to the threads -->
        <property name="queueCapacity" value="0" />
    </bean>

    <bean id="filterChainBuilder"
        
class="org.apache.mina.integration.spring.DefaultIoFilterChainBuilderFactoryBean">
        <property name="filters">
            <list>
                <!-- mina 1.0 with java5 executor class -->
                <bean class="org.red5.io.filter.ExecutorFilter">
                    <!-- int corePoolSize, int maximumPoolSize, long 
keepAliveTime (seconds) -->
                    <constructor-arg index="0" value="16" />
                    <constructor-arg index="1" value="128" />
                    <constructor-arg index="2" value="60" />
                </bean>
            </list>
        </property>
    </bean>



Luiz Filipe wrote:
> Hey Dan.
>
> Ok, i got it.
> But in my case we?re no using video or audio, its just rso and nc calls.
>
> Anyway, i?m just post a message on Red5 mailing list with the possible cause
> of our big problem, Red5 freeze.
> See the topic: [Red5] Red5 Freezing Issue - Possible Cause (APPSERVER-108)
>
> I hope that this can solve our problem.
>
> Regards,
>
> Luiz Filipe.
>
>
> -----Mensagem original-----
> De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] nome de
> Dan Rossi
> Enviada em: domingo, 29 de abril de 2007 20:13
> Para: [email protected]
> Assunto: Re: [Red5] RES: RES: RES: red5 blocking connections (FREEZE)
>
>
> Hey mate id leave those mina session configs alone, they were added to
> configure the packet settings for mina which finally fixed the send
> buffering for videos as its default setting is really small and videos
> over 100k couldnt stream properly :)
>
> Luiz Filipe wrote:
>   
>> Hi Dan, ok i?ll try out to see, after that i let you know.
>>
>> We?ve trying a lot of things here, but until now neither of them solved
>>     
> the
>   
>> problem, we?re very desperate to solve this Red5 freeze issue.
>> I?ll try to change some (sessionConfig.receiveBufferSize and
>> sessionConfig.sendBufferSize) values on red5-core.xml to see if has some
>> difference...
>>
>> Thanks again,
>>
>> Luiz Filipe.
>>
>>     
>
>
> _______________________________________________
> Red5 mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/red5_osflash.org
>
>
> _______________________________________________
> Red5 mailing list
> [email protected]
> http://osflash.org/mailman/listinfo/red5_osflash.org
>
>   


_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to