[google-appengine] Billing issue

2013-02-07 Thread Arny
Hi there,
we're having some issues with billing.
Google had some trouble with charging my creditcard and now they stopped 
charging at all.
There is no billig admin now and I can't change a thing! Where is the 
support???
Who, what or where do I have to go to solve my problem?

Thanks
Arny

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: I remember I ever read somewhere in gae documents, which says google internal apps also run on app engine

2011-09-02 Thread Arny
Same here.
Already on my way to leave appengine.
There is not even a way to export database for Java GAE, so I had to
write my own which is CPU intensive again.
So you better export your data now, before the new pricing goes live.

On Sep 2, 11:35 pm, Tapir tapir@gmail.com wrote:
 I just want to say, if it is true, with the new gae price model, you
 google will go bankrupt.

 Do you know, app engine will charge me more than 3 times the money I
 earn with your adsense under the new price model. ironic?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Goodbye AppEngine

2011-09-01 Thread Arny
Just wanted to share our answer to the new pricing and business policy
of Google.
It's just ridiculous to increase the pricing up to 1000% (or even
more?) within just few weeks.

People should know that cloud computing is nothing less than virtual
instances sold for a lot of money.
With the new pricing, we're actually able to get 30 real servers,
including 4TB traffic, incredible amount of HDD (with RAID), multi-
core 2GHz or more and starting at 2GB RAM. All that is per server of
course.

People should wake up. Cloud is just a marketing buzz word.

Get a dedicated server with Jetty, MongoDB and you're ready to get
even better performance with a lot of less costs.
The best part is: you are no longer LOCKED into a specific cloud
framework/architecture, as you are in AppEngine and are able to switch
to any cloud or system you want.

Moving out of here as quick as possible.
Goodbye.
Arny

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



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

2010-10-10 Thread arny
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 ▲ , searchIndex ▲ ,
searchIndex ▲ , searchIndex ▲ , normalizedName ▲

isOnline = boolean
searchIndex = list (max 15 items)
normalizedName = string

Now as soon I add another searchIndex or another property to the
indexes I get an error when AppEngine is trying to build the indexes.

-- BUT --

Then again I'm looking at the 
http://code.google.com/p/guestbook-example-appengine-full-text-search/
example which was mentioned by Googles AppEngine Team.
This project is using 200 tokens to index! and self-joining it up to 5
times!

How is that possible and what I am doing wrong?
I need at least one more property to be added to the index.

Thanks

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Remove properties from existing data

2010-10-10 Thread arny
Both information were very helpful!
Problem solved.
Thanks!

On Oct 7, 7:16 pm, Ikai Lan (Google) ikai.l+gro...@google.com
wrote:
 An easy way to iterate over all your entities is with the Mapper API:

 http://googleappengine.blogspot.com/2010/07/introducing-mapper-api.html

 --
 Ikai Lan
 Developer Programs Engineer, Google App Engine
 Blogger:http://googleappengine.blogspot.com
 Reddit:http://www.reddit.com/r/appengine
 Twitter:http://twitter.com/app_engine

 On Thu, Oct 7, 2010 at 10:11 AM, Didier Durand durand.did...@gmail.comwrote:



  Hello,

  You have to go down to low-level datastore api to do that: see
  Entity.removeProperty()

  See
 http://code.google.com/appengine/docs/java/javadoc/com/google/appengi...

  didier

  On Oct 7, 2:06 pm, arny arny...@googlemail.com wrote:
   Hello,

   I've been looking for a way to remove unused properties from existing
   data for a while but could not find the right information yet.
   Everyone is talking about what should not be done, but no one is
   giving any ideas how to remove.

   So I can't set NULL, since it's a value as well and gets stored.
   So how to get rid of unused properties then?

   On python there is delattr to remove a property completely.
   On Java there is ... ?

   Thanks

  --
  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-j...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine-java+unsubscr...@googlegroups.comgoogle-appengine-java%2B 
  unsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Remove properties from existing data

2010-10-07 Thread arny
Hello,

I've been looking for a way to remove unused properties from existing
data for a while but could not find the right information yet.
Everyone is talking about what should not be done, but no one is
giving any ideas how to remove.

So I can't set NULL, since it's a value as well and gets stored.
So how to get rid of unused properties then?

On python there is delattr to remove a property completely.
On Java there is ... ?

Thanks

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[google-appengine] Re: Increased CPU Time/Request after yesterdays maintenance?

2010-09-15 Thread Arny
Still not solved?
We're still getting quiet a lot 500s.

app id: radiodeck

On Sep 15, 2:22 am, Ikai Lan (Google) ikai.l+gro...@google.com
wrote:
 There's a thread we'll be updating:

 http://groups.google.com/group/google-appengine-downtime-notify/brows...



 On Tue, Sep 14, 2010 at 5:05 PM, David s2kd...@gmail.com wrote:
  I am getting a large percentage of errors in my app yesterday and
  today too. (appid: word-play)  I wasn't getting any of the throttling
  errors before that.

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2Bunsubscrib 
  e...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Do we have an ETA for the resolution of ongoing performance issues.

2010-09-15 Thread Arny
We're still getting a lot of 500s (dashboard  front end).

Did you transferred our apps to lower-cost servers or why is
everything working that bad since the maintenance?
When are the REAL paid services coming?

On Sep 15, 6:17 am, Ikai Lan (Google) ikai.l+gro...@google.com
wrote:
 Hi Tim,

 You can track the progress here:

 http://groups.google.com/group/google-appengine-downtime-notify/brows...

 It's pretty hard to give an ETA, but we'd like to resolve this as soon as
 possible. We're seeing signs that the issues may have subsided, but we'd
 like a bit more confidence before giving the all clear.



 On Tue, Sep 14, 2010 at 6:49 PM, Tim Hoffman zutes...@gmail.com wrote:
  Hi

 http://groups.google.com.au/group/google-appengine-downtime-notify/br...
  was posted several hours ago, with no updates.

  I certainly am experiencing significant ongoing issues with taskqueues
  and datastore timeouts and half the time can't get to the dashboard.

  I know someone must be working hard on this, but a little more detail
  on progress, ie ETA to recovery would be really great

  Thanks

  Tim

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2Bunsubscrib 
  e...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Increased CPU Time/Request after yesterdays maintenance?

2010-09-14 Thread Arny
We're having the same issue.

Worked fine until the maintenance, as far I remember.
Now our logs are filled with:

#
# Request was aborted after waiting too long to attempt to service
your request. This may happen sporadically when the App Engine serving
cluster is under unexpectedly high or uneven load. If you see this
message frequently, please contact the App Engine team.
#

Even we do only get about 8-10 requests/sec and all our responses are
memcached.

Any word from the AppEngine Team?

On Sep 14, 11:14 am, mscwd01 mscw...@gmail.com wrote:
 Hey,

 This may just be a coincidence but my average CPU time per request has
 risen noticably since yesterdays maintenance. Whereas my average was
 250-300ms, it now takes on average 500-600ms. This is the exact same
 resource without any changes made, so I cannot seem to work out why
 this would be. Has anyone else noticed this?

 Thanks

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Increased CPU Time/Request after yesterdays maintenance?

2010-09-14 Thread Arny
Our data:
appid radiodeck, java

###
URI

Count

% Errors
last 14 hrs
/api/2c56a38fe84d6336b9a2099409313901/json/
669 3.0%
/api/2c56a38fe84d6336b9a2099409313901/json/station/aglyYWRpb
259 2.3%


###

We never saw that many errors yet.


On Sep 14, 10:45 pm, Ikai Lan (Google) ikai.l+gro...@google.com
wrote:
 Can you guys list how often you guys see these? Here's some information
 that'd be helpful for us:

  - What % of your requests return Request was aborted? Is it happening at
 specific times? Java or Python?
 - App ID

 There was a latency spike around 4am 
 (http://groups.google.com/group/google-appengine-downtime-notify/brows...)
 and a minor spike about 6 hours after that.



 On Tue, Sep 14, 2010 at 1:36 PM, Arny arny...@googlemail.com wrote:
  We're having the same issue.

  Worked fine until the maintenance, as far I remember.
  Now our logs are filled with:

  #
  # Request was aborted after waiting too long to attempt to service
  your request. This may happen sporadically when the App Engine serving
  cluster is under unexpectedly high or uneven load. If you see this
  message frequently, please contact the App Engine team.
  #

  Even we do only get about 8-10 requests/sec and all our responses are
  memcached.

  Any word from the AppEngine Team?

  On Sep 14, 11:14 am, mscwd01 mscw...@gmail.com wrote:
   Hey,

   This may just be a coincidence but my average CPU time per request has
   risen noticably since yesterdays maintenance. Whereas my average was
   250-300ms, it now takes on average 500-600ms. This is the exact same
   resource without any changes made, so I cannot seem to work out why
   this would be. Has anyone else noticed this?

   Thanks

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2Bunsubscrib 
  e...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[appengine-java] Object Manager has been closed on 2 synchronous requests

2010-04-08 Thread Arny
Hi,

I'm getting an JDO/Nucleus exception when running 2 synchronous
requests on different ids of an object:
org.datanucleus.exceptions.NucleusUserException: Object Manager has
been closed

---
This is how my getById looks like:

PersistenceManager pm = getPM();
Stream stream = null;
try {
Stream tmp = pm.getObjectById(Stream.class, id);
stream = pm.detachCopy(tmp);
} finally {
pm.close(); // here the exception occurs
}
return stream;

---

It works fine on single request, but fails on 2 or more.
anyone know how to get around this?

Thanks

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Object Manager has been closed on 2 synchronous requests

2010-04-08 Thread Arny
Hmm, does it really matter even when using detached objects?
And aren't the persistence managers created individually on each
request?
I didn't know they are shared over many requests?

What's the best way to update about 20 objects synchronously using 20
asynch urlfetches?
It needs to be urlfetches, because the 20 objects are getting updates
from an urlfetch again.

Simple model:
- call 20 urls with individual ids
- each url gets an objects and gets its updates from another url

Any good solution for that?
Thanks

On Apr 8, 3:13 pm, bimbo jones bimbojone...@gmail.com wrote:
 hi,

 you should only close the persistence manager when your done.
 This error occurs because you try to close it a second time.
 Once you do the pm.close() all the data will be updated

 2010/4/8 Arny arny...@googlemail.com

  Hi,

  I'm getting an JDO/Nucleus exception when running 2 synchronous
  requests on different ids of an object:
  org.datanucleus.exceptions.NucleusUserException: Object Manager has
  been closed

  ---
  This is how my getById looks like:

                 PersistenceManager pm = getPM();
                 Stream stream = null;
                 try {
                         Stream tmp = pm.getObjectById(Stream.class, id);
                         stream = pm.detachCopy(tmp);
                 } finally {
                         pm.close(); // here the exception occurs
                 }
                 return stream;

  ---

  It works fine on single request, but fails on 2 or more.
  anyone know how to get around this?

  Thanks

  --
  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-j...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine-java+unsubscr...@googlegroups.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine-java?hl=en.



-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Object Manager has been closed on 2 synchronous requests

2010-04-08 Thread Arny
I could find my mistake.
Sorry for taking your time.

Thanks anyway!

On Apr 8, 3:24 pm, Arny arny...@googlemail.com wrote:
 Hmm, does it really matter even when using detached objects?
 And aren't the persistence managers created individually on each
 request?
 I didn't know they are shared over many requests?

 What's the best way to update about 20 objects synchronously using 20
 asynch urlfetches?
 It needs to be urlfetches, because the 20 objects are getting updates
 from an urlfetch again.

 Simple model:
 - call 20 urls with individual ids
 - each url gets an objects and gets its updates from another url

 Any good solution for that?
 Thanks

 On Apr 8, 3:13 pm, bimbo jones bimbojone...@gmail.com wrote:

  hi,

  you should only close the persistence manager when your done.
  This error occurs because you try to close it a second time.
  Once you do the pm.close() all the data will be updated

  2010/4/8 Arny arny...@googlemail.com

   Hi,

   I'm getting an JDO/Nucleus exception when running 2 synchronous
   requests on different ids of an object:
   org.datanucleus.exceptions.NucleusUserException: Object Manager has
   been closed

   ---
   This is how my getById looks like:

                  PersistenceManager pm = getPM();
                  Stream stream = null;
                  try {
                          Stream tmp = pm.getObjectById(Stream.class, id);
                          stream = pm.detachCopy(tmp);
                  } finally {
                          pm.close(); // here the exception occurs
                  }
                  return stream;

   ---

   It works fine on single request, but fails on 2 or more.
   anyone know how to get around this?

   Thanks

   --
   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-j...@googlegroups.com.
   To unsubscribe from this group, send email to
   google-appengine-java+unsubscr...@googlegroups.comgoogle-appengine-java%2bunsubscr...@googlegroups.com
   .
   For more options, visit this group at
  http://groups.google.com/group/google-appengine-java?hl=en.



-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: URLFetch to localhost counts as out/inbound traffic?

2010-04-06 Thread Arny
Anyone did some testing whether it's increasing the in/outbound
traffic?

On Apr 5, 3:55 pm, Arny arny...@googlemail.com wrote:
 Hi,

 are the URLFetches to localhost count as in/outbound traffic?

 Regards

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] URLFetch to localhost counts as out/inbound traffic?

2010-04-05 Thread Arny
Hi,

are the URLFetches to localhost count as in/outbound traffic?

Regards

-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Database cursor for back cursor?

2010-04-03 Thread Arny
But isn't it getting slower and slower on higher pages, since it
fetches ALL data (according to docs) and discards the offset value?
So Range(0,10) is faster than Range(1,10) ?

Anyone did some performance tests?
Regards

On Apr 3, 7:49 am, John Patterson jdpatter...@gmail.com wrote:
 Probably you should set an offset and limit instead for your paging.  
 I believe cursors are really intended for processing a lot of data off-
 line.  Remember there is no longer a 1000 result limit on fetches.

 On 3 Apr 2010, at 02:57, Arny wrote:

  Hi,

  Is there a way to get a cursor to page back to a previous page?
  If not, whats the point of paging forward only? I'm not building an
  ajax page.

  Regards

  --
  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 
  google-appengine-java+unsubscr...@googlegroups.com
  .
  For more options, visit this group 
  athttp://groups.google.com/group/google-appengine-java?hl=en
  .



-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[appengine-java] Re: Appstats not working. /stats = 404

2010-04-02 Thread Arny
Thanks, that worked!

No idea why it is redirecting to /stats

Regards,
Arny

On Apr 3, 2:16 am, Alexander Orlov alexander.or...@loxal.net wrote:
 You should be redirected to /appstats/stats. Try to call this URL
 manually after you're authenticated as admin user.

 - Alex

 On Apr 3, 2:10 am, Arny arny...@googlemail.com wrote:

  Hi,

  I'm trying to get Appstats to work with no success.
  Added all the lines specified in the docs to my web.xml

  After signing in at /appstats, I'm getting a redirection to /stats,
  but there I get not found 404 error.
  I'm using appengine 1.3.2.

  Did I miss anything?

  Thanks
  Regards
  Arny



-- 
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-j...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.



[google-appengine] Java GAE: delete one object with List property (3000 entries)?

2009-09-28 Thread Arny

GAE is really driving me mad.

I do have an Object which contains a List with about 3.000 childs.
No matter what I do, I can't simply delete this object with it's
childs.

Locally everything works fine. Very quick deletion.
But on App Engine it just times out with the 30sec limit and none of
the objects get deleted.

Tried this:
PersistenceManager pm = PMF.get().getPersistenceManager();
Query query = pm.newQuery(MainObj.class);
query.deletePersistentAll();
pm.close();

Tried this:
ListGenre genres = Genre.findAll();
for(int i=0; i20; i++) {
  genres.get(0).getStreams().remove(i);
}

Do I really have to delete all the objects manually inside the Data
Viewer?!

Would appreciate any help
Thanks

Arny
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] CPU Memory usage with Compass API

2009-09-26 Thread Arny

Hi,

anyone have any experience using Compass API and its CPU  store
memory usage?
Is it using a lot of CPU  store space compared to simple request?

Thanks

Regards
Arny
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Yet another GQL LIMIT/OFFSET thread ...

2009-04-14 Thread Arny

Hi,

Any of the Gurus can explain why do google serve us with the OFFSET 
LIMIT while you can't even use it?

Tried it inside the Data Viewer and getting the following results:
LIMIT = 1000 : ok
LIMIT  1000 : failure
OFFSET  1000 : ok
OFFSET  ~2800 : works partially
OFFSET  ~2800 : timeout..

How are we suppose to do dynamic results with different ORDER types
and ability to browse them by pages?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---