Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Experiences/Best practices Axon on Google App Engine?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
fra3k  
View profile  
 More options Nov 9 2010, 10:56 am
From: fra3k <fra3k....@gmail.com>
Date: Tue, 9 Nov 2010 07:56:30 -0800 (PST)
Local: Tues, Nov 9 2010 10:56 am
Subject: Experiences/Best practices Axon on Google App Engine?
Hi All(ard),

Do you know if it is possible to use Axon combined with GAE?
Can you implement the event store for instance? Other hints and tricks
are highly appreciated too ofcourse!

Regards,
Freek


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Allard Buijze  
View profile  
 More options Nov 9 2010, 11:22 am
From: Allard Buijze <bui...@gmail.com>
Date: Tue, 9 Nov 2010 17:22:01 +0100
Local: Tues, Nov 9 2010 11:22 am
Subject: Re: [axonframework] Experiences/Best practices Axon on Google App Engine?

Hi Freek,

interesting case. To be honest, I haven't tried yet. Most of the features in
Axon don't use any of the GAE restricted API's. The Axon annotation support
does use reflection, which is restricted in GAE. I am not sure to what
extent, though.

According to the GAE expert here, it should be fairly simple to create an
event store implementation on Google's BigTable. The Event Store interface
is pretty simple to implement.

Cheers,

Allard


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
fra3k  
View profile  
 More options Nov 9 2010, 11:38 am
From: fra3k <fra3k....@gmail.com>
Date: Tue, 9 Nov 2010 08:38:19 -0800 (PST)
Local: Tues, Nov 9 2010 11:38 am
Subject: Re: Experiences/Best practices Axon on Google App Engine?
Ah, OK
.
I believe GAE also has restriction on the use of threads. Does Axon (a
lot of) use threads for aynchronous event processing?

I believe Axon and GAE could be a very good match and I do not want to
make my own CQRS implementation specifically for GAE. I'll start
hacking with Axon soon and let you know my findings :D

regards,
Freek

On Nov 9, 5:22 pm, Allard Buijze <bui...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Allard Buijze  
View profile  
 More options Nov 10 2010, 2:33 am
From: Allard Buijze <bui...@gmail.com>
Date: Wed, 10 Nov 2010 08:33:30 +0100
Local: Wed, Nov 10 2010 2:33 am
Subject: Re: [axonframework] Re: Experiences/Best practices Axon on Google App Engine?

Hi Freek,

For the asynchronous event handling (which isn't required), Axon requires an
Executor implementation. GAE does have task scheduler support, and I suppose
(I am not sure about this) that their executor service implements Java's
executor interface. If not, it's probably easy to create small wrapper. One
thing is sure, Axon never (ever!) creates a thread on its own.

Happy hacking around!

Cheers,

Allard


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jettro  
View profile  
 More options Jun 22 2011, 4:28 pm
From: jettro <jettro.coenra...@gmail.com>
Date: Wed, 22 Jun 2011 13:28:01 -0700 (PDT)
Local: Wed, Jun 22 2011 4:28 pm
Subject: Re: [axonframework] Re: Experiences/Best practices Axon on Google App Engine?

Hi,
just wanted to let you know we have moved some google app engine related
classes to the new incubator of axon. I also have a very basic application
that runs on google app engine that you can try. Sources are available on
Github. If you have questions, use this group. I will monitor it for
questions that are google app engine related.

Axon incubator
http://code.google.com/p/axonframework/source/browse/trunk#trunk%2Fin...

Running sample
http://company-hr.appspot.com/

Sample code
https://github.com/jettro/CompanyHr

greetz Jettro


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
coderinabstract  
View profile  
 More options Feb 21, 1:43 am
From: coderinabstract <coderinabstr...@gmail.com>
Date: Mon, 20 Feb 2012 22:43:21 -0800 (PST)
Local: Tues, Feb 21 2012 1:43 am
Subject: Re: [axonframework] Re: Experiences/Best practices Axon on Google App Engine?

wrt GAE deployment...what is the level of support for scheduled event and
SagaRepository in Google app engine as Quartz is default in current axon?
and google support of Quartz is?

Any other gaps in current 1.3.1 for gae deployment?

Thanks and Cheers...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Allard Buijze  
View profile  
 More options Feb 22, 2:43 am
From: Allard Buijze <bui...@gmail.com>
Date: Wed, 22 Feb 2012 08:43:42 +0100
Local: Wed, Feb 22 2012 2:43 am
Subject: Re: [axonframework] Re: Experiences/Best practices Axon on Google App Engine?

Hi,

GAE support is not very high on the priorities list. Although GAE is a nice
platform for some applications, there is too much specific things going on
there. Unless there is a big user base for it, I don't think its worth all
the maintenance effort to provide full support for GAE right now.

In you case, it's probably relatively easy to create a scheduler that works
fine for your specific application's requirements. Axon is built up as an
extensible framework, so it's just a matter of implementing an interface.

Cheers,

Allard

On Tue, Feb 21, 2012 at 7:43 AM, coderinabstract
<coderinabstr...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »