[akka-user] StackOverflow with long actor path name.

2014-02-03 Thread Adam Shannon
Hello all, I've found out that I can get a StackOverflow exception when creating and using an actor with a long path name. It looks like this may just be due to a recursive call in the java.util.Regex library? Does anyone have any suggestions other than just not making such long path names?

Re: [akka-user] StackOverflow with long actor path name.

2014-02-03 Thread √iktor Ҡlang
Sounds like a weird bug, on the other hand, you should probably stop creating such long names. The name should be short and to the point, it's not a place to put a base64-encoded payload (or worse ;)) On Mon, Feb 3, 2014 at 8:24 PM, Adam Shannon a...@ashannon.us wrote: Hello all, I've found

Re: [akka-user] StackOverflow with long actor path name.

2014-02-03 Thread Adam Shannon
That's the route we're going to use now. We previously had the uuids all there to make debugging a bit easier. Thanks! On Mon, Feb 3, 2014 at 1:31 PM, √iktor Ҡlang viktor.kl...@gmail.com wrote: Sounds like a weird bug, on the other hand, you should probably stop creating such long names. The

Re: [akka-user] StackOverflow with long actor path name.

2014-02-03 Thread √iktor Ҡlang
Perhaps it would make sense to not only fix the regex if possible, but also put a reasonable cap on the name length to make sure that the paths are representable as strings? On Mon, Feb 3, 2014 at 8:34 PM, Adam Shannon a...@ashannon.us wrote: That's the route we're going to use now. We