[google-appengine] Re: Google cloudsql issue when update TEXT field

2016-05-12 Thread channing dev
Nick, Thank you very much. 在 2016年5月13日星期五 UTC+8上午12:30:52,Nick (Cloud Platform Support)写道: > > * ALTER TABLE query, not UPDATE query! Anyways, I hope it would be clear > from the context. > > Feel free to update the thread if you find any other useful information > that could help other

[google-appengine] Re: Delete app engine app

2016-05-12 Thread Ashton Holmes
No. I have 4 GCE VMs and a DNS zone on the project. Transferring all the data to another project would be a pain. Not to mention my project ID matches my project name exactly with no numbers. ID/name pairs like those are hard to come by and so even if I did take the time to transfer all my

[google-appengine] Re: Delete app engine app

2016-05-12 Thread Chad Vincent
You mean the "Delete" button in the web console? It's here: https://console.cloud.google.com/iam-admin/projects That should give you a list of all projects with the option to delete the project in its entirety. AppEngine, Cloud Storage, BigQuery, etc. All of it in a check, click, and

Re: [google-appengine] Running additional docker containers alongside my GAE app?

2016-05-12 Thread Stephen Deasey
On Wed, May 11, 2016 at 3:55 AM, ingo wrote: > > But I want to run > publicly hosted Docker images alongside it (e.g. this one). I am looking for > a way to run those multi-Docker instances still within GAE to take advantage > of high level of abstraction. And if possible

[google-appengine] Re: Running additional docker containers alongside my GAE app?

2016-05-12 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Ingo, Yes, installing dependencies on each container will affect deployment time along with disk storage and CPU / RAM to one extent or another, so should be considered carefully. As far as the GAE services in the context of a Flex app, the JVM, python environment, golang libraries etc.

[google-appengine] Re: Google cloudsql issue when update TEXT field

2016-05-12 Thread 'Nick (Cloud Platform Support)' via Google App Engine
* ALTER TABLE query, not UPDATE query! Anyways, I hope it would be clear from the context. Feel free to update the thread if you find any other useful information that could help other users. Cheers! Nick Cloud Platform Community Support On Thursday, May 12, 2016 at 12:27:44 PM UTC-4, Nick

[google-appengine] Re: Google cloudsql issue when update TEXT field

2016-05-12 Thread 'Nick (Cloud Platform Support)' via Google App Engine
I'm glad to hear you were able to run the update query once the fields had been modified. I was worried you'd be unable to shrink the fields. I expect you'll see huge savings of efficiency and storage space by changing CHAR to VARCHAR and generally shrinking the size of various fields. You

Re: [google-appengine] Re: Before starting with GAE

2016-05-12 Thread Jeff Schnitzer
Retrolambda works on the Standard Environment, and gives you the most critical feature of Java8: https://github.com/orfjackal/retrolambda (just be sure to run your CI system on java7 to ensure no unsupported 8-isms creep into production) Jeff On Wed, May 11, 2016 at 12:19 PM, Chad Vincent