[google-appengine] DNS change to a new project still resolves to the old project ~15-25% of the time after ~20 hours

2015-03-26 Thread anthony
Yesterday (2015-03-26) we switched the association of the domain www.odrive.com from one project to another on GAE. The problem is that, after 20 hours, between 15-25% of requests to www.odrive.com are still hitting the old project (depending on the location I am testing from). In fact, they ar

[google-appengine] Preventing big/exploding indexes

2008-09-18 Thread Anthony
eing used in filters? Would it be best to store the lists in blob or text properties to prevent those items being indexed - or can I just specify that I don't need any indexes for certain properties? Anthony --~--~-~--~~~---~--~~ You received this message beca

[google-appengine] Re: XML file not rendered correctly when live

2008-09-26 Thread Anthony
Seems strange that it would be removed.. are you viewing the output in the FF xml view? Try a view source. Anyhow have you tried serving it as a static file... e.g. - url: /crossdomain.xml static_files: static/crossdomain.xml upload: static/crossdomain.xml On Sep 26, 8:15 pm, abowman <[EM

[google-appengine] Total Stored Data seems HUGE for a HelloWorld!

2010-02-08 Thread Anthony
Hi, I just deployed a simple Java/Wicket HelloWorld followed by an AJAX clock that updates every 5seconds. No-one knows of the site and yet after only an hour I'm seeing 25% Total Stored Data and it climbs every refresh it seems. What's going on? Many Thanks, Anthony light-house9.ap

[google-appengine] Re: warm instances on low traffic sites

2009-10-15 Thread Anthony
Would a simple cron task not work to keep an app instance warm? On Oct 14, 3:55 pm, ryan baldwin wrote: > +1 here. > - ryan. > > On Wed, Oct 14, 2009 at 8:52 AM, Gijsbert wrote: > > > > > > > I'm also interested. > > > On Oct 13, 10:24 am, bFlood wrote: > > > bump... > > > > On Oct 12, 12:25 pm

[google-appengine] Deploy problem on all my apps today.

2008-10-17 Thread Anthony
erver error has occurred. I've tried the usual 'rollback', that's not helping. It's happening on multiple apps, plus I see updates to static files working ok. Any ideas? Anthony --~--~-~--~~~---~--~~ You received this message because yo

[google-appengine] Re: Passing Data Between Request Handlers

2008-10-17 Thread Anthony
You could even use cookies - or a combination of memcache & cookies just incase one is not available. On Oct 17, 10:46 pm, Sylvain <[EMAIL PROTECTED]> wrote: > Use something like this > > def get_data(): >   data = memcache.get("key") >   if data is not None: >     return data >   else: >     dat

[google-appengine] Re: storing and rendering comment threads

2008-10-18 Thread Anthony
You could use ancestors & entity groups to maintain your threading, not sure how this would impact the overall performance but it makes querying for children easy. But, this would mean a query with the root comment as ancestor would pull back all children and all the children's children etc.. you

[google-appengine] Google Apps Labs / Solutions Marketplace

2008-10-29 Thread Anthony
ount, or is it just in our account running on their domain? -Can they access the code? -Is the data that's used with the service billed through our account, and we have to manage billing of the clients? Thanks, Anthony --~--~-~--~~~---~--~~ You received t

[google-appengine] Re: Will there ever be a DictProperty in datastore?

2008-10-30 Thread Anthony
I don't know if this will help but I've built a custom property for dealing with basic dict items. It's based on StringListProperty, so you still have some indexing for searching on keys, or "key:value" pairs. The code has not been tested much yet... class DictListProperty(db.StringListProperty)

[google-appengine] Re: Modeling Hierarchical Data

2008-10-31 Thread Anthony
Store all the parent ids as a hierarchy in a string... h="id1/id2/" h="id1/id2/id3" h="id1/id2/id3/id4" h="id5/" h="id5/id6" You can then filter WHERE h > "id1/" and h < "id5/" to get all children of id1. Or you can use entity groups & ancestors. More details here... http://groups.google.com/g

[google-appengine] Re: Modeling Hierarchical Data

2008-10-31 Thread Anthony
. Again, there are downsides as you will be limited to the exploding index limit, and puts will be slower when you get very deep - but the bonus is you get your inequality filter back so you can add ratings or something. Anthony On Oct 31, 9:33 pm, Chris Tan <[EMAIL PROTECTED]> wrote: >

[google-appengine] Re: Production env different from development?

2008-11-07 Thread Anthony
Hard to tell without knowing what sort of errors are you getting.. But, have you tried the included Django JSON encoder: from django.utils import simplejson object = simplejson.loads("{JSON}") string = simplejson.dumps(object) On Nov 7, 3:22 pm, Hans <[EMAIL PROTECTED]> wrote: > I have the fol

[google-appengine] Re: SDK 1.1.6 Released

2008-11-21 Thread Anthony
"URLFetch calls made in the SDK now have a 5 second timeout, matching production" Is it possible to turn the timeout off in the SDK? We have some scripts that run locally to do batch updates & fixes that hit external API's, they take longer than 5 seconds which is why we run them locally through

[google-appengine] Store model as different name to class?

2008-12-27 Thread Anthony
Hi, Is it possible to store a model as a different name to the class name? I thought this would work but its still stored as a "Test"... class Test(db.Expando): test = db.StringProperty() class MainHandler(webapp.RequestHandler): def get(self): NewTest = Test

[google-appengine] Re: Store model as different name to class?

2008-12-27 Thread Anthony
Thanks! On Dec 27, 5:20 pm, yejun wrote: > NewTest=type('NewTest',(Test,),{}) > > On Dec 27, 11:43 am, Anthony wrote: > > > Hi, Is it possible to store a model as a different name to the class > > name? > > > I thought this would work but its s

[google-appengine] Zip Importer High CPU every request

2009-01-07 Thread Anthony
main.py import templates Will it still be caching if im not importing the zip dircetly in the main.py? Anthony --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this gr

[google-appengine] Re: Zip Importer High CPU every request

2009-01-07 Thread Anthony
r(config.LIVE) + " DEBUG:" +str (config.DEBUG) return template.render(context) On Jan 7, 7:39 pm, "Rodrigo Moraes" wrote: > On Wed, Jan 7, 2009 at 2:16 PM, Anthony wrote: > > Is it normal for the zipimporter to take 500-1000ms every request - > > sh

[google-appengine] Re: Zip Importer High CPU every request

2009-01-08 Thread Anthony
or each request, then somehow your main > is being reloaded each time. > > On Jan 7, 4:39 pm, Anthony wrote: > > > It looks like the info in the logs could be down to the whole page > > processing, but very simple pages (no db) consistently taking 500ms+ > > Ill give i

[google-appengine] Re: High CPU for zipimporter django.zip

2009-01-09 Thread Anthony
Hi, same problem here with Jinja: http://groups.google.com/group/google-appengine/browse_thread/thread/400c37cc773b9f46# I have a main() function, but still does not look like it is caching (zipimported logs debug message every request), the zipimported is not in the file with the main() should t

[google-appengine] Re: High CPU for zipimporter django.zip

2009-01-09 Thread Anthony
Ok think I've got it.. I'm now checking the sys.path for the import, now only does it once! if not 'shared/jinja2.zip' in sys.path: sys.path.insert(0, 'shared/jinja2.zip') #print "import" On Jan 9, 10:04 pm, Anthony wrote: > Hi, same problem

[google-appengine] Re: Creating a short unique URL for an entity

2009-01-10 Thread Anthony
You could use the id instead of the key, key().id, then you can get it back with just DocModel.get_by_id(id) You should be able to go straight to the doc without the parent account id /doc/12345 I'm not sure you can guarantee id uniqueness across your whole data store, but it should be unique fo

[google-appengine] Re: Creating a short unique URL for an entity

2009-01-12 Thread Anthony
http://groups.google.com/group/google-appengine/browse_thread/thread/517a9ad5edd263d2/67a5160882462463?lnk=gst&q=are+ids+unique#67a5160882462463 http://code.google.com/appengine/docs/datastore/keysandentitygroups.html#Entity_Groups_Ancestors_and_Paths Looks like they are unique for a given kind

[google-appengine] Re: how to do GqlQuery since OR is not supported

2009-01-18 Thread Anthony
You could expand the list to include the prefix combinations... So ['dave','frost'], becomes ['d','da','dav','dave','f','fr','fro','fros','frost'] Then you can use '=' (and IN's) for your prefix & OR filter. But watch out for the exploding indexes, you should be ok with 3-4 words (<50 items), a

[google-appengine] Re: how to do both filter and order

2009-01-21 Thread Anthony
ve to do this onto the back of requests and batch things at the moment, hopefully some cron style scripts are coming soon to automate this. These methods are never going to be exact, but it will get you close enough if your trying to filter all 'recently liked images' which is what I'm gu

[google-appengine] Re: Complex tagging of items

2009-01-25 Thread Anthony
If you store the tags as a StringList wouldn't this query work.. WHERE tags = tag1 AND tags IN [tag2,tag3] AND tags != tag4 >From the docs it says the IN & != do run multiple queries behind the scenes so not sure if it will be as quick as running it in memory for a few hundred items, but if you

[google-appengine] does GAE have pycrypto?

2009-02-06 Thread Anthony
Hi, At the end of the OpenSocial gifts tutorial: http://code.google.com/apis/opensocial/articles/appengine-0.8.html pycrypto is invoked on GAE to authenticate a signed request. But when I try to do this myself, GAE can't find the pycrypto modules! Am I doing something wrong? : No module

[google-appengine] Re: does GAE have pycrypto?

2009-02-07 Thread Anthony
sample folder or download it. > > On 2/7/09, Anthony wrote: > > > > > > > Hi, > > > At the end of the OpenSocial gifts tutorial: > > http://code.google.com/apis/opensocial/articles/appengine-0.8.html > > >pycryptois invoked on GAE to authen

[google-appengine] Re: Requests going twice

2009-02-17 Thread Anthony
I had this problem.. check you have a static mapping in for favicon.ico in your app.yaml (and above your Init one) or just use "/" for your index handler. Your "/.*" mapping will send all request to Init, including anything else the browser looks for like the favicon, images or scripts not caught

[google-appengine] Re: Zip Importer High CPU every request

2009-02-18 Thread Anthony
I found that this helps: if not 'shared/jinja2.zip' in sys.path: sys.path.insert(0, 'shared/jinja2.zip') ZipImport does not get called every request now. On Feb 18, 8:21 pm, johnP wrote: > What should be the new limit?  People will always want more...  But > I'd propose "whatever the n

[google-appengine] Is XSLT transformation available for Java?

2009-04-20 Thread Anthony
nknown Source) at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform (Unknown Source) at org.xins.server.frontend.FrontendCallingConvention.translate (FrontendCallingConvention.java:775) Is it on pupose or is the AbsoluteIterator missing from the whi

[google-appengine] Low latency apps will scale, but what about apps who's backends have a high latency?

2011-08-29 Thread Anthony Barry
I'm writing an app and one of the requirements is that I need to fetch data from external servers and some of the files I'm fetching are quite large (up to 4 - 5MB). So I have written a backend which is scheduled to run by a cron, however what I'm not sure about is will this backend increase th

[google-appengine] What happened to GAE IPs' reverse DNS?

2013-05-23 Thread Anthony Brown
I remember that App Engine public IPs used to have an .bc.googleusercontent.com reverse DNS set. It doesn't seem to be the case any more; any idea why? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and sto

[google-appengine] Update on hosting appengine apps in EU data centres

2013-11-01 Thread Anthony Nolan
. The technical documentation around this is bad and in general this is causing more hassle than it should. We may lose our largest potential customer before we have a chance because of this issue. Can someone at Google help get this resolved? Anthony Nolan -- You received this message because yo

Re: [google-appengine] 301 redirects - no compelling solution?

2016-01-01 Thread Anthony Shapley
This is very true, but it uses a 302 redirect instead of a 301 - it really isn't the right option for people looking to make a permanent move. On Tuesday, September 29, 2015 at 8:58:43 AM UTC+1, Luna Duclos wrote: > > In your app.yaml, you can use "secure: always" to force the app to use > http

[google-appengine] Moving Regions

2016-01-06 Thread Anthony Shapley
Hi, Just wondered if anyone would be able to help me move an App Engine project to a different region? I'd prefer not to have to completely create a new project. Need to access a CloudSQL Server thats on a different project, in a different region to the one I am currently working. Ant -- Y

[google-appengine] Re: Need to speed up gae php+cloudSQL

2016-01-13 Thread Anthony Shapley
Hey Have you set the SQL Cloud instance to follow the app? Ant On Wednesday, January 13, 2016 at 8:40:20 AM UTC, Jukka Hautakorpi wrote: > > How stupid of me: > I re-checked the cloudsql instance at it really was to set running > on-demand. > > I changed it now and will see how it is affecting

[google-appengine] Re: WordPress issue with the 10000 file version quota (limit)

2016-01-21 Thread Anthony Shapley
That is a neat idea -- would also remove the need for local upgrades and redeployment (for plugins) if you were able to relocate them on GCS. On Thursday, January 21, 2016 at 9:47:26 AM UTC, Christopher Muller wrote: > > Hey guys, > > I've been super keen to get our WordPress site up onto GAE for

[google-appengine] Re: WordPress issue with the 10000 file version quota (limit)

2016-01-21 Thread Anthony Shapley
in a way which > the GAE can talk to it. > > > > > On Thursday, 21 January 2016 12:06:21 UTC+2, Anthony Shapley wrote: >> >> That is a neat idea -- would also remove the need for local upgrades and >> redeployment (for plugins) if you were able to relocate them

[google-appengine] Re: WordPress issue with the 10000 file version quota (limit)

2016-01-21 Thread Anthony Shapley
' ); > define( 'WP_PLUGIN_URL', 'gs://wp-testing/plugins'); > > But I'm not sure how to get the directory/url of the GCS in a way which > the GAE can talk to it. > > > > > On Thursday, 21 January 2016 12:06:21 UTC+2, Anthony Shapley wrote: >>

[google-appengine] Re: Massive GAE latency since 10:00 GMT

2016-02-04 Thread Anthony Shapley
Region migration would be ace. When I started some of my Apps, US was the only region available - and all of my 'gear' would be far better suited to the EU, but no migration options are available and I do not want to have to do it manually. On Thursday, February 4, 2016 at 4:44:40 PM UTC, Keith

[google-appengine] Task Queue Configuration Query

2016-02-29 Thread Anthony Shapley
Hi, I've been developing a reverse lookup tool, using the task queue and datastore in PHP, in order to prevent duplicate crawling we decided to assign names in the task queue (the domain name) however since configuring this the task queue on my local environment isn't running at all. Is there

[google-appengine] App only runs on one instance?

2016-04-27 Thread Anthony Shapley
Hi, We have an app running, using Django - and for some reason AppEngine won't ever the application on more than a single instance? We haven't set anything that should limit this in the app.yaml file, so just wondered if there is anything else we could have configured incorrectly that would pr

[google-appengine] Re: Custom domain redirecting to appspot URL

2017-02-23 Thread Anthony Davis
Same issue here... On Thursday, February 23, 2017 at 1:43:23 PM UTC-6, Joseph Reisinger wrote: > > Hi Alex- > > I'm seeing this issue with a newly deployed app engine instance. Is it > possible to get my domain whitelisted? > > Thanks > > —jr > > On Wednesday, February 15, 2017 at 8:15:27 AM UTC-

[google-appengine] URL Fetch Quota

2014-09-18 Thread Anthony Shapley
Hi, I wondered how one goes about increasing the URL Fetch Quota? At present its set at 46 million, ideally we'd like to double it or more if possible. Thanks Anthony -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To u

Re: [google-appengine] I would like to implement very simple web search app.

2014-09-19 Thread Anthony Shapley
ce I think. It is a neat idea though, can see lots of interesting things you could try - like applying social metrics to the results. You'd just have to host it elsewhere. Kind Regards, Anthony Shapley Follow me on Twitter <http://www.twitter.com/anthonyshapley>, Facebook <

Re: [google-appengine] Will any 3rd party Wordpress plugins work on Google App Engine?

2014-09-22 Thread Anthony Shapley
eed insights is repeatedly reporting as an issue. Ant Kind Regards, Anthony Shapley Follow me on Twitter <http://www.twitter.com/anthonyshapley>, Facebook <http://www.facebook.com/anthony.shapley> or Google+ <https://plus.google.com/53690494421503825/>. Visit the website &

Re: [google-appengine] Create automatic tasks every 10 min on App Engine ?? Need suggestions

2014-09-24 Thread Anthony Shapley
Cron to generate a task queue or just a cron to fetch the rss. Depends how many feeds you are planning to fetch. Cron will run for a maximum of 10 minutes. But you could build a really big task queue in that time. On 24 Sep 2014 17:39, "Adrian Lesniak" wrote: > Hi everyone, > > I would like to us

[google-appengine] Create a new project in Eclipse with module support

2014-12-03 Thread Anthony Robledo
I've asked this question all over and can't get an answer. Here is my stackoverflow post with bounty: http://stackoverflow.com/questions/27219020/create-google-app-engine-project-in-eclipse-with-modules The documentation explains what modules are but does a terrible job in explaining how to se

Re: [google-appengine] Re: Is there a PHP API for writing to the Datastore?

2015-01-14 Thread Anthony Shapley
Hi Tom, This looks like a fantastic contribution for any PHP App Engine developers, I for one have been looking for an easier solution to write to datastore from PHP and I thank you for creating and sharing this. I will most certainly have a play with it. Thanks Ant Kind Regards, Anthony

[google-appengine] Re: How to stop the AhrefsBot bot crawl ? on GAE

2015-01-22 Thread Anthony Shapley
Any chance its not a "real" AhrefsBot and someone else isn't just using there User Agent? Ant On Thursday, 22 January 2015 04:49:18 UTC, ASIA IO wrote: > > This my site https://timeforums.appspot.com/forum.php on GAE > How to stop the AhrefsBot bot crawl ? > I set in *robots.txt* , > > user-

Re: [google-appengine] More than one google app engine application (microservice) in a project

2015-02-04 Thread Anthony Shapley
Hi, You could look to deploy different application versions - which would run independently of one another inside a single App Engine project. Each version would be available on a different hostname e.g. v1.app.appspot.com v2.app.appspot.com and so forth. Thanks Ant Kind Regards, Anthony

[google-appengine] PHP Issues / No Errors in Logs

2015-02-24 Thread Anthony Shapley
t further right now. Thanks Anthony -- 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

[google-appengine] Re: PHP Issues / No Errors in Logs

2015-02-24 Thread Anthony Shapley
Cleared all the running instances and it seems to have returned to normal. Obviously some kind of issues at Google this morning with this and the Deployments taking forever :) On Tuesday, 24 February 2015 11:15:43 UTC, Anthony Shapley wrote: > > Hi, > > Has the PHP version of App En

Re: [google-appengine] Re: PHP Issues / No Errors in Logs

2015-02-24 Thread Anthony Shapley
cyber-compare Thanks Ant On 24 Feb 2015 20:20, "Stuart Langley" wrote: > Anthony - what's the app_id? > > On Tuesday, 24 February 2015 22:15:43 UTC+11, Anthony Shapley wrote: >> >> Hi, >> >> Has the PHP version of App Engine changed? Or some func

[google-appengine] Re: disable appspot.com

2015-05-26 Thread Anthony Shapley
My understanding is, as you rightly said you need to configure this in the App. Personally I'd look for where the HTTP Request is coming from and then 301 redirect it to the page on your domain. A bit like if the request was coming from http://yourdomain.com instead of http://www.yourdomain.com.

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-06-13 Thread Anthony DeFrancesco
I am running into the same issue trying to update my app engine application, its a java app. I have billing enabled and related into the tool using cloud auth login and still no luck. The app is hosted in the US -- You received this message because you are subscribed to the Google Groups "Goo

[google-appengine] java app.yaml api_version

2015-06-14 Thread Anthony DeFrancesco
I am unable to upload my application to the google app engine using the gcloud or appcfg.py. I receive an http 400 and found the error was Error 400: --- begin server output --- api_version '1' is not supported by the 'java' runtime. --- end server output --- This is my app.yam (application

Re: [google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-06-15 Thread Anthony DeFrancesco
@Ryan Thank you that was my issue! On Mon, Jun 15, 2015 at 10:28 AM Ryan (Cloud Platform Support) < rbruy...@google.com> wrote: > @Anthony > > Make sure you do the extra steps for Java > <https://cloud.google.com/appengine/docs/managed-vms/sdk#special-instructions> >

Re: [google-appengine] Re: java app.yaml api_version

2015-06-16 Thread Anthony DeFrancesco
Yeah my issue was using the wrong appcfg and missing part of the java instructions. Thank you! On Tue, Jun 16, 2015, 3:10 PM Michael (Cloud Platform Support) < mkev...@google.com> wrote: > Hi Anthony, > > I am currently unable to reproduce your issue with the App Engine SDK

Re: [google-appengine] urlfetch.Fetch() was explicitly cancelled

2015-07-13 Thread Anthony Madrigal
Hello, Is your question related to AdWords Scripts? If so, could you please report your question on the AdWords Scripts forum <https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!forum/adwords-scripts> ? Thanks, Anthony AdWords Scripts Team -- You received th

[google-appengine] Re: PHP Library for Cloud Datastore 2.0 Production Release

2015-08-04 Thread Anthony Shapley
Hi Tom, This sounds excellent - just so I am nor misreading, this no longer requires the Google API, so could this be used on AppScale for example? Ant On Tuesday, 4 August 2015 22:30:55 UTC+1, Tom Walder wrote: > > https://github.com/tomwalder/php-gds > > Enjoy! > > New features in 2.0 include

Re: [google-appengine] PHP Library for Cloud Datastore 2.0 Production Release

2015-08-05 Thread Anthony Shapley
gt; > On Wednesday, August 5, 2015, Anthony Shapley > wrote: > >> Hi Tom, >> >> This sounds excellent - just so I am nor misreading, this no longer >> requires the Google API, so could this be used on AppScale for example? >> >> Ant >> >

Re: [google-appengine] PHP Library for Cloud Datastore 2.0 Production Release

2015-08-05 Thread Anthony Shapley
Hi Tom, I've tried porting over a basic insert - but it keeps returning this error: *Fatal error*: Class 'GDS\Gateway\ProtoBuf' not found in */Users/anthonyshapley/Desktop/test/api/datastore/GDS/Store.php* on line *81* Thanks Anthony On Wednesday, 5 August 2015 09:16:49 UT

Re: [google-appengine] PHP Library for Cloud Datastore 2.0 Production Release

2015-08-05 Thread Anthony Shapley
Doh, ignore that .. need to include the gateway files now! On Wednesday, 5 August 2015 14:58:16 UTC+1, Anthony Shapley wrote: > > Hi Tom, > > I've tried porting over a basic insert - but it keeps returning this > error: > > *Fatal error*: Class 'GDS\Gateway\Pr

[google-appengine] Search API fails sporadically

2018-05-31 Thread Anthony Zboralski
Issue: https://issuetracker.google.com/u/1/issues/80454353 The document search API fails sporadically : 2018-05-26 22:35:52.976 CEST API error 5 (search: TIMEOUT): Failed to complete request in 4982ms 2018-05-30 12:26:18.185 CEST API error 5 (search: TIMEOUT): Failed to complete request in 4963

[google-appengine] App Engine no longer delivering Sendgrid emails

2019-07-12 Thread Anthony Viola
Hi all, I am using Google's App Engine and 6.4 of the Sendgrid-Node SDK. I submitted a ticket to Sendgrid and they were able to confirm that everything looks ok on their end. Whenever I go to send an email on App Engine via the email.send API, I get a SUCCESS, but the email is never delivered

[google-appengine] Re: App Engine no longer delivering Sendgrid emails

2019-07-13 Thread Anthony Viola
Hi Julie, Thank you for replying. I did follow that document when initially setting up sendgrid in my project. To be sure, I did double check to make sure everything conformed. July 3rd was the last time I received emails from App Engine. I tested using myself as a receiver (I always received

[google-appengine] Re: App Engine no longer delivering Sendgrid emails

2019-07-15 Thread Anthony Viola
wrote: > > Hi Anthony, > Are you on the free tier of SendGrid? All my emails to @hotmail bounce > because the IP SendGrid use has been blacklisted. I contacted them and > they said there is nothing they can do and suggested I move to a paid > tier. You can check your bounces

[google-appengine] Re: App Engine no longer delivering Sendgrid emails

2019-07-16 Thread Anthony Viola
k you all for the help! On Monday, July 15, 2019 at 9:56:51 AM UTC-4, Anthony Viola wrote: > > Hi Ash, > > I tried this with a free and paid Sendgrid account (they are two different > accounts). Per your suggestion, I checked the Suppressions anyway and my > messages were not liste

[google-appengine] A version of your app is using a deprecated version of Go. Please upgrade before October 1, 2019. Learn more

2019-09-13 Thread Anthony Zboralski
*A version of your app is using a deprecated version of Go. Please upgrade before October 1, 2019. Learn more * WTH!! Can someone clarify? Do I have to migrate all my apps by October 1??? How come I didn't receive a message and I only saw this tiny notification line on the console today???

[google-appengine] URLFetchService Migration

2020-11-14 Thread Anthony Ananich
Hi, All, I wonder what is the right way to upgrade Java 8 code to Java 11 in case it is using the URL Fetch Java API <https://cloud.google.com/appengine/docs/standard/java/issue-requests>? Thanks, Anthony Ananich https://ananich.pro -- You received this message because you are subscri

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-10 Thread Anthony Mills
't really CPU time we're costing Google since it's freely available for other processes. Please? :( Anthony On Jul 9, 6:27 pm, Alex Popescu wrote: > Hi guys, > > I have a cron op that is fetching some records for an entity and does > some processing on them. > >

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-11 Thread Anthony Mills
t really annoys me is this. Those requests are coming back in 170 ms. But I'm charged for 1400 ms of CPU time. How does that work? It should be doing blocking work on the server, right? Are there really nine servers all churning for that whole time? Thanks for your time, Anthony Mills

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-13 Thread Anthony Mills
50. On Jul 13, 3:30 am, "Nick Johnson (Google)" wrote: > On Sun, Jul 12, 2009 at 1:39 AM, Anthony Mills wrote: > > > Nick, thanks for responding. I'll add a lot more detail and test data > > here. > > > I'm doing three fetches: one to get the user

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-14 Thread Anthony Mills
ies (Query, Entity, etc) currently, and my Python version just used those as well. I'm not using Django, JDO, or JPA. I don't trust abstractions with my performance-critical sections. :) I'll do some testing later tonight about what happens when REQUEST_SIZE is 1, 5, 10, 20, etc., and rep

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-14 Thread Anthony Mills
On Jul 14, 6:48 am, Anthony Mills wrote: > I'll do some testing later tonight about what happens when > REQUEST_SIZE is 1, 5, 10, 20, etc., and report back. Ok, here are a selection of the results of my tests. "rs" controls the number of results asked for. /service?

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-16 Thread Anthony Mills
On Jul 16, 12:45 pm, Alexander Trakhimenok wrote: > This is expected behavior and nature of GAE data store. > > This is the beauty that the time will consistent and have direct > relations to number of items retrieved and not depend on number of > records stored. I understand that it is importan

[google-appengine] Re: CPU time for trivial datastore roundtrip

2009-07-16 Thread Anthony Mills
seems to take 3204 ms + 345 ms * results. Deleting seems to take about the same as inserting. // Anthony --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, sen

[google-appengine] Re: Cron and app versions

2009-04-15 Thread Anthony Baxter
If your cron.yaml is missing, the cron jobs will be left alone as is. If you want to remove the jobs, create a cron file just containing 'cron:' (python) or '' (java). On Apr 14, 11:28 pm, 风笑雪 wrote: > I haven't tried this, but I think it should be an issue. > > The cron.yaml doesn't contain a v

[google-appengine] Re: Cron Schedule Format parsing error

2009-04-15 Thread Anthony Baxter
Would something as simple as "every day 09:00" be enough? (No it's not there yet, just enquiring). On Apr 15, 9:10 pm, an0 wrote: > Dan, It is nice to see quick response and even better, quick reactions. > And I'm really glad to hear that the "every month" shortcut given in the > "premature" doc

[google-appengine] Re: Cron - "Too many continues"

2009-04-16 Thread Anthony Baxter
You can't use 302 redirects to extend a cron jobs lifetime, sorry. Anthony On Apr 17, 11:48 am, Ben wrote: > So trying outcron, I use a outside box tocrontoday and I use the > common App Engine 302 method to avoid deadline exceeded errors (hand > to another script via 302 for ea

[google-appengine] Re: Cron Schedule Format parsing error

2009-04-16 Thread Anthony Baxter
No, I'm asking as a future feature for the grammar. The doc will be fixed soon to match the 1.2.0 release, and a future release will make the "of month" words unnecessary. Anthony On Apr 16, 1:27 pm, 风笑雪 wrote: > try this:every day of month 09:00 > > The document is wro

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-16 Thread Anthony Baxter
Does your appid begin with a digit? Turns out I found a bug in cron that means the upload breaks in that case. A fix should be out next week, I hope. Anthony On Apr 16, 1:33 am, Kai wrote: > I am testing my new GAE app with thecronjob functionality. > Everything works fine in my loc

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-20 Thread Anthony Baxter
Monitor issue 1333 in the public tracker to track this bug. On Apr 18, 8:53 am, Jonathan-23andMe wrote: > I would like to second a request for this fix :) > > My app too starts with a didgit. > > On Apr 17, 6:57 am, Kai wrote: > > > Thank for your reply, Anthony >

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-20 Thread Anthony Baxter
It shouldn't require a release to fix, it's a backend issue. On Apr 17, 11:57 pm, Kai wrote: > Thank for your reply, Anthony > > Definitely, the name of my app begins with a digit. OK, I will wait > for next > release. > > On Apr 17, 1:08 pm, Anthony  Baxter wro

[google-appengine] Re: Cron Job Fails 301 Error

2009-04-20 Thread Anthony Baxter
Do you get any sort of useful traceback in the error logs for your application? You should hopefully see these just like a normal request error. On Apr 18, 7:09 am, drthink wrote: > I am using Google App Engine with Django.  I have started using theCronjobs > functionality but when the GAE syst

[google-appengine] Re: Cron schedule : one day per month ?

2009-05-10 Thread Anthony Baxter
I plan to add the ability to add day of month. Stay tuned :-) On May 1, 4:44 am, Sylvain wrote: > Thank you for your answer. I will use "every 24 hours". > > I think I will fill a request for that. > > Regards. > > On 30 avr, 20:32, 风笑雪 wrote: > > > And if you want it runs every day, you do thi

[google-appengine] ImportError: No module named googleads

2018-03-11 Thread Mark Anthony Gutierrez
Hello, I have a django project and want to deploy it on Google App Engine(GAE). I followed all this link for the tutorial: https://cloud.google.com/python/django/appengine When I finished deploying, and go to my project URL, it got an error and when I look on the Error Reporting in Google Cloud

[google-appengine] Re: Save/Export GAE logs for more than 30 days in an easily readable way

2019-09-09 Thread &#x27;Anthony (Google Cloud Support)' via Google App Engine
Hi Khaled, To answer your questions 1. Your sink will hold all logs from the day it was initialized. Which means 31 days from now, it will hold the 31st day of the log rather than deleting the log from the 1st day. This also means that any logs prior to the export sink will not be retained and

[google-appengine] Re: Service missing from Stackdriver Error Reporting after change to PHP 7.2

2019-09-09 Thread &#x27;Anthony (Google Cloud Support)' via Google App Engine
Hi Andy, To answer your question. The following line "/project-dir/ " refers to your project name. Although it is not too clear, please look at the following GitHub link here . You'll have to a