[appengine-java] Re: HashMap within an Embedded Class

2011-07-22 Thread Max
This is a known bug and seems still not fixed yet. You will need to manually serialize in you code Also, if you just started coding on GAE, check out Objectify / Twig / Siena etc. These are all very good frameworks. -- You received this message because you are subscribed to the Google

Re: Отг: Re: [appengine-java] Datastore Replication Options - can not be changed once app id is created

2011-07-22 Thread Marcel Overdijk
I also don't understand why we cannot switch. A lot of people are requesting this (including myself). On Jul 22, 7:14 am, Miroslav Genov mge...@gmail.com wrote: I have the opposite situation :). My app is using master/slave and I want to migrate it to use the multi-master replication. Is

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Max
You can have deploy your quatrz scheduler in EC2 and the only job is pinging your corresponding appengine URL according to the schedule. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Accessing same datastore from within 2 (local) JVM's

2011-07-22 Thread Marcel Overdijk
I'm starting my application local and I will perform some functional tests within a JUnit tests. From within this same JUnit test I also want to check if values are stored in datastore. Can I access the same datastore the running webapp is using, but then from within JUnit test running in a

[appengine-java] Re: New Pricing Model

2011-07-22 Thread Ricardo Boscollo
Can anybody help me to know how much i will spend with GAE? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Jayr Motta
http://code.google.com/appengine/docs/java/config/cron.html http://code.google.com/appengine/docs/java/config/cron.html http://code.google.com/appengine/docs/python/config/cron.html http://code.google.com/appengine/docs/python/config/cron.htmlIs that what you want? *Jayr Motta* Software

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Ikai Lan (Google)
Will Quartz run in a backend instance? http://code.google.com/appengine/docs/java/backends/overview.html I don't remember offhand if Quartz uses threads. I'm pretty sure it does which will mean it *won't* work, but I figured I'd throw it out there. Ikai Lan Developer Programs Engineer, Google

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Ikai Lan (Google)
The OP mentioned that cron was too limiting for his particular needs. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Fri, Jul 22, 2011 at 10:19 AM, Jayr Motta

Re: [appengine-java] Scheduler features and load time limitations

2011-07-22 Thread Ikai Lan (Google)
Have you taken a look at the scheduler that has shipped? It should be under Application Settings. If there's anything there that you think might be needed, please let us know. Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter:

[appengine-java] Re: HashMap within an Embedded Class

2011-07-22 Thread datanucleus
On Jul 22, 7:29 am, Max thebb...@gmail.com wrote: This is a known bug and seems still not fixed yet. You will need to manually serialize in you code It may be a known bug to you, but perhaps if someone actually register it in Google's issue log then they would know about it?

[appengine-java] JSF session-scoped beans replication issue

2011-07-22 Thread Zacheusz Siedlecki
There are some issues with JSF session-scoped beans. In some cases session bean changes are not replicated to another server instances. For details and workarounds look at this post http://java.zacheusz.eu/google-app-engine-http-session-vs-jsf-en/394/ -- You received this message because you are

[appengine-java] low-level api: many to may relatioship

2011-07-22 Thread Alexander Herrera
Am wondering how in the low level api can i represent a man to many relationship , this is a good approximation? Entity entityA = new Entity(TypeA); entityA.setProperty(name, nameUserA); Entity entityB = new Entity(TypeA); entityA.setProperty(name, nameUserB);

[appengine-java] Re: [google-appengine] Re: CMS for GAE

2011-07-22 Thread Michel Schroeder
Hello, Thanks for your contributions for a GAE-Java CMS. I had a look at the code of claymus. It seems that you use the combination of gae and gwt, this is a very interesting point. But on the client side, some architectural questions come to my mind... I don't understand your separation of

[appengine-java] [OAuth + Provisioning ] Autentication - Python X Java

2011-07-22 Thread Felipe Teixeira
Hi, I need help to use Provisioning API with OAuth authentication, the following problem occurs, how to do domain validation in java api ? In Python it is possible to know the following code. service = gdata.apps.service.AppsService(domain=consumer_key)

Re: [appengine-java] low-level api: many to may relatioship

2011-07-22 Thread Ikai Lan (Google)
A few comments: 1. That's more of a 1:1 relationship 2. Try to avoid using the term child. The reason is that when you start working with entity groups, you will confuse yourself with terminology. If you don't understand entity groups yet, take a look at these docs:

[appengine-java] Re: New Pricing Model

2011-07-22 Thread John Patterson
No body can answer that without knowing exactly how your app uses billed resources. Latest details can be found here: https://groups.google.com/d/topic/google-appengine/Hluog1_a3n4/discussion BTW, 10 queries is too much - your goal should be zero or one query per page by using

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Kesava Neeli
Yes.. I looked at Background instance. It allows to have long tasks but it doesn't allow to spawn threads. Quartz fires off events in threads. So I guess quartz is not an option on app-engine. We can use appengine cron jobs to some extent but if you need to fire an event at exact minute, it

Re: [appengine-java] Re: [google-appengine] Re: CMS for GAE

2011-07-22 Thread Prashant
Hello Michel, Thanks for checking out the code and the query :) On Thu, Jul 21, 2011 at 9:49 PM, Michel Schroeder michels...@gmail.comwrote: Hello, Thanks for your contributions for a GAE-Java CMS. I had a look at the code of claymus. It seems that you use the combination of gae and gwt,

Re: [appengine-java] How to run quatz(kind) of scheduler service on appengine?

2011-07-22 Thread Ikai Lan (Google)
One more option: you can set ETAs in task queue tasks. That is, when some action occurs, you can say, Run this at 6:30am, and the job will run at roughly that time: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/taskqueue/TaskOptions.Builder.html#withEtaMillis(long)

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
Hi Ikai, I cannot find answer to: 1) Will the limit of 30s to start an application be lifted? The other question seems to be answered since the changes in 1.5.2 (http://code.google.com/appengine/docs/adminconsole/ performancesettings.html#Setting_the_Minimum_Pending_Latency) On Jul 22, 4:24 

Re: [appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Ikai Lan (Google)
I haven't heard any plans to lift the 30s load time to start an application. 30s+ loading time seems pretty bad to me ... Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit:

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
Yes might be, but frameworks like Grails need a longer startup time. It does not matter for any application server nor cloud provider except GAE. That's why I'm asking about future working of scheduler. Further, if I keep up enough instances I would not bother the startup time at all... I'm

Re: [appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Ikai Lan (Google)
What's the startup time on Grails now? I can ask about the 30s startup time, but I'm sure there are some pretty serious consequences to an app with a 40s-50s startup time. I'm a bit surprised, honestly, because even a JRuby on Rails app shouldn't take more than 30 seconds to startup. Ikai Lan

[appengine-java] Re: Scheduler features and load time limitations

2011-07-22 Thread Marcel Overdijk
Honestly I don't know what the current startup time for Grails on GAE would be now. Also depending on what plugins installed etc. Current version does not even work on GAE. I was thinking about trying it out again but remembered the 30s limit I hit some time ago. So I asked this question on the

[appengine-java] Correlative number

2011-07-22 Thread katy
Im trying to get a kind of auto increment number for an entity. I all ready create a counter class to take a track of the quantity of entities so i can use the counter to get a correlative number , but its not working the right way, so wonder if anybody know how to implement these and if its

[appengine-java] Re: Task Queue rate not high enough

2011-07-22 Thread Maxime Rafalimanana
I noticed a new field since 1.5.2 : Enforced Rate. Could that parameter help us make sure enough instance are created to process our tasks ? Maxime -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web