Re: [google-appengine] Re: Connecting Google App Engine to Cloud SQL

2017-06-22 Thread Jason Lee
Thank you, That code snippet you gave did not work, but I will wait for a GoLang example. On Thursday, 22 June 2017 14:01:40 UTC-7, joshuamo wrote: > > The tutorial you linked was for the App Engine standard environment, which > is why it isn't working in the Flexible environment. I would lo

Re: [google-appengine] Re: Search limit

2017-06-22 Thread Emlyn
I do this is a slightly more costly way Nick; I generate my new document, read any existing document from the index, compare, only put on a change. I like your memcache idea, I could possibly cache the last written version. On 22 June 2017 at 11:38, Nickolas Daskalou wrote: > That's a nice way

Re: [google-appengine] Re: Connecting Google App Engine to Cloud SQL

2017-06-22 Thread 'Josh Moore' via Google App Engine
The tutorial you linked was for the App Engine standard environment, which is why it isn't working in the Flexible environment. I would look over the App Engine Flexible golang docs for Using CloudSQL , and the App Engine Flexibl

[google-appengine] Re: Passing "--verbosity true" to gcloud through Maven

2017-06-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joshua, In case you adjust your deployment strategy and use gcloud-maven-plugin, in place of the appengine-maven-plugin, the option for --verbose exactly is present there. You can find related details on github . Debug informa

Re: [google-appengine] Re: Connecting Google App Engine to Cloud SQL

2017-06-22 Thread Jason Lee
I *am *using App Engine flexible environment. Does this mean there's no way for me to connect to Google Cloud SQL from App Engine once deployed? On Thursday, 22 June 2017 13:03:22 UTC-7, joshuamo wrote: > > If you take a look at the CloudSQL Postgres documentation >

Re: [google-appengine] Re: Connecting Google App Engine to Cloud SQL

2017-06-22 Thread 'Josh Moore' via Google App Engine
If you take a look at the CloudSQL Postgres documentation , you'll see that App Engine standard is not yet supported. Postgres on CloudSQL is currently a beta product and isn't available for all environments at this time. You can, how

[google-appengine] Re: Connecting Google App Engine to Cloud SQL

2017-06-22 Thread Jason Lee
Tutorial link I am following is: https://cloud.google.com/appengine/docs/standard/go/cloud-sql/#setting-up On Thursday, 22 June 2017 12:25:56 UTC-7, Jason Lee wrote: > > I am trying to follow the tutorial at: > > And I am having the hardest time making my Google App Engine (GoLang) > connect t

[google-appengine] Re: missing "=" after following connecting GAE and Cloud SQL tutorial

2017-06-22 Thread Jason Lee
Hi George, I changed my question, could you please check: https://groups.google.com/forum/#!topic/google-appengine/zgTVS1ARLis Thank you. On Wednesday, 21 June 2017 11:04:47 UTC-7, George (Cloud Platform Support) wrote: > > Hello Jason, > > Where did you replace "mysql" to "progres", exactly

[google-appengine] Connecting Google App Engine to Cloud SQL

2017-06-22 Thread Jason Lee
I am trying to follow the tutorial at: And I am having the hardest time making my Google App Engine (GoLang) connect to the Cloud SQL Postgres database. I am able to connect NOT following the tutorial by manually opening the port from the firewall rules. But I cannot do it this way because it's

[google-appengine] Passing "--verbosity true" to gcloud through Maven

2017-06-22 Thread Joshua Fox
mvn appengine:deploy is failing. We are using com.google.cloud.tools:appengine-maven-plugin We need more information, and we might get that if we can pass the --verbosity=true from Maven to gcloud. The docs don't say how t