Re: [google-appengine] Re: Exceeded soft memory limit - how to configure app.yaml for java 11

2021-03-27 Thread Raphael André Bauer
Thanks Ludo! I have zero idea how this is implemented internally - but might it be the case that the VPN connector uses a substantial amount of memory of the instance? On Thu, Mar 25, 2021 at 10:20 PM Ludovic Champenois wrote: > > > Hi, > I am not sure JAVA_TOOL_OPTIONS is supported (nor

[google-appengine] Exceeded soft memory limit - how to configure app.yaml for java 11

2021-03-24 Thread Raphael André Bauer
Hi, I am running in the issue "Exceeded soft memory limit of 256 MB with 283 MB after servicing 3 requests total. Consider setting a larger instance class in app.yaml.". My app.yaml looks like this: runtime: java11 instance_class: F1 env_variables:

Re: [google-appengine] Re: State of Java 8 on App Engine (not the flexible env)

2016-08-26 Thread Raphael André Bauer
Hi Amir, good to hear that Java 8 for GAE is planned and thanks for the feedback. Looking forward to the release... Cheers, Raphael On Thu, Aug 25, 2016 at 7:22 PM, 'Amir Rouzrokh' via Google App Engine wrote: > Hi guys, Product Manager on Java team here.

[google-appengine] State of Java 8 on App Engine (not the flexible env)

2016-08-24 Thread Raphael André Bauer
Hi, I am just wondering what the state of affairs is with Java 8 on the App Engine (not the flexible env). Java 8 was released almost 3 years ago and Java 9 is just around the corner. We increasingly got problems staying up to date as more and more libraries are moving towards Java 8. In

Re: [google-appengine] Re: Java 8 and the App Engine

2015-05-24 Thread Raphael André Bauer
On Sat, May 23, 2015 at 1:08 AM, Ludovic Champenois l...@google.com wrote: Hi, While I can not predict when it will come up, I can tell you we are working on enable Java 8 to the good old App Engine (not that old!!!). We want to make it as secure as our current Java 7 runtime, and once we feel

[google-appengine] Java 8 and the App Engine

2015-05-22 Thread Raphael André Bauer
Hi there, I am wondering if anyone can comment on whether it is even planned to implement Java 8 support on good old App Engine. There is a feature request open for more than 2 years now: https://code.google.com/p/googleappengine/issues/detail?id=9537 It feels weird that App Engine only

[google-appengine] When will App Engine officially support JDK 8 / Java 8

2014-03-25 Thread Raphael André Bauer
Hi, I am wondering when I can deploy JDK8 based applications to the App Engine. Any ETA? Thanks, Raphael -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop receiving emails from it, send an email to

[google-appengine] javax.validation 1.1 and GAE/J

2013-08-30 Thread Raphael André Bauer
Hi, I recently tried to use hibernate-validation 5.0.1.Final on the AppEngine, but ran in some severe security issues. To be precise - the security issues came because of the el-api provided by org.glassfish.web javax.el version 2.2.4. wants to access some internals blacklisted by GAE. The old

[google-appengine] Guice 3 on the appengine - possible performance hint

2013-08-30 Thread Raphael André Bauer
Hi, we recently debugged a performance issue with Guice 3 running on the App Engine. I don't want to go into the details, but it turned out that our app on GAE is faster (both initial startup + warmup requests) when Guice is ran in Stage.PRODUCTION than in Stage.DEVELOPMENT (the default stage

Re: [google-appengine] Re: MVC framework

2013-07-16 Thread Raphael André Bauer
Try Ninja at http://www.ninjaframework.org and its ninja-appengine module: https://github.com/ninjaframework/ninja-appengine . Ninja is a bit to Java what Rails is to Ruby. Starting your project is as simple as running: mvn archetype:generate -DarchetypeGroupId=org.ninjaframework

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-14 Thread Raphael André Bauer
On Thu, Jun 13, 2013 at 5:35 PM, Ludovic Champenois l...@google.com wrote: Can you try to point the system property appengine.generated.dir to an existing dir outside of the web-inf area? Unfortunately this does not seem to work. Neither in the maven plugin using configuration

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-14 Thread Raphael André Bauer
On Fri, Jun 14, 2013 at 9:52 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Thu, Jun 13, 2013 at 5:35 PM, Ludovic Champenois l...@google.com wrote: Can you try to point the system property appengine.generated.dir to an existing dir outside of the web-inf area? Unfortunately

[google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-13 Thread Raphael André Bauer
Hi, maybe I am the only one, but it at least seems that Java 1.8.1 devmode now features a hot redeploy mode for all contents of the classes (target) by default. In former times we had to touch appengine-web.xml - now the internal jetty picks up changes immediately. This is good news in

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-13 Thread Raphael André Bauer
On Thu, Jun 13, 2013 at 1:41 PM, Ludovic Champenois l...@google.com wrote: Hey, it seems a bug... Yes, any file change triggers a reload... For now, it is possible to configure the db loc elsewhere? Will need to filter better... I have actually no idea how to configure the db loc. In Ninja I

Re: [google-appengine] GAE Java 1.8.1 and broken automatic jetty reload

2013-06-13 Thread Raphael André Bauer
On Thu, Jun 13, 2013 at 2:06 PM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Thu, Jun 13, 2013 at 1:41 PM, Ludovic Champenois l...@google.com wrote: Hey, it seems a bug... Yes, any file change triggers a reload... For now, it is possible to configure the db loc elsewhere

Re: [google-appengine] Re: AppEngine and Adwords Api

2013-04-17 Thread Raphael André Bauer
On Tue, Apr 16, 2013 at 11:15 PM, Vinny P vinny...@gmail.com wrote: From your StackOverflow post: It breaks in production - for instance: java.lang.SecurityException: java.lang.IllegalAccessException: Reflection is not allowed on private javax.xml.ws.wsaddressing.W3CEndpointReference$Address

[google-appengine] AppEngine and Adwords Api

2013-04-16 Thread Raphael André Bauer
Hi, maybe it is too obvious, but I cannot find any documentation how to get Adwords Api to work on App Engine production. Which dependencies to I have to use? And what XML lib has to be on the classpath? Somehow I am out of luck getting the lib to work... I posted my question on StackExchange -

[google-appengine] ClientLogin on AppEngine production yields 403 but works fine on devserver

2013-04-15 Thread Raphael André Bauer
Hi, I know that ClientLogin is deprecated. Still - I cannot get it to work on production AppEngine. My code (in this case for the Adwords Api) looks like: UrlFetchTransport urlFetchTransport = new UrlFetchTransport(); ClientLoginTokens clientLoginTokens = new ClientLoginTokens.Builder()

Re: [google-appengine] Re: Is an application with 100,000 lines of code too much for Google App Engine ?

2012-04-19 Thread Raphael André Bauer
If you are talking about GWT make sure you do not do deploy the gwt-unitcache. http://ars-codia.raphaelbauer.com/2011/12/gwt-and-strange-gwt-unitcache-directory.html Anyway. 150MB sound too much for a javascripty app. One way or the other... There must be something you don't need in your

Re: [google-appengine] Re: Error code 202

2012-03-08 Thread Raphael André Bauer
On Thu, Mar 8, 2012 at 7:00 PM, Ian Marshall ianmarshall...@gmail.com wrote: That's good to hear; I just had the error again when visiting my app's home page to get you the app ID. As well as the app ID, I sent to Amy: I am using the Java version of GAE, with the HRD. Same here... the error

Re: [appengine-java] Mail send from AppEngine application not received by any recipient from past few days

2012-02-24 Thread Raphael André Bauer
On Tue, Feb 21, 2012 at 8:24 AM, Gaurav Sharma applane.develo...@gmail.com wrote: Hello Everyone, We have two Business application running on AppEngine one of which we have upgraded into HRD instance a couple of months before and other one was upgraded into HRD instance a week

Re: [appengine-java] playframework-crudsiena-2.0.2-gae-1.6.0_b1

2012-01-19 Thread Raphael André Bauer
On Thu, Jan 19, 2012 at 5:19 AM, Priyatham Suresh priyat...@ariveguru.com wrote: hi this is priyatham suresh i have devoloped a simple playframework-crudsiena-2.0.2-gae-1.6.0_b1 application. it runs successfully in my local db but when i run this  in  app engine it displays the following

[appengine-java] Implementation question regarding efficient check and lock on datastore

2012-01-12 Thread Raphael André Bauer
Hi, I got a rather simple question and I am sure there is a simple solution. Let's say I got a RPC endpoint that checks if an entity exists and then creates another entity. This RPC endpoint can be called simultaneously on different instances. Say we got a user object, and sometimes we generate

Re: [appengine-java] Re: Securing cron urls / task urls using UserService and not using web.xml

2011-12-13 Thread Raphael André Bauer
On Tue, Dec 13, 2011 at 8:56 AM, andrew andrew.macken...@bcntouch.com wrote: Well, if Google guarantee to us that that header can never be set in any other external request to your app - it is a rudimentary form of security is that guaranteed somewhere? Thanks, Raphael -- You

Re: [appengine-java] Re: Securing cron urls / task urls using UserService and not using web.xml

2011-12-13 Thread Raphael André Bauer
- if the container can guarantee that no outside request can set the header - that would be perfect.. I'll examine that a bit - and it would be great if that guarantee would be quoted in the docs. Thanks a lot for that information! Best, Raphael scott On Dec 13, 1:08 am, Raphael André Bauer

Re: [appengine-java] Re: Securing cron urls / task urls using UserService and not using web.xml

2011-12-11 Thread Raphael André Bauer
and error prone and not secure enough as well... Thanks a lot for all your suggestions :) I guess I have to work around that... Best, Raphael scott On Dec 8, 4:08 am, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I am currently trying to secure my urls that are accessed

[appengine-java] Securing cron urls / task urls using UserService and not using web.xml

2011-12-08 Thread Raphael André Bauer
Hi, I am currently trying to secure my urls that are accessed by cron jobs / tasks. Normally I would use web.xml like that: security-constraint web-resource-collection web-resource-nameProtected Area/web-resource-name url-pattern/cron/*/url-pattern

Re: [appengine-java] An alternative to Objectify?

2011-12-06 Thread Raphael André Bauer
On Tue, Dec 6, 2011 at 10:20 PM, David Chandler drfibona...@google.com wrote: Objectify works great with RequestFactory: http://code.google.com/p/listwidget/ Do you have a specific concern about it? Btw - JPA2 and Objectify are similar in terms of technology. So you can always use

Re: [appengine-java] Which java framework to use?

2011-11-20 Thread Raphael André Bauer
On Sun, Nov 20, 2011 at 12:54 PM, sppl spol...@gmail.com wrote: I am starting off with a new project using app engine java. I am trying to decide what mvc framework to use. I went through previous messages posted by group members and found this link. I then narrowed down my choices to

Re: [appengine-java] Counting read/write operations for monitoring quota

2011-11-16 Thread Raphael André Bauer
On Wed, Nov 16, 2011 at 10:48 AM, Mr. Schtief lisc...@gmail.com wrote: Hi, is there a possibility to count read/write operations from within java? since the billing change i have massive problems with overquota and i need to find out what is causing so much operations. thanx in advance

Re: [appengine-java] Counting read/write operations for monitoring quota

2011-11-16 Thread Raphael André Bauer
your app!) http://code.google.com/appengine/docs/python/tools/appstats.html Cheers, Raphael schtieF On Wed, Nov 16, 2011 at 11:04 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Wed, Nov 16, 2011 at 10:48 AM, Mr. Schtief lisc...@gmail.com wrote: Hi, is there a possibility

Re: [appengine-java] Mails got lost between appstore and gmail

2011-10-12 Thread Raphael André Bauer
On Tue, Oct 11, 2011 at 6:52 AM, Jan Schweizer schweizer@googlemail.com wrote: Hi, as I tryout I did a small application for my sons school which ultimately resulted in some 25 mails being sent out to each a list of 4 recipients (to) and 20 recipients BCC. One of the TO addresses has been

Re: [appengine-java] Prerelease SDK 1.5.5 available for download!

2011-10-07 Thread Raphael André Bauer
On Mon, Oct 3, 2011 at 9:40 PM, Ikai Lan (Google) ikai.l+gro...@google.com wrote: ... - We have increased the size limit for a single file uploaded to App Engine from   10MB to 32MB. Great news :) I just played around a bit with the new features of the java sdk and I am (still) getting a

Re: [appengine-java] Access to gmail

2011-09-05 Thread Raphael André Bauer
2011/8/31 Wojciech Mąka woj...@gmail.com: Is there any way to read messages from gmail in GAE ? why there is no appropriate API for that ? GMail uses IMAP and there is official API support for a lot of proprietary GMail stuff: http://code.google.com/apis/gmail/docs/ Best, Raphael -- You

Re: [appengine-java] Banning users from my app.

2011-08-17 Thread Raphael André Bauer
What about that: Security and Authentication at http://code.google.com/intl/de-DE/appengine/docs/java/config/webxml.html No server calls needed if you are ok with Google based authentification... Works for all resources (RPCs included).. Best, Raphael On Tue, Aug 16, 2011 at 10:51 PM, Ikai

[appengine-java] Jersey / Json problem: Could not initialize class com.sun.xml.bind.v2.runtime.reflect.opt.Injector

2011-06-15 Thread Raphael André Bauer
Hi, I wrote a really simple rest interface setup using jersey-server / jersey-guice / jersey-json (1.7) and delivering json as output. It runs without any problems on the local dev environment, but I am getting a Could not initialize class com.sun.xml.bind.v2.runtime.reflect.opt.Injector (full

[appengine-java] Re: Jersey / Json problem: Could not initialize class com.sun.xml.bind.v2.runtime.reflect.opt.Injector

2011-06-15 Thread Raphael André Bauer
On Wed, Jun 15, 2011 at 11:28 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I wrote a really simple rest interface setup using jersey-server / jersey-guice / jersey-json (1.7) and delivering json as output. It runs without any problems on the local dev environment, but I

Re: [appengine-java] Why is guestbook-example-fts (full text search) example working but mine is not?

2010-10-13 Thread Raphael André Bauer
On Mon, Oct 11, 2010 at 12:33 AM, arny arny...@googlemail.com wrote: Hi, I'm really confused about the AppEngine database index limits. My project is using 15 tokens to index some content. I'm using the index then to self-join it up to 3 times. Then my index looks like this: isOnline ▲ ,

Re: [appengine-java] Re: Creating indexes on List of String elements

2010-09-29 Thread Raphael André Bauer
On Fri, Sep 24, 2010 at 5:53 PM, Ice13ill andrei.fifi...@gmail.com wrote: Well, that is what i'm using :) FTS with self merged join (if that is what you're refering to) The problem here is with the build-in indexes (it should be able to serve those queries that matches a text on a singe list

Re: [appengine-java] Re: Broken URL Mapping in GAE 1.3.3 ?

2010-04-23 Thread Raphael André Bauer
On Fri, Apr 23, 2010 at 12:52 PM, Miroslav Genov mgenov.j...@gmail.com wrote: Starred. Thanks for the assitance keyelo. I hope that problem will soon be removed. +1 That's a huge blocker: 1.3.3 breaks all my com.google.inject.servlet.GuiceFilter based apps... If you use GuiceFilter do NOT

Re: [appengine-java] Re: Broken URL Mapping in GAE 1.3.3 ?

2010-04-23 Thread Raphael André Bauer
version of your app in the admin dashboard fixes the problem. well. you got stuck with an old version of your app. not too cool. ra Regards,  Miroslav On 04/23/2010 05:39 PM, Raphael André Bauer wrote: On Fri, Apr 23, 2010 at 12:52 PM, Miroslav Genovmgenov.j...@gmail.com  wrote: Starred

Re: [appengine-java] Re: having trouble implementing gwt in existing gae app

2010-04-08 Thread Raphael André Bauer
On Thu, Apr 8, 2010 at 3:56 AM, zackmac zack.macom...@gmail.com wrote: Anybody have any thoughts on what I could be missing? On Apr 5, 9:24 pm, zackmac zack.macom...@gmail.com wrote: I'm using Eclipse 3.4.1, GAE 1.3.1 and trying to use GWT 2.0.3.  I've been working on my GAE app some time and

Re: [appengine-java] Compass on Google App Engine

2010-02-17 Thread Raphael André Bauer
On Tue, Feb 16, 2010 at 8:15 AM, yonny yon...@googlemail.com wrote:  Hello Folks,    I think deploying a compass app on gae is not possible because the core compass interface extends javax.naming.Referenceable which is not on google's whitelist.I encoutered a similar problem when I call

Re: [appengine-java] Re: Compass on Google App Engine

2010-02-17 Thread Raphael André Bauer
, and/or using an index file in the war folder)... ra! On 17 Feb 2010, at 21:23, a.maza wrote: checkout the latest source from compass. The last commit removes the Referencable interface. On 17 Feb., 14:36, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Tue, Feb 16, 2010 at 8:15 AM

Re: [appengine-java] DeadlineExceededException on LogFactory.getClass()

2010-02-16 Thread Raphael André Bauer
On Mon, Feb 15, 2010 at 4:29 PM, Heru Martinus Salim heru.sa...@googlemail.com wrote: Hello, I got a DeadlineExceededException as I initialize my Logger. Here is the code which threw this exception: private final org.apache.commons.logging.Log LOG =

Re: [appengine-java] Re: Merge join on list properties / more efficient on one list or on separate lists

2010-02-02 Thread Raphael André Bauer
. thanks Max :) does anybody have a pointer to a specification where I could look up the exact time and space consumption of both querys on GAE? Thanks, Raphael Thanks a lot, Max On 1月28日, 上午1時06分, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi everybody, Suppose you have

[appengine-java] How to monitor restarts of GAE instances

2010-02-01 Thread Raphael André Bauer
Hi everybody, what kind of monitoring do you use to 1. monitor if an instance restarts. 2. if GAE runs on multiple instances. (A code snipplet would be really cool). I am using GUICE, and I am currently monitoring when the GUICE injector is created - according to my monitoring it is created

[appengine-java] Over quota problem and problems getting the app quickly back to work

2010-01-15 Thread Raphael André Bauer
Hey Google Team, we are currently load-testing our billing-enabled application. We ran into the CPU quota and our app got deactivated (for now about 30 Minutes Error 503: This Google App Engine application is temporarily over its serving quota. Please try again later.). So far that's okay. But

Re: [appengine-java] Do JPA objects show up in the admin colsole ?

2009-12-29 Thread Raphael André Bauer
On Wed, Dec 30, 2009 at 12:51 AM, newbie100 shahed...@gmail.com wrote: Hi, I have just written my very first app, and it attempts to store an object using JPA. The code is as below. with the Employee and EMF classes copy / pasted from the docs. These lines were added to a default project,

Re: [appengine-java] Wrong calculation of week in App Engine

2009-12-28 Thread Raphael André Bauer
myself to circumvent the App Engine behavior and file a bug... Not nice, but I need the functionality... Raphael On Mon, Dec 28, 2009 at 5:54 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I am currently using this code to calculate the week of the year: ===snip

Re: [appengine-java] Wrong calculation of week in App Engine

2009-12-28 Thread Raphael André Bauer
On Mon, Dec 28, 2009 at 11:34 PM, Don Schwarz schwa...@google.com wrote: The bug I referenced is definitely still present up to at least Java 1.6.0_10 .  I get 200901 when I run this code on my local Sun Java 1.6.0_10 JDK with a timezone of CST for 1262000152901L. The bug is that it's

Re: [appengine-java] Re: Question about request from one app to another one through ajax

2009-12-24 Thread Raphael André Bauer
On Wed, Dec 23, 2009 at 6:47 PM, Oren Hacohen oren...@gmail.com wrote: I am having the exact same problem. I am Using $.post jquery to send my POST request to the servlet residing on my app-engine application, and I get the exact same error. Is there any solution\workaround for this issue ?

Re: [appengine-java] Use Blobstore Java API with GWT

2009-12-17 Thread Raphael André Bauer
hey henry, the gwt frontend code looks like java, but it is crosscompiled. that's the reason why the imports cannot be found - it's technically something completely different. so what you have to do is having an RPC call to your server, that returns a valid form url where you can upload your

Re: [appengine-java] Cannot deploy files because of space(s) in file path

2009-12-16 Thread Raphael André Bauer
that's not really a bug i guess. the problem is the space character. depending how your system is configured and depending how the target system is configured a space is not always a space. if you play around with encoding on your machine i am pretty sure you will get it to run somehow. in

Re: [appengine-java] unable to deploy new versions after upgrade to 1.2.8

2009-12-04 Thread Raphael André Bauer
On Fri, Dec 4, 2009 at 6:32 PM, jacek.ambroziak jacek.ambroz...@gmail.com wrote: I am going through all the usual motions and yet the deployment of a new version never finishes successfully; instead I am getting java.lang.RuntimeException: Version not ready. in the /tmp log I had the same

Re: [appengine-java] Random App Engine errors

2009-12-02 Thread Raphael André Bauer
On Wed, Dec 2, 2009 at 8:39 PM, Jason.LTech jason.keic...@gmail.com wrote: We are receiving random App Engine errors the last few days on an app that has been performing fine for months +1 ra failed web com.google.apphosting.runtime.HardDeadlineExceededError: This request

Re: [appengine-java] No source code is available

2009-11-30 Thread Raphael André Bauer
On Mon, Nov 30, 2009 at 3:56 AM, Bryan Harper brnh...@gmail.com wrote: No source code is available for type javax.jdo.PersistenceManagerFactory; did you forget to inherit a required module? I'm working on a simple app that I just got to the point of persisting data. When I call the PMF I get

[appengine-java] does usage of buffered writer in servlet make sense

2009-11-02 Thread Raphael André Bauer
hey, i am wondering if it makes sense to wrap the printwriter of a servlet into a bufferedwriter. depending on the underlaying implementation that can make sense imho, but i am not sure about the google app engine... any recommendations? thanks! raphael

[appengine-java] Re: An internal error occurred during deployment

2009-10-29 Thread Raphael André Bauer
On Wed, Oct 28, 2009 at 6:14 PM, Pion onlee2...@gmail.com wrote: I have been developing my app in the hosted mode for the past few months. It works fine on the hosted mode. Today, I got an internal error below when I tried to deploy it for the first time using Eclipse. My environments:

[appengine-java] JDO and Sets and Quotas

2009-10-28 Thread Raphael André Bauer
Hi, I got a question regarding how to implement a specific problem (and make it scale without reaching any hard quotas implied by GAE). my problem: Think of a Google Reader like application - there must be a mechanism that stores items read by a user. I would implement it as: - object USER

[appengine-java] Re: Photo and Video services

2009-10-22 Thread Raphael André Bauer
On Thu, Oct 22, 2009 at 7:55 PM, Diana Cruise diana.l.cru...@gmail.com wrote: What options do I have in GAE to allow Users to upload, store, and view media (photos, video, audio, etc) from my within my application? in short: it's not possible. (don't forget that there is a 1mb limit for

[appengine-java] Re: JPA vs. JDO: Different naming convention when mapping to Entity (uppercase vs. case sensitive)

2009-10-18 Thread Raphael André Bauer
is updating my persistent classes and creating the default jdoconfig.xml. My app now runs with JDO and there was no need to convert the raw data in the datastore. Nice :) Raphael Max On Fri, Oct 16, 2009 at 10:52 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi, I am

[appengine-java] Re: cron query

2009-09-16 Thread Raphael André Bauer
On Wed, Sep 16, 2009 at 6:53 AM, antshpra antsh...@gmail.com wrote: no... you can generate a cron job that runs every minute and only executes the working task when the time is right (eg the 12:20 13:20 whatever..). this is fairly easy to make.. r

[appengine-java] app engine stored data quota / datastore api / daily quota

2009-09-07 Thread Raphael André Bauer
hi everybody, to make it short: is the quota (Stored Data (billable)) of the datastore api a daily quota? so theoretically i could store 1gig of stuff each day? i am wondering - because my application uses around 100mb for 2 weeks each day - and i do not store anything new - what is at least

[appengine-java] Re: app engine stored data quota / datastore api / daily quota

2009-09-07 Thread Raphael André Bauer
On Mon, Sep 7, 2009 at 10:50 AM, Raphael André Bauerraphael.andre.ba...@gmail.com wrote: hi everybody, to make it short: is the quota (Stored Data (billable)) of the datastore api a daily quota? so theoretically i could store 1gig of stuff each day? i am wondering - because my