Re: [Chicken-users] example from rpc egg crashes at around 2k calls for me ....

2015-12-10 Thread Jim Ursetto
It would coincide with a typical fd ulimit of 2048. If the issue is actually too many tcp connections, I can't see why, as both the client and server should close the connection after completion. And, you are running these client connections serially. Maybe try dummying out the database calls.

Re: [Chicken-users] example from rpc egg crashes at around 2k calls for me ....

2015-12-08 Thread Matt Welland
On Tue, Dec 8, 2015 at 12:44 AM, Peter Bex wrote: > On Mon, Dec 07, 2015 at 10:38:33PM -0700, Matt Welland wrote: > > I don't understand why this is crashing. I'm guessing I'm failing to > close > > a connection or finalize something. I also saw the same problem when I >

Re: [Chicken-users] example from rpc egg crashes at around 2k calls for me ....

2015-12-07 Thread Peter Bex
On Mon, Dec 07, 2015 at 10:38:33PM -0700, Matt Welland wrote: > I don't understand why this is crashing. I'm guessing I'm failing to close > a connection or finalize something. I also saw the same problem when I used > sqlite3 instead of sql-de-lite. Any help or suggestions of where to look >

[Chicken-users] example from rpc egg crashes at around 2k calls for me ....

2015-12-07 Thread Matt Welland
I don't understand why this is crashing. I'm guessing I'm failing to close a connection or finalize something. I also saw the same problem when I used sqlite3 instead of sql-de-lite. Any help or suggestions of where to look would be appreciated. The code (based on the sqlite3 example from the rpc