Re: Porting an app

2014-01-23 Thread Tobias Knaup
Sounds like an exciting project! Looking forward to hearing how it turns out. On Mon, Jan 13, 2014 at 5:15 PM, Ankur Chauhan wrote: > Hi Tobias, > > Thanks for your reply, and the mesos-jetty project looks interesting. Let > me describe my target app that should let you kind of get an idea abou

Re: Porting an app

2014-01-16 Thread Dave Lester
On Sun, Jan 12, 2014 at 9:14 PM, Ankur Chauhan wrote: > Another good page on the website would a good FAQ page. > Just to follow-up, I've created a JIRA issue to track the creation of a FAQ page for the project documentation and website: https://issues.apache.org/jira/browse/MESOS-915 I encoura

Re: Porting an app

2014-01-13 Thread Ankur Chauhan
Hi Tobias, Thanks for your reply, and the mesos-jetty project looks interesting. Let me describe my target app that should let you kind of get an idea about the use case and other scale up factors that I am talking about. The target app is either a simple standalone java netty based web server

Re: Porting an app

2014-01-13 Thread Tobias Knaup
Hey Ankur, your question is super timely, I've been working on a demo framework that shows exactly what you're trying to do with Jetty. The code is still a little rough and there are some hardcoded paths etc. but since you asked I just published it: https://github.com/guenter/jetty-mesos I'm also t

Re: Porting an app

2014-01-13 Thread Benjamin Mahler
On Sun, Jan 12, 2014 at 9:14 PM, Ankur Chauhan wrote: > Thanks everyone for all the help. > Marathon does seem like a good framework but my use case requires the app > to evaluate it's own health and scale up based on internal load stats (SLA > requirements) and I don't know if marathon supports

Re: Porting an app

2014-01-12 Thread Ankur Chauhan
Thanks everyone for all the help. Marathon does seem like a good framework but my use case requires the app to evaluate it's own health and scale up based on internal load stats (SLA requirements) and I don't know if marathon supports that. This is the main reason why i am looking at building out m

Re: Porting an app

2013-12-27 Thread Abhishek Parolkar
@Ankur, In case Marathon looks like direction you want to go with, I have a small demo in here if that helps http://www.youtube.com/watch?v=2YWVGMuMTrg -parolkar On Sat, Dec 28, 2013 at 2:10 AM, Vinod Kone wrote: > I can't really find an example that is an end-to-end use case. By that I >>

Re: Porting an app

2013-12-27 Thread Vinod Kone
> > I can't really find an example that is an end-to-end use case. By that I > mean, I would like to know how to put the scheduler and the executor in the > correct places. Right now I have a single jar with can be run from the > command line: java -jar target/collector.jar and that would take care

Re: Porting an app

2013-12-27 Thread Christian Nguyen Van Than
Hello Ankur, For a webapp (or long running service), you should use marathon ^_^ Christian NGUYEN VAN THAN Software Architect @Viadeo 30 rue de la Victoire -75009 Paris - France 2013/12/27 Ankur Chauhan > Hi all, > > I just got started on mesos and I am trying to port a netty based webapp

Porting an app

2013-12-26 Thread Ankur Chauhan
Hi all, I just got started on mesos and I am trying to port a netty based webapp to use a mesos as a framework. I wrote a Executor and a Scheduler. But I am not quite sure as to how to go about getting everything to work together. I can't really find an example that is an end-to-end use case. B