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!
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.
On Tue, Nov 9, 2010 at 4:56 PM, fra3k <fra3k....@gmail.com> wrote: > 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!
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:
> 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
> On Tue, Nov 9, 2010 at 4:56 PM, fra3k <fra3k....@gmail.com> wrote:
> > 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!
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.
On Tue, Nov 9, 2010 at 5:38 PM, fra3k <fra3k....@gmail.com> wrote: > 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: > > 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
> > On Tue, Nov 9, 2010 at 4:56 PM, fra3k <fra3k....@gmail.com> wrote: > > > 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!
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.
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?
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:
> 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?