[google-appengine] Datastore DB Design

2009-08-17 Thread garazy
Hi, I want to store 4.5 million data records that have a string identifier which each have 50 keywords associated with them. For example, value (string), keyword1 (string) ... keyword50 (string) In SQL Server 2008 in a traditional database the best way, that I found, was to store this is 3NF

[google-appengine] Re: Task Queues

2009-08-17 Thread Philippe
I don't think you can flush a queue today (I hope we will be able to do it from the dashboard in the future). What you can do, is to empty your tasks. just put "pass" in it, instead of there content, and upload to appengine. of course, if you have more than 10 000 taks trying to run, you will hav

[google-appengine] Re: Programmatic Default Version in the Admin Console

2009-08-17 Thread Josh
Thanks Nick. That particular link doesn't seem to be working. On Aug 17, 6:52 am, "Nick Johnson (Google)" wrote: > Hi Josh, > We don't currently have a mechanism for this. I'm not a lawyer, so this is > not legal advice, but I don't believe the terms of service contain anything > that would pr

[google-appengine] Re: proper imports for jsonpickle?

2009-08-17 Thread Tim Hoffman
Hi Neal You will need to actually install simplejson or put django.utils in to you sys.path What is probably happening inside jsonpickle is its trying to explicitly import one of a number of json parsers and can't find them (ie it doesn't know to import simplejson from django.utils.) T On Aug 1

[google-appengine] Re: Proposal: __index__ support to make certain datastore/query operations more efficient

2009-08-17 Thread ryan
interesting! thanks for the writeup, tav, and for the discussion, julian and andy. this is definitely a worthwhile use case. short answer: without getting too deep into the different use cases, i agree with andy. this is a great feature, and would almost certainly be useful in a library or the ap

[google-appengine] Re: Task Queues

2009-08-17 Thread Sebastian Aviña
I need to flush my "default" queue, but I don't know how. Any suggestions? On Aug 16, 5:21 pm, Sebastian Aviña wrote: > Hi, I'm running some task queues on my app hola-dgo, right now I  have > exceded the Total Daily Quota, and I still have around 2000+ tasks in > queue... I don't know which ta

[google-appengine] Re: How to pull out my files back from the server?

2009-08-17 Thread Wooble
On Aug 15, 3:45 pm, Andrey wrote: > Hello. > > I uploaded my app's files to the server and want to change the latest > version from another computer. Can I get them back from the server or > should I deliver them to another computer different way? I didn't find > such option in the administrato

[google-appengine] proper imports for jsonpickle?

2009-08-17 Thread NealWalters
I want to run this line of code: import jsonpickle strPickledObject = jsonpickle.encode(objCommonTaskMessage) which works fine outside of GAE, but in GAE gets this error: File "d:\GoogleAppEngine\3WCloud.com.Provisioning\provisioning.py", line 740, in get strPickledObject = jsonpickle

[google-appengine] Re: Maintenance Timing

2009-08-17 Thread Joshua Smith
Fair enough, but I bet they could look at their own big-picture dashboards and find the low point of usage. And I *bet* that time will not just happen to be when the CA employees have finished their first latte. :) --~--~-~--~~~---~--~~ You received this message be

[google-appengine] maintenance questions

2009-08-17 Thread davew
[1] Will the read-only mode be for the entire hour for a specific app? Typically the disabling of writes for a particular app seems to be for less than the full maintenance window. This effects how I handle the down time. i.e. leave the app up, but warn people, vs literally take the app down for

[google-appengine] Re: Maintenance Timing

2009-08-17 Thread Paul Kinlan
I think they are in a rock and a hard place, especially if it is critical work - Your late night is my early morning - it is a global service that could quite possibly have more developers in the rest of the world than there are in the US. Paul 2009/8/17 Joshua Smith > > I really appreciate th

[google-appengine] Maintenance Timing

2009-08-17 Thread Joshua Smith
I really appreciate that you are warning us about the maintenance. However, next time, I'd ask: 1) More warning, if possible; and, 2) Do it sometime other than the middle of the day in the United States! It is customary for service providers to do maintenance activities in the wee hours, to min

[google-appengine] Re: How to add an administrator

2009-08-17 Thread Jeff S (Google)
Hi Kate, >From your description, it sounds like you followed the correct steps. What is the app ID where you are seeing this? Is the person you are inviting using a Google Apps account? Thank you, Jeff On Fri, Aug 14, 2009 at 11:01 AM, Kate wrote: > > I need to add a second admin. I searched

[google-appengine] Re: Maximum rate of e-mail recipients

2009-08-17 Thread Jeff S (Google)
Hi Evaldes, Since there is a time limit of 30 seconds per request, sleeping for a minute will likely cause your request to receive a deadline exceeded exception. I think a better approach would be to use the task queue to send the emails at the desired rate (you can set the rate at which tasks are

[google-appengine] Re: verifying my account

2009-08-17 Thread Jeff S (Google)
Hi franxs, Sure, please fill out the following form and you should have access within a day or at most two. https://appengine.google.com/waitlist/sms_issues Thank you, Jeff On Fri, Aug 14, 2009 at 8:14 AM, franxs wrote: > > dear google app engine; > > i've just signed in to use the App Engin

[google-appengine] Re: How to expand the User Class?

2009-08-17 Thread Jeff S (Google)
Hi Evie, Actually it's usually the other way around: you can create a Model which contains a UserProperty to reference the user. The way I like to think of it is that application specific data should live within the datastore, but the users API is essentially read only. When you store your profile

[google-appengine] Re: update_indexes error

2009-08-17 Thread Jeff S (Google)
It should now be possible to vacuum and re-create the indexes for haowanerde. 2009/8/16 XinGuo. Feng > > me to,who can help me,my appid is haowanerde > > On 8月15日, 上午2时51分, Endri wrote: > > Hi Jeff > > i also cannot update my indexes. My app name is "alin". I vacuumed the > > indexes before (n

[google-appengine] Re: Programmatic Default Version in the Admin Console

2009-08-17 Thread Peter Niederwieser
I just wanted to ask the same question. My goal is to have a script that deploys a new version, runs some automated tests, and then switches to the new version. On Aug 14, 11:38 pm, Josh wrote: > Is there a programmatic way to change the current version of my app? > Scenario:  I just did my buil

[google-appengine] JPA question - Parent Child relationship

2009-08-17 Thread Partha
What is the meaning of this error message? I get this message when updating "Tenant" Attempt was made to manually set the id component of a Key primary key. If you want to control the value of the primary key, set the name component instead. this is my entity class @Entity public class Tenant

[google-appengine] Re: Index quota

2009-08-17 Thread Tim Lebedkov
thank you On Mon, Aug 17, 2009 at 7:13 PM, Jeff S (Google) wrote: > > Hi Tim, > > I've reset it, you should be all set. > > Thank you, > > Jeff > > On Aug 15, 7:08 am, "tim.lebed...@googlemail.com" > wrote: >> Hello, >> >> my app (highnoon.appspot.com) uses 23 indexes and the admin console >> sh

[google-appengine] Re: Index quota

2009-08-17 Thread Jeff S (Google)
Hi again Tim, I forgot to address your question. The maximum number of indexes per app is 100, but if you need more let us know. There has been a bug however which prevents the index count from reducing in some cases, so adding multiple times, or removing indexes has not always reduced this count

[google-appengine] Google app engine launcher does not start

2009-08-17 Thread ofedrigo
Hi, I downloaded the latest Google app engine launcher on my apple OS10.5.6 and have already python 2.5.2 installed and its path is in the usr/bin directory. Unfortunately when I start to run Google app engine launcher, I get this error message: "Fatal Error Sorry, pieces of GoogleAppEngineLau

[google-appengine] Server Error (500),when i update_indexes

2009-08-17 Thread XinGuo. Feng
my app-id is haowanerde,please!! --~--~-~--~~~---~--~~ 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

[google-appengine] Too Many Versions 403

2009-08-17 Thread Brandon Wirtz
I have an App ( GAESTATS ) which only shows one major/minor version in the Admin interface, but when I AppCfg it I get a "403 Too Many Versions" Error. I Vaccuumed and updated_index. I waited 6 hours (just in case) Rinse and Repeat, but to know avail. Just before I got this error I was getting

[google-appengine] Re: Building index stucked

2009-08-17 Thread Ananya
Hi, I've got a problem while building a new index for my applicaiton. index.yaml is correctly uploaded but its status is stuck in "Building". I've tried vaccuming the index by appcfg.py but failed... I need some help. My application ID is "freetvradio". Thanks. --~--~-~--~~---

[google-appengine] Can't deploy?

2009-08-17 Thread Richard Lee
I've been happily deploying apps to google via eclipse a few times today. However, I tried again shortly after midnight and it seems to be hanging. Is there something up? Richard --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[google-appengine] Index quota

2009-08-17 Thread tim.lebed...@googlemail.com
Hello, my app (highnoon.appspot.com) uses 23 indexes and the admin console shows "Resource is currently experiencing a short-term quota limit." What is the maximum number of indexes that are allowed? Or should the number be just reset and this is a bug in GAE? Regards --Tim --~--~-~--

[google-appengine] appcfg upload authentication problem

2009-08-17 Thread John
Hello, I have just loaded by app onto appengine but am having a problem using appcfg.py to upload data I am able to view my app running at appspot.com although without any data I can access my appengine app dashboard by going to https://appengine.google.com/a/ my app is running at http://myapp

[google-appengine] Re: update_indexes error

2009-08-17 Thread XinGuo. Feng
me to,who can help me,my appid is haowanerde On 8月15日, 上午2时51分, Endri wrote: > Hi Jeff > i also cannot update my indexes. My app name is "alin". I vacuumed the > indexes before (now i have no indexes at all) and then i tried > runningupdate_indexesbut a 500 server error comes out. I think it i

[google-appengine] Re: can not force delete a index with error!

2009-08-17 Thread XinGuo. Feng
me too,who can help me?my app id is haowanerde On 7月13日, 下午10时38分, jb wrote: > Hello, > > all my index are stuck at error for some days now. I tried to > vacuum_indexes andupdate_indexesbut nothing happend. Could anyone > from google take a look at my indexes? My app id is iferienhaus. > > Tha

[google-appengine] update_indexes error,500

2009-08-17 Thread XinGuo. Feng
Those indexes always be "building",who can help me ?? reset indexes?thanks my app id is haowanerde --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to goo

[google-appengine] Re: Contact Application Owner?

2009-08-17 Thread Skip Tavakkolian
I have the same problem. Our domain name is very unique and highly unlikely that someone has registered a gmail ID with that name. Can anyone confirm the same thing can happen if a group by that name exists on google groups (hence the @googlegroups.com exists)? Thanks, -Skip On Aug 3, 2:45 pm,

[google-appengine] How to build one to one relationship using JPA?

2009-08-17 Thread Partha
I have two entity class, Tenant and Contact. is it the right way? if not can anyone share a sample. @Entity public class Tenant { @Version() private Long version; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long tenantId; @OneT

[google-appengine] Re: Index quota

2009-08-17 Thread Jeff S (Google)
Hi Tim, I've reset it, you should be all set. Thank you, Jeff On Aug 15, 7:08 am, "tim.lebed...@googlemail.com" wrote: > Hello, > > my app (highnoon.appspot.com) uses 23 indexes and the admin console > shows > > "Resource is currently experiencing a short-term quota limit." > > What is the ma

[google-appengine] Free Quota Clarification

2009-08-17 Thread ramu
Currently my app is in development stage and NOT made public. However I seem to miss something about quotas. The only thing running consistently on my app is 1 cron job running every minute building the database from another resource on internet. the Quota Page shows following ... Outgoing Band

[google-appengine] How to pull out my files back from the server?

2009-08-17 Thread Andrey
Hello. I uploaded my app's files to the server and want to change the latest version from another computer. Can I get them back from the server or should I deliver them to another computer different way? I didn't find such option in the administrator's console? Thanks, Andrey --~--~-~--

[google-appengine] Re: All Read Please: Geographical Request Latency

2009-08-17 Thread Ben Nevile
Plugged in to DSL I get ~150ms. Ben On Aug 14, 10:13 am, Martyn wrote: > Hi Ben, > > Clearly all parts of the network add latency. The bit that adds the > most is the most significant - wherever it may be.  The claimed > AppEngine latency in the status figures (for Java and Python) is based >

[google-appengine] Unable to Deploy (server error 500)

2009-08-17 Thread Joshua Smith
I've just created a new app (ID: kaoncatalog). I'm trying to deploy it and getting an error with no useful information in it. Here is the log... *** Running appfg.py with the following flags: --no_cookies --email=kaon.interactive@gmail.com --passin update Scanning files on local disk. S

[google-appengine] Re: Content, TOS, and 3rd party users

2009-08-17 Thread Nick Johnson (Google)
Hi Aku Da, I am not a lawyer, so do not treat this as legal advice: The terms of service are intended to prevent real abuse. Obviously you don't have complete control over what your users post, but as long as you respond promptly to remove any content that infringes the App Engine terms of service

[google-appengine] Re: Problem with "Verify Your Account by SMS"

2009-08-17 Thread Nick Johnson (Google)
Hi, If you are having trouble with SMS verification, or want an additional account activated, please fill out the following form: http://appengine.google.com/waitlist/sms_issues (This is from the following FAQ http://code.google.com/appengine/kb/sms .html#error ) Once you fill out this form, yo

[google-appengine] Re: Python GAE version of Rails' validates_uniqueness_of

2009-08-17 Thread Daniel Rhoden
Thanks Nick. Always appreciate the help! Regarding the prefix you put in the key_name, on hunch it looks to have other benefits. I suspect memcache. Do you have any other pearls you can toss out about it, and ways that known key_name prefixes can be leveraged? --Daniel Rhoden On Aug 17

[google-appengine] Re: Issues in domain administration

2009-08-17 Thread Nick Johnson (Google)
Hi Jay, You need to contact Google Apps support, which is unrelated to App Engine. The means of contacting Apps support are outlined here: http://www.google.com/support/a/bin/static.py?page=contacting_support.htmland their discussion group is here: http://www.google.com/support/forum/p/Google+Apps

[google-appengine] Re: Deployment Error: Server Connection Error

2009-08-17 Thread Nick Johnson (Google)
Hi acocarla, I've reset your index quota. You should be able to upload your app again now. -Nick Johnson On Fri, Aug 14, 2009 at 12:15 PM, acocarla wrote: > > Hi, > > I am having a similar problem but with the indexes. I deleted all > indexes of the application (voucherapp) using the python app

[google-appengine] Re: Programmatic Default Version in the Admin Console

2009-08-17 Thread Nick Johnson (Google)
Hi Josh, We don't currently have a mechanism for this. I'm not a lawyer, so this is not legal advice, but I don't believe the terms of service contain anything that would prohibit you from automating this using the current Admin Console's mechanisms, however. Please do feel free to file a feature

[google-appengine] Re: performance issues. My quota is Ok. Please help!

2009-08-17 Thread Nick Johnson (Google)
Hi riq, We really need many more details to provide a useful diagnosis. It sounds like you could have issues with contention - if every request is trying to update the same set of entities, you will run into contention issues - but it's impossible to say without more details of how your app is writ

[google-appengine] Re: Python GAE version of Rails' validates_uniqueness_of

2009-08-17 Thread Nick Johnson (Google)
Hi Daniel, The best way to ensure uniqueness is to use key names. In this case, the natural key name is the User's ID. For example: user_account = Account(key_name = 'user:%d' % (current_user.user_id(),), ...) This also allows you to look up user accounts without a query: user_account = Account.

[google-appengine] Re: Task Queues

2009-08-17 Thread Jason Smith
I've found three tricks to be helpful: 1. Do not use the default queue unless you have totally debugged your code. The default queue is set so that a runaway task process will max out the quota very quickly. 2. Stick to about one queue per task to have a better idea of what's going on. 3. If p

[google-appengine] Re: Maximum rate of e-mail recipients

2009-08-17 Thread Evaldas Taroza
Thanks for clarification, Jeff. So for sending 10 emails at once I'll need to do something like this: int emailCount = 10; while(emailCount > 0) { ...send8emails... emailCount -= 8; Thread.sleep(1000*60); } Is that right? This also holds with the billing enabled, just consider the emailCo