Ok I have installed the latest version from GitHub, I used this
command:

sudo git clone http://github.com/APE-Project/APE_Server.git .

Everything built ok, I start ape like this

sudo ./aped

I am using JSONP transport protocol, inline push, I commented out some
things in my main.ape.js:

Ape.addEvent("init", function() {
        include("framework/mootools.js");
        include("framework/Http.js");
        //include("framework/userslist.js");
        include("utils/utils.js");
        include("commands/proxy.js");
        include("commands/inlinepush.js");
        //include("examples/nickname.js");
        //include("examples/move.js");
        //include("utils/checkTool.js"); //Just needed for the APE JSF
diagnostic tool, once APE is installed you can remove it
        //include("examples/ircserver.js");
        //include("framework/http_auth.js");
});

We stream real-time events to the server about 1 per second from a
Java Post, when no one is connected and listening to the channel we
get this response:

 
[{"time":"1290616119","raw":"ERR","data""code":"401","value":"UNKNOWN_CHANNEL"}}]

Which makes sense, when somebody is listening we get this:

[{"time":"1290616119","raw":"pushed","data""value":"ok"}}]

However, when I do a top on the server I see that the memory usage
slowly but persistently increases. Yesterday, ape reached about 12%
and then we couldn't open any new channels to listen. We consistently
got UNKNOWN_CHANNEL when we try to post, and when we attempt to listen
to a channel nothing happens.

We can still go to the URl.com:6969 and it says No Command Given so it
seems that the server is still running but no new channels will open.

When I view ape.log I can see new users connecting when I attempt to
join the channel, but then I don't receive anything. I've noticed
there's a debug parameter in ape.conf, what can I set this to, to shed
some light on the situation? I've tried "2" and I only seem to see new
users connecting.

Any advice on how to fix/debug this problem would be a huge help,

Thanks!

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to