cancel
Showing results for 
Search instead for 
Did you mean: 

file adapter polling

Former Member
0 Kudos

hi Friends,

Can anybody please tell what is the drawback if we poll the file adapter for every minute?

thanks

chandu...

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

HI

Polling in adapter keeps the thread active. If we poll using adapter for a small interval then it consume more and more resource.

Best approach is to schedule it on longer time intervals.

Thanks

Gaurav

Former Member
0 Kudos

Dear Chandrashekar,

There will be pooling for connections in the server.If we poll for every sec,then connection pooling will be full and rest of the scenarios may effect by this

To be more clear:

Every Adapter for suppose FILE has seperate pool with some memory allocated.Example your FILE adapter has Pooling size 10 and you use 1 by polling ever sec and that 1 will be always allocated to you.Rest of the scenario will have only permutation of 9.So use only if necessary.

Thanks

Prabhakar

<removed_by_moderator>

Read the Rules of Engagement

Edited by: Juan Reyes on Oct 17, 2008 6:54 PM

Former Member
0 Kudos

hi,

it uses more resource and so the system may slow down. we had a lot of adapters running with poll intervals 10 sec and after a few days the system started to respond slower. so you should be careful. every system has its limits

Former Member
0 Kudos

thank you for the response.