[google-appengine] Re: deploy is very slow

2017-02-12 Thread Luis F De Pombo
Hi Nick, I am having the same issue as Adam but I am using a nodejs Flex env. I have the file you point to, what is the best email to get this to you? Thank you. On Monday, February 6, 2017 at 10:40:48 AM UTC-8, Nick (Cloud Platform Support) wrote: > > Just a quick update: > > As well, to avoid

[google-appengine] Re: Task Queue Hang and Do not have a way to purge tasks inside

2016-08-08 Thread Christian F. Howes
FYI - I had the same issue happen to me last friday. I sent feedback from the page and have shared a HAR log with someone on the task queues team. it feels to me like there are problems when the queue size gets to be in the thousands and the execution rate is fast - when my queue got smaller

[google-appengine] Re: Google Frontend inconsistent caching

2016-08-04 Thread Christian F. Howes
While we have not tried this with flexible runtimes, on standard GAE we are using cache-control, and pragma headers. we do not use the vary header. while not documented the GAE support folks confirmed that google's caching proxy will not cache responses with certain values for the vary header

[google-appengine] Re: appengine cloud sql performance issue ,taking too much time to process the request

2016-08-04 Thread Christian F. Howes
What are you doing with "large data"? if you are loading large amounts of data into ram, processing it and then writing it back to the database it will be slower then smaller transactions. There is a maximum read/write throughput and a max CPU speed on your DB and instances. On Wednesday,

Re: [google-appengine] Re: Stack driver logs not working

2016-08-01 Thread Christian F. Howes
see my appengine dashboard and datastore. I've often had issues with it switching accounts on me as well, but this appears to be something else as far as I can tell D On Monday, August 1, 2016 at 3:23:35 PM UTC-7, Christian F. Howes wrote: quintuple check that you have the right project selected

[google-appengine] Re: Stack driver logs not working

2016-08-01 Thread Christian F. Howes
quintuple check that you have the right project selected in the top right (blue) bar of the page. sometimes the auth mechanisms pick the wrong google account for me and then all chaos breaks loose. cfh On Sunday, July 31, 2016 at 3:24:46 PM UTC-7, Daniel wrote: > > I haven't inspected my logs

[google-appengine] Re: Unable to create directory wp-content/uploads/2016/07

2016-08-01 Thread Christian F. Howes
you need to update your wordpress to write data to a GCS bucket. I think https://wordpress.org/plugins/google-app-engine/ is the plugin we have used for that. good luck! On Friday, July 29, 2016 at 1:05:26 PM UTC-7, B Modela wrote: > > Unable to create directory wp-content/uploads/2016/07. Is

[google-appengine] Re: Task size limit on Flexible env

2016-08-01 Thread Christian F. Howes
correct, the restrictions of the environment are lifted, but the restrictions of the associated services are not. So the task queue service still has a payload size limit, as that is an off-instance service. (similarly the max size of an entity in NDB is still the same). i can't find the

Re: [google-appengine] Re: GAE Latency & Instance issues

2016-07-29 Thread Christian F. Howes
looks like the pending MS logs mystery was solved: https://groups.google.com/forum/#!topic/google-appengine/8mHxjsSCOYc so if you don't see that in your logs you can rule that out as a problem. On Friday, July 29, 2016 at 10:04:47 AM UTC-7, Christian F. Howes wrote: > > A helpful stat

Re: [google-appengine] Re: GAE Latency & Instance issues

2016-07-29 Thread Christian F. Howes
A helpful stat would be the "pending latency" (the amount of time that the request waited for an available instance to run on). This was part of the logs in the old log viewer and is missing is the new log viewer. i believe someone has filed an issue requesting that it be re-added. if any of

[google-appengine] Re: show failed to load when opening task queues in gae webconsole

2016-07-18 Thread Christian F. Howes
we see this problem intermittently as well. usually a refresh or two it and resolves, but it sounds like you are more stuck then that. On Friday, July 15, 2016 at 9:38:09 PM UTC-7, Mobilewalla Inc. wrote: > > Hi > > I cannot see my task queues on gae web console. > I is showing failed to load.

Re: [google-appengine] Re: Usability of new logs viewer

2016-07-08 Thread Christian F. Howes
Nick Cloud Platform Community Support On Thursday, July 7, 2016 at 3:13:40 PM UTC-4, Christian F. Howes wrote: I too am having problems with the new log viewer, and have a p1 support ticket open with Google. I have the same problems you list plus: - too many errors trying to load the logs

[google-appengine] Re: Usability of new logs viewer

2016-07-07 Thread Christian F. Howes
I too am having problems with the new log viewer, and have a p1 support ticket open with Google. I have the same problems you list plus: - too many errors trying to load the logs pages - too slow to load the page - truncated user-agent string (this is a blocker for our use of the logs

[google-appengine] Re: GAE Latency & Instance issues

2016-07-06 Thread Christian F. Howes
2 thoughts: - remember that when servicing multiple simultaneous requests the CPU is switching between them. I bet the pauses are (in part) due to waiting for a turn on the CPU - your request got "paused" while the memcache call was made, and then had to wait for CPU once the memcache

[google-appengine] Re: ImportError: No module named google.appengine.api

2016-06-15 Thread Christian F. Howes
i am not familiar with the tools you mention, are the GAE tools? are you running them in the GAE environment? if you are trying to invoke tools from the command line, please be sure that your python path includes the google tooling, you might want to setup a virtualenv for this. when i

[google-appengine] Re: project with python and node services: inconsistent data

2016-06-08 Thread Christian F. Howes
Does your node service use NDB or DB? if it is using NDB then NDB takes care of flushing the cache for you when you update an object, but you have to `get_by_key` in order to get the latest copy. On Wednesday, June 8, 2016 at 1:33:15 AM UTC-7, Faried Nawaz wrote: > > Hello, > > I have a Python

[google-appengine] Re: cgloud app preview deploy process takes ~8 minutes, is this normal?

2016-06-07 Thread Christian F. Howes
based on my experience with managed vms (and now flexible runtimes) this is normal. my machines are python based with the app engine compatibility layer. the time i think is spent making a new docker image. i too would like for it to be faster. cfh On Tuesday, June 7, 2016 at 6:17:55 AM

[google-appengine] Re: Fire and forget URL

2016-05-24 Thread Christian F. Howes
note that if you use the urlfetch async (which was going to be my suggestion as well) that you do need to wait at the end of your request handler for the future or the request will be killed if it hasn't completed yet. On Tuesday, May 24, 2016 at 12:08:21 PM UTC-7, Chad Vincent wrote: > >

Re: [google-appengine] Re: Using Pull Task Queue REST API outside App Engine?

2016-05-16 Thread Christian F. Howes
. Because even if I define the queue in my queue.yaml (CE) it is not created. Never. Maybe someone can confirm this. On Monday, May 16, 2016 at 3:40:47 PM UTC-3, Christian F. Howes wrote: Hi, you ask: "*now I'm wondering if the queue must be created first before start using it"* I am p

[google-appengine] Re: How to avoid ,"Google Cloud Platform & APIs billing account suspension" ?

2016-05-16 Thread Christian F. Howes
Hi Zia, Maybe you need to use different email addresses to create the accounts? I found recently that i could download a CSV of my detailed billing data at the end of the month (I am on invoiced monthly billing), and from there i can filter out costs by project. see

[google-appengine] Re: Problem with russian file names and names with blank spaces on google cloud storage

2016-05-16 Thread Christian F. Howes
What is the response from the REST API when you attempt to delete? have you tried the gcloud command line tool? does it fail in the same way? my only thought is encoding or escaping the special characters is the problem. I am curious about the answer! good luck, cfh On Friday, May 13, 2016

[google-appengine] Re: Using Pull Task Queue REST API outside App Engine?

2016-05-16 Thread Christian F. Howes
Hi, you ask: "*now I'm wondering if the queue must be created first before start using it"* I am pretty sure that even on GAE you must update queue.yaml and deploy the new queue before GAE can use it, so I'd assume that is the same for the REST API. I don't think that you can create queues

Re: [google-appengine] Re: Unwelcome change: Paginating the task queue list

2016-05-02 Thread Christian F. Howes
great thanks! I never know what the release cycles are for the console. Christian On 4/29/16 16:09, 'Kim Lewandowski' via Google App Engine wrote: Hi Christian, I can say with pretty high confidence this fix should be live by next Thursday (May 5, 2016). On Thursday, April 28, 2016 at

[google-appengine] Re: Unwelcome change: Paginating the task queue list

2016-04-28 Thread Christian F. Howes
Kim, what's the release cycle for the console? is the next release or 2 measured in days, weeks, or months? this change really slows down our workflow and increases our costs to manage the platform. it's quite sad that we keep eroding one of the biggest features of GAE - simple management,

[google-appengine] Re: Datastore Admin stopped working

2016-04-27 Thread Christian F. Howes
Adam, since this is a required version for administering our applications, can Google put in safeties to prevent it from being deleted? It's pretty scary that it can accidently be deleted and not be re-created. thanks, christian -- You received this message because you are subscribed to

[google-appengine] Re: image.ServingURL very slow (~200ms)

2016-04-23 Thread Christian F. Howes
i haven't measured the time it takes for the transformation recently, but note that the serving URL does not change, so i only generate it when a new blob is uploaded and store the URL on the object in my datastore so that it takes 0 time to generate in the future. On Saturday, April 23, 2016

[google-appengine] Re: Does Datastore (or its backups) include multiple versions of an entity?

2016-04-11 Thread Christian F. Howes
it sounds like you have some write transactions in P1 that never actually committed. those then got backed up and restored to the second project. is that possible? if so then i'm sure you next question is how to detect the missed writes.to which i don't have a great answer. :( cfh On

[google-appengine] Re: I'm a Devops Engineer - I must wrestle GAE to the ground - Hints and Tips Please

2016-04-04 Thread Christian F. Howes
I have not deployed java, but using the technique that Nick mentions below to use appcfg on "war folders" makes sense. I use appcfg for python deployments, and my team and i have scripted the crap out of it! if your dev team can deliver you the compiled java code you should be able to get

[google-appengine] Re: Tardy? Porting to new platform version?

2016-03-29 Thread Christian F. Howes
note that last week google changed console.developers.google.com to redirect to https://console.developers.google.com/apis/library which is not what i am expecting. you probably want to verify that https://console.cloud.google.com allows you to load your project. cfh On Tuesday, March 29,

[google-appengine] Re: Google App Engine Cron Jon failing with following error

2016-03-14 Thread Christian F. Howes
yes. your custom libraries must not be quite right on the GAE path. i recommend setting up a virtualenv for your local machine that does not have any system packages that GAE does not have, and that will help you make sure your included library paths are correct. On Monday, March 14, 2016 at

[google-appengine] Re: memcache problems with objects over ~3.5k on node/appengine

2016-03-11 Thread Christian F. Howes
do you have any logging from the GAE side of things? I have ran into issues in the past with things not being pickleable by the GAE memcache adapter. perhaps something about your data is not pickleable? On Friday, March 11, 2016 at 7:50:59 AM UTC-8, John Pettitt wrote: > > > > I have an app

[google-appengine] Re: New Log Viewer - Unusable

2016-03-10 Thread Christian F. Howes
Rajesh, I'd love to know what the link is to the issue you file in the Public Issue tracker as i would like to star it! I have the same problems and still use the old log viewer because of them. thanks, christian On Thursday, March 10, 2016 at 4:01:27 PM UTC-8, Nick (Cloud Platform

Re: [google-appengine] New Cloud Console

2016-03-08 Thread Christian F. Howes
Or rather, the App Engine parts I use. Another example: >> "Could not load instances information. [Dismiss link]" in the App Engine -> >> Versions page constantly pops up when I'm trying to switch between modules. >> Constantly. >> >> Also, this guy: >> >&g

Re: [google-appengine] New Cloud Console

2016-03-08 Thread Christian F. Howes
ree to reply to me > in this thread. > > Best wishes, > > Nick > > On Thursday, February 25, 2016 at 1:09:43 PM UTC-5, Christian F. Howes > wrote: >> >> Thanks Lorne. >> >> Will we also be better at triaging and updating the Public Issue >>

[google-appengine] Re: App returning 500 for past hours

2016-03-03 Thread Christian F. Howes
looks fine here: https://status.cloud.google.com/ On Wednesday, March 2, 2016 at 7:30:48 PM UTC-8, Bharath Kumaar wrote: > > Hello all, our app "live-adaptivecourse" is returning 500 internal server > error almost 6 hours. No request is getting processed. Is app engine > elevated? > -- You

Re: [google-appengine] New Cloud Console

2016-03-02 Thread Christian F. Howes
you elaborate on what else would limit your ability to manage your app from the Cloud Console? On Thursday, February 25, 2016 at 10:09:43 AM UTC-8, Christian F. Howes wrote: Thanks Lorne. Will we also be better at triaging and updating the Public Issue Tracker? Paid support told me today

[google-appengine] Re: Images served very slowly this week.

2016-03-02 Thread Christian F. Howes
Any chance that you changed the caching rules in your app.yaml file for your static files? i suspect that can have an effect on load times. On Tuesday, March 1, 2016 at 9:00:10 PM UTC-8, Jay Kyburz wrote: > > Hey all, > > It might be my imagination but I think static resources like images are

[google-appengine] Re: How do I view logs by thread?

2016-02-28 Thread Christian F. Howes
Nicholas, What i think the original poster is trying to say is that if I have a long running request (thread on a backend instance) that the log messages get interleaved in the new logs viewer. This makes it nearly impossible to figure out what the original request was that triggered a

Re: [google-appengine] New Cloud Console

2016-02-25 Thread Christian F. Howes
, 25 February 2016 01:58:58 UTC, Christian F. Howes wrote: Hi Lorne, Is there any chance that you can share the console roadmap with us? given that we are getting the turn-down threats again, and the new console is still missing many features it would be helpful to know which ones are known

Re: [google-appengine] New Cloud Console

2016-02-24 Thread Christian F. Howes
Hi Lorne, Is there any chance that you can share the console roadmap with us? given that we are getting the turn-down threats again, and the new console is still missing many features it would be helpful to know which ones are known to the team working on the console and which need new

[google-appengine] Re: Instance stopped automatically?

2016-02-19 Thread Christian F. Howes
interesting. i think even a manually scaled instance may be *rebooted* from time to time, but the 6 hour downtime seems like something else went wrong. i've only had problems with manually scaled instances when i wrote code to scale instances that was buggy. are you use some code to scale

[google-appengine] Re: Tracking Down Read Ops Spikes in the new Dashboard

2016-02-04 Thread Christian F. Howes
i don't know where to find the data you seek in the new admin but to analyze particular requests have you tried appstats? https://cloud.google.com/appengine/docs/python/tools/appstats?hl=en (i use python, but i believe this is available for all supported language platforms). note that in

[google-appengine] Re: Planning to use appengine/datastore/cloud storage. Have few questions

2016-01-31 Thread Christian F. Howes
a couple of thoughts... 1. i don't know for sure about datastore connecting to GCE, but the beta managed VMs project allows you to run a GCE instance with full connection to the app engine datastore (and other services). We have used it well in python for types of processing that we couldn't

[google-appengine] Re: Best dashboard to see real time google app engine status: datastore issue

2016-01-21 Thread Christian F. Howes
i don't know of a better place to check on system status. most of the time when i have these sorts of errors it is because i had a spike in traffic, or newer code is finally hit by our users. though sometimes there are slowdowns in the overall system. can you check on request load to see if

[google-appengine] Re: Taskqueue Failing with Error Code 123 Before 10 Minute deadline

2016-01-20 Thread Christian F. Howes
is there any chance that deferred tasks are somehow treated differently then regularly queued tasks? in theory i would think they are just tasks with a special handler, but could that be why you are hitting an incorrect deadline? On Wednesday, January 20, 2016 at 7:27:01 AM UTC-8, Nicholas

[google-appengine] Re: Image upload problem with GAE SDK running wordpress

2016-01-20 Thread Christian F. Howes
hmmm, i don't have experience with wordpress and blobstore, we are using wordpress and Google Cloud Storage and it works just fine with the (i think it is google provided) wordpress GCS plugin. would switching to that be an option for you? On Wednesday, January 20, 2016 at 9:30:55 AM UTC-8,

[google-appengine] Re: unexpected image API failure

2016-01-18 Thread Christian F. Howes
i would start by comparing my permissions on the 2 buckets. perhaps there is a service account or something that needs permission on the bucket that is not working? On Monday, January 18, 2016 at 4:05:57 AM UTC-8, John Smith wrote: > > I have created a new bucket and everything seems to work.

[google-appengine] Re: Change to Authorized Email Senders for App Engine Email API

2016-01-15 Thread Christian F. Howes
Thanks for the update! I have some comments/questions: - it took me 2 different browsers and about 4 minutes to find the edit button on that page. also really concerning to me that when in edit mode i might be editing other application settings and email addresses. - i was going to remove

[google-appengine] Re: Logs viewer broken for one of my projects

2016-01-15 Thread Christian F. Howes
as a potential work-around next time, remember that the old logs viewer is still active while these final issues in the new one get worked out: https://appengine.google.com/logs On Thursday, January 14, 2016 at 2:19:03 PM UTC-8, Jay wrote: > > I deployed a new version and that seemed to

[google-appengine] Re: Exceeded Soft Private memory usage of 128MB

2016-01-15 Thread Christian F. Howes
FYI, if you use NDB there is a memory leak: https://code.google.com/p/googleappengine/issues/detail?id=9610 the google folks are having trouble pinning it down, but it's there. i just let my instances restart as they run out of memory as i have not been able to find my other memory leaks

[google-appengine] Re: How to identify unused data store index?

2016-01-14 Thread Christian F. Howes
I have not found a great way to do that either. we have a mirrored test server setup that we sometimes delete indexes from and see if anything crashes. not a great solution thoughbut aside from exercising all the queries that your code runs there is nothing that can detect if an index is

[google-appengine] Re: managed vms deployment errors

2016-01-14 Thread Christian F. Howes
Hi John, I really don't know about setting up a new project, i haven't done it in a while, but can you try an experiment and rename your module? GAE used to have something that was controlled from backend.yaml or backends.yaml (can't remember which) and perhaps that is still a sort of

[google-appengine] Re: Local dev server: 'Task task1 failed to execute' due to ' The resource could not be found.'

2016-01-08 Thread Christian F. Howes
are you using a fully qualified URL or a relative URL? i use a relative URL and let the taskqueue handler figure it out. note that you can use secure with URLs accessed by the task queue. On Thursday, January 7, 2016 at 6:12:08 PM UTC-8, A. Kong wrote: > > I did more digging and I realised the

[google-appengine] Re: Updating the dispatch file do not work

2016-01-07 Thread Christian F. Howes
onsole? > > > <https://lh3.googleusercontent.com/-_djzcwM-gSc/Vo483Rmmd-I/BXo/_mnmLp2TfAw/s1600/Capture.PNG> > > > On Wednesday, January 6, 2016 at 11:42:54 PM UTC-2, Christian F. Howes > wrote: >> >> check your dispatch rules in the console ju

[google-appengine] Re: Updating the dispatch file do not work

2016-01-06 Thread Christian F. Howes
check your dispatch rules in the console just to triple check that they are uploaded. also check the logs on all your modules to see if you can find where the request did get routed and that might help you debug. cfh On Wednesday, January 6, 2016 at 9:45:51 AM UTC-8, Renato Forti wrote: > >

[google-appengine] Re: Trouble in understanding cost for Projection Query

2015-12-18 Thread Christian F. Howes
i suspect the docs meant to say "1 Read Operation per row" i don't know how you could ever get to less then 1 read operation per row. On Thursday, December 17, 2015 at 5:53:07 PM UTC-8, NAyAN Jain wrote: > > I am trying to reduce the datastore cost by using Projection. I have read > that a

Re: [google-appengine] Contention happens using Task Queue

2015-12-16 Thread Christian F. Howes
is the object part of an entity group? there is a limit on the number of writes to an entity group (with or without transactions) On Tuesday, December 15, 2015 at 12:02:23 PM UTC-8, Yun Li wrote: > > And there is NO transaction at all. We don't use transaction. But I am not > sure if objectify

[google-appengine] Re: Completely removing an application

2015-12-14 Thread Christian F. Howes
I'm confused. you can indeed start over with your GAE deployments. each deploy replaces what is there, and even if the default version of the default module can't be deleted it doesn't cost you anything if nothing accesses it. just deploy new code and you are good to go. See notes on

[google-appengine] Re: Backing Up Datastore frequency

2015-12-12 Thread Christian F. Howes
i'll share some things based on my interpretation.happy to be educated if i get any of this wrong. :) 1. to my knowledge in 6 years i've never lost data. there have been outages and slowdowns, but i can't recall a single bit of data loss. Remember that BigTable (well, i think it's been

[google-appengine] Re: Completely removing an application

2015-12-12 Thread Christian F. Howes
mark, since the move to console.developers.google.com i have not deleted an app engine module fully. but at appengine.google.com you can delete versions of a an app engine module. once all non-default versions are deleted it should let you delete the default version (at least it did the last

[google-appengine] Re: New Google App Engine Console - Enitity number problems

2015-12-11 Thread Christian F. Howes
where are you getting the total numbers from? there is a place that i know is an estimated number of entities that is updated by google on a best effort basis. aside from paging through all the rows in the datastore, i don't know of any place in the console where the entity counts are

[google-appengine] Re: Do background threads prevent instances created with basic scaling from getting shut down?

2015-12-09 Thread Christian F. Howes
interesting question - where i have used background threads i have done so on manually scaling instances. on our manually scaling instances we have successfully used the modules API https://cloud.google.com/appengine/docs/python/refdocs/google.appengine.api.modules.modules to control startup

[google-appengine] Re: Routing with dispatch.yaml not working from within app

2015-12-05 Thread Christian F. Howes
I'll agree that i have seen similar issues and now as a matter of habit always specify my intended target when queuing tasks. It would be great to update the documentation to make that more obvious. :) cfh On Friday, December 4, 2015 at 1:53:52 PM UTC-8, Adam wrote: > > You can try using the

[google-appengine] Re: Loading data into automatic scaled instance memory

2015-11-10 Thread Christian F. Howes
can you slice up your data into 1mb chunks that you can load into the app engine memcache? we do that a lot with our data and use expiration times to evict keys and trigger re-loads quite a lot in our system. cfh On Thursday, November 5, 2015 at 4:42:49 AM UTC-8, John Smith wrote: > > Each

[google-appengine] Re: Anyway create a system log of admins who have signed onto the app engine console ?

2015-11-10 Thread Christian F. Howes
Yun, do you know about the admin logs? https://appengine.google.com/adminlogs?_id=s~ in the old GAE console you can find a link in the left side bar to the admin logs. I don't know if that is exactly the information that you are looking for, but it might be some of it. Christian On Monday,

Re: [google-appengine] Re: Stop Backend from new Admin Console

2015-10-20 Thread Christian F. Howes
re-activate it)? Maybe i need to rethink my versioning and deployment processes a bit... i will start another specific thread for this if i need advice (I bet i will :D) El martes, 20 de octubre de 2015, 1:35:10 (UTC+2), Christian F. Howes escribió: note that i was reminded by google support

[google-appengine] Re: Stop Backend from new Admin Console

2015-10-19 Thread Christian F. Howes
note that i was reminded by google support recently that backends are a deprecated feature, so i bet managing them in the new console won't ever come. :( the modules with manual scaling ("B1" etc. instance classes) work great, and we have found them much easier to manage (the logs are

Re: [google-appengine] Re: App Engine admin console redirects to Developers Console

2015-10-08 Thread Christian F. Howes
Deepak, Just hitting the logs console via https://console.developers.google.com/project//logs often hangs and never loads. I have been frequently having to force refresh the page several times before the logs load. then any query also takes a long time to load. thanks for the help!

Re: [google-appengine] Re: App Engine admin console redirects to Developers Console

2015-10-08 Thread Christian F. Howes
:12 PM, Christian F. Howes < christian.ho...@starmakerinteractive.com> wrote: Deepak, Just hitting the logs console via https://console.developers.google.com/project//logs often hangs and never loads. I have been frequently having to force refresh the page several times before the log

Re: [google-appengine] Re: App Engine admin console redirects to Developers Console

2015-10-07 Thread Christian F. Howes
I'll add that my team really misses the old console. A major upside to GAE was ease and speed of administration to allow me to have no dev ops on my team, and this new console is so much slower and less efficient that it will have a major impact on our ability to quickly diagnose things and

Re: [google-appengine] Re: Missing custom domain

2015-10-02 Thread Christian F. Howes
My case was only for my test serversi *think* that the domain routing might have been OK, we noticed it when coming back to test something under https which was not working until we re-verified and re-connected the SSL certs. cfh On 10/2/15 08:32, Richard Cheesmar wrote: Christian, did

[google-appengine] Re: Missing custom domain

2015-10-01 Thread Christian F. Howes
also note that just yesterday i noticed the same problem - turns out when my custom domains were mapped from google apps to the cloud console, only my primary domain made it. i just had to use the console to add/verify the domain and then my settings mostly migrated. i did have to re-attach

Re: [google-appengine] Final release of GAE Managed VMs?

2015-09-28 Thread Christian F. Howes
For what it's worth, I have been using Managed VM's in a production application for several months now. They usually are pretty good, but we just had a rough patch the past 2 weeks as Google is working on improvements to the platform. I'm currently considering going to good 'ol GCE instances

[google-appengine] Re: Sending email to a Google Group in a Google Apps for Business domain

2015-09-21 Thread Christian F. Howes
does the sender email address have at least "viewer" permissions in the google cloud console project? i have been bitten by that a few times christian On Monday, September 21, 2015 at 9:10:56 AM UTC-7, Romuald Cari wrote: > > Hi, > > I've been following this document about how to send

[google-appengine] Re: Old versions of Managed VMs

2015-09-16 Thread Christian F. Howes
Hi Jeff, >From what i can see managed VMs behave much like app engine modules that use backend instance class and manual scaling - which means they stay live when you deploy a new version, and even after setting default. I'm still using the "old" app engine console, and when i delete an old

[google-appengine] Re: Understanding the value proposition of App Engine for data processing

2015-08-11 Thread Christian F. Howes
I've found map reduce to be painful, but i don't do tons of large-scale data processing. i do run a mobile application API on app engine and for that app engine is simply amazing! with a carefully designed schema and using the limits of app engine to my advantage we get great performance

[google-appengine] Re: Wrong data storage in GAE NDB

2015-07-10 Thread Christian F. Howes
depending on how many writes you expect per second, transactions might be sufficient to solve the problem. they are write rate limited, so you may still need sharded counters or some other way to batch writes as suggested by Ryan. On Thursday, July 9, 2015 at 4:33:42 AM UTC-7, Ankur Jatt

[google-appengine] Re: Shutdown module polling the task queue

2015-06-05 Thread Christian F. Howes
I use backend instance class for this with manual scaling: instance_class: B1 manual_scaling: instances: 1 and then in the console i click the stop button next to my version. It will stay stopped until you click start again or re-deploy. for a more dynamic version of that i use push queues,

Re: [google-appengine] Google Apps No Longer Free

2015-01-22 Thread André Garcia F . Pinto
I agree with Philip! For someone who has lots of users/projects to manage in Engine, it just makes no more sense. My personal problem was way simpler than that. I just wanted an e-mail host for my domain but I liked very much the interface by google of managing domain, my own (and oly) user along

Re: [google-appengine] Re: Google Apps No Longer Free

2015-01-21 Thread André Garcia F . Pinto
that still be free? Thanks André *André Garcia F. Pinto* *Whatsapp:* +55 11 9 8272-2012 *Skype:* agfp86 *E-mail:* agfpi...@gmail.com 2015-01-21 5:24 GMT-02:00 Vinny P vinny...@gmail.com: On Wed, Jan 14, 2015 at 7:47 AM, André Pinto agfpi...@gmail.com wrote: Is it still able to get 1 user per account

[google-appengine] BadStatusLine when run dev_appserver

2014-03-12 Thread Amaranth F
)))] start_response(status, response_headers) return [response_body] then I ran python dev_appserver.py proj/test succeeded. but I got a BadStatusLine exception when I goto http://localhost:8080. Did anyone know how to solve this? BadStatusLine: '' Traceback (most recent call last): File F:\Program

[google-appengine] gae-python secure connection problem with ios since 07-04-2012

2012-04-09 Thread f 1
We have an problem with secure connection from iPhone and iPad application since 07-04-2012. Three application platforms( iphone, android and blackberry ) use the same web services. All of them work properly but last friday all ios applications secure connections failed. And users can not log in

[google-appengine] Re: App serving HTTP 500 out of nowhere

2011-10-03 Thread Bernd F
Just want to let you know that the app, including the new memcache code, survived the first night. On 3 Okt., 02:31, Stephen Johnson onepagewo...@gmail.com wrote: Not sure it will help any but hopefully you never know. On Sun, Oct 2, 2011 at 3:16 PM, Bernd F bernd.fi...@gmail.com wrote

[google-appengine] Re: App serving HTTP 500 out of nowhere

2011-10-02 Thread Bernd F
Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Tue, Sep 27, 2011 at 4:39 AM, Bernd F bernd.fi...@gmail.com wrote: Tonight it happened again, but after ~1 hour the app recovered on its own. There must be something wrong with app engine. On 20 Sep., 00:08, Bernd

[google-appengine] Re: App serving HTTP 500 out of nowhere

2011-10-02 Thread Bernd F
Thank you for your input Jay, at least there is something I can cling to. Could you be a little bit more specific about this bad value. What could that be? Or better said: Is that anything I can control? Btw: After I set the Max Idle value to Automatic a few days ago it happened again (earlier

[google-appengine] Re: App serving HTTP 500 out of nowhere

2011-10-02 Thread Bernd F
On Sun, Oct 2, 2011 at 1:58 PM, Bernd F bernd.fi...@gmail.com wrote: Thank you for your input Jay, at least there is something I can cling to. Could you be a little bit more specific about this bad value. What could that be? Or better said: Is that anything I can control? Btw: After I set

[google-appengine] Re: App serving HTTP 500 out of nowhere

2011-09-27 Thread Bernd F
Tonight it happened again, but after ~1 hour the app recovered on its own. There must be something wrong with app engine. On 20 Sep., 00:08, Bernd Final bernd.fi...@gmail.com wrote: I've had this issue for 5 or 6 times already. My app is running for a long time and I've had no problems so

[appengine-java] Local Datastore not working

2011-04-22 Thread Josh F.
All I did was delete my local_db.bin file and then clean the project in eclipse. Now I can't get my local Datastore to work...this happens on a jsp file that works perfectly fine once deployed. The file was working fine until I deleted local_db.bin and then it started throwing this error: HTTP

[appengine-java] Re: Local Datastore not working

2011-04-22 Thread Josh F.
This is really frustrating because I have to deploy everytime I want to see a minor change. Someone please help, no matter what I do I cannot get my local datastore back On Apr 22, 10:56 am, Josh F. jef3...@gmail.com wrote: All I did was delete my local_db.bin file and then clean the project

[google-appengine] Development Server Datastore issue

2011-04-21 Thread Josh F.
All I did was delete my local_db.bin file and then clean the project in eclipse. Now I can't get my Datastore to work...this happens on a jsp file that works perfectly fine once deployed. The file was working fine until I deleted local_db.bin and then it started throwing this error: HTTP ERROR

[appengine-java] Timeout when trying to upload to Blobstore (files 5k)

2011-04-20 Thread Josh F.
I'm trying to upload to the blobstore by programattically creating the POST request using the following class: MultiPartFormOutputStreamhttp://svn.apache.org/repos/asf/wicket/branches/wicket-1.2.x/wicket-sandbox/src/jonathan/java/wicket/util/upload/MultiPartFormOutputStream.java

[appengine-java] trying to import FileServiceFactory

2011-04-20 Thread Josh F.
I'm trying to do something like the code example for Writing file to Blobstore, however I can't seem to import the FileServiceFactory class. http://code.google.com/appengine/docs/java/blobstore/overview.html#Writing_Files_to_the_Blobstore The API documentation says it's under

[appengine-java] Simulating POST Request to BLOBSTORE

2011-04-19 Thread Josh F.
Hello, I'm really at loss trying to track down the source of this exception: Apr 19, 2011 11:53:47 AM com.google.apphosting.utils.jetty.JettyLogger warn WARNING: /_ah/login java.lang.NullPointerException at

[appengine-java] Re: Simulating POST Request to BLOBSTORE

2011-04-19 Thread Josh F.
to get the authentication cookie from the http request, then passed it along to the final Upload servlet: urlConn.setRequestProperty(Cookie, name + = + value); It worked like a charm!! On Apr 19, 12:03 pm, Josh F. jef3...@gmail.com wrote: Hello, I'm really at loss trying to track

Re: [google-appengine] Helloworld Tutorial - Segmentation Fault

2011-02-18 Thread Will F
I examined the verbose output and noted the bottommost line was import _hashlib # dynamically loaded from /usr/local/lib/python2.5/lib-dynload/_hashlib.so So I ran a couple more tests, and when I ran Python 2.5 interactively and tried to import the _hashlib module, it worked, there were no

[google-appengine] Helloworld Tutorial - Segmentation Fault

2011-02-17 Thread Will F
I am just starting to use google app engine and have just started running the tutorial. When I do this: $ python2.5 google_appengine/dev_appserver.py helloworld/ it says 'Segmentation Fault'. I am running Ubuntu 10.10. I installed Python 2.5 from the site with help from this site:

Re: [google-appengine] Helloworld Tutorial - Segmentation Fault

2011-02-17 Thread Will F
So I am able to run Python 2.5 interactively. It is only when I run dev_appserver.py that I get a seg fault. I did more tests and even when I just run: $ ./google_appengine/dev_appserver.py it gives me a seg fault. I don't know if this helps, but I thought it might. -- You received this

Re: [google-appengine] Helloworld Tutorial - Segmentation Fault

2011-02-17 Thread Will F
So I did as you suggested, I ran it with the verbose output: # installing zipimport hook import zipimport # builtin # installed zipimport hook # /usr/local/lib/python2.5/site.pyc matches /usr/local/lib/python2.5/site.py import site # precompiled from /usr/local/lib/python2.5/site.pyc #

[appengine-java] Unable to update

2010-09-02 Thread f...@ncky
Hello, I try do deploy with eclipse and i have that message: Unable to update: java.net.ConnectException: Connection timed out: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(Unknown Source) at

[google-appengine] gae app cannot be displayed in my account

2010-08-02 Thread f...@wqfw.de
I used my google apps account(e.g. a...@wqfw.de, means custom domian, doesn't '@gmail.com') to create a new gae, and that has successed. But, I opened https://appengine.google.com again. The browser still switch to https://appengine.google.com/start. I created another gae again(in Create an

  1   2   >