[google-appengine] Re: Laravel deployment using Google App Engine: No such file or directory

2017-06-21 Thread Adeel Ahmad
Hi George,

I just tried the command without the -dir part, like this:

*./cloud_sql_proxy -instances=zoho-portal=tcp:3307*

But, I'm still faced with the same issue. Would it be possible for you to 
clone my GitHub repo  and try 
deploying it from your side.

Thanks,
Adeel
On Wednesday, June 21, 2017 at 1:43:51 AM UTC+5, George (Cloud Platform 
Support) wrote:
>
> Hi Adeel, 
>
> At point 2 of your reply above, the way you employ the "-dir=" parameter 
> does not correspond to any possible options, for cloud_sql_proxy. You can 
> compare and gather more relevant detail in the "Example proxy invocations 
> and mysql client connection strings" sub-chapter of the "About the Cloud 
> SQL Proxy" online document 
> . 
>
> To refer to a local directory, you need to have FUSE 
>  (Filesystem in 
> User Space) installed. 
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/0580235c-6ae7-4d21-8622-ba8b1b7f1c16%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-21 Thread NP
Hi,

Thanks for your response.

get_serving_url requires either a blobkey or an image name. I'm currently 
supplying a blob key. Are you saying, I should replace the blobkey with the 
image name?

On Wednesday, June 21, 2017 at 10:13:39 AM UTC-7, George (Cloud Platform 
Support) wrote:
>
> What is the whole get_serving_url line you refer to? 
>
> There is a filename parameter you may use with the get_serving_url 
> command, as documented in the "google.appengine.api.images package" online 
> document 
> 
> . 
>
> You may customize by other means the "save as" dialog on your page, for 
> instance in JavaScript, using the filename information. 
>
> The replies to the "Clear example of using Google App Engine Images 
> get_serving_url()" question 
> 
>  
> in stackoverflow should be useful as background reading. 
>
> Any extra details on your use of the Images API might prove highly 
> relevant.  
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d1df25b0-ddd6-4d6f-8fa3-14f63c6b1629%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Search limit

2017-06-21 Thread Nickolas Daskalou
That's a nice way of working around the rate limits Emlyn.

In your _post_put function you can also compare a hash of the last document
you put in the Search API index for the Datastore entity, and only send to
the Search API if the current document's hash is different.

To make it fast and cost-effective, you can use Memcache to store the hash
of the most recent document sent to the Search API for a particular
Datastore entity.

This method is most useful if your app does a lot of updates to Datastore
entities which would not actually change the Search API document at all
(e.g. when updating Datastore entity properties which are not indexed in
the Search API).

Nick


On 22 June 2017 at 11:42, Emlyn  wrote:

> Thanks George, I read that, that's great. I may have to go for a support
> level in the near future.
>
> For anyone who's interested, I was able to fix my problems with the Search
> API as follows:
>
> My code enqueues a huge amount of tasks very rapidly, which modify
> datastore objects. In the _post_put handlers, these also update search
> indices.
>
> I was having problems that the datastore updates were working, but the
> rate was too high for the search indices; I was getting timeouts, quota
> limitations, bad things :-)
>
> I've changed my _post_put handlers to do the updates to search indices in
> separate tasks, on a queue I've configured just for this. It's rate limited
> to below the maximum rate for the search api (ie: maximum search throughput
> is 15000/minute, or 250/s, so I've set it lower than this).
>
> That's completely fixed the problem. And because I'm not hitting quota
> limits, the real throughput is much higher than it was; I don't see this
> queue hitting the limit and lagging behind the rest of the job.
>
> Now I get to sleep comfortably at night :-) Thanks for the help.
>
>
> On 22 June 2017 at 03:53, 'George (Cloud Platform Support)' via Google App
> Engine  wrote:
>
>> Hi Emlyn,
>>
>> News is not entirely bad: "Note: Although these limits are enforced by
>> the minute, the Cloud Platform Console displays the daily totals for each.
>> Customers with Silver, Gold, or Platinum support can request higher
>> throughput limits by contacting their support representative." This is to
>> be read just below the quotas paragraph we speak about. In short, you may
>> consider asking for a quota increase.
>>
>> Information on how to reduce your app's needs for paid resources, and so
>> keep within quotas, you may consult the "Managing App Resources"
>> documentation page
>> 
>> .
>>
>> --
>> 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 this group, send email to google-appengine@googlegroups.com.
>> Visit this group at https://groups.google.com/group/google-appengine.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/google-appengine/623ea57b-1c0c-4454-a854-5cb5fa84bd8b%
>> 40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
> Emlyn
>
> https://medium.com/the-infinite-machine - A publication about Google App
> Engine
> sutllang.com - My language sUTL
> https://plus.google.com/u/0/100281903174934656260 - Google+
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-appengine/CAMp1VPBy7WjB-Qw8N0mkdR0CEP%
> 2BqEf%2Byz%2BxwKCn2GwT1EfGsuA%40mail.gmail.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAOj3zuCVz3iR9HDYZdAHHF_LygKGa7HwtZZiKe-Swb6mVpL9sA%40mail.gmail.com.
For more options, visit https://groups.goog

Re: [google-appengine] Re: Search limit

2017-06-21 Thread Emlyn
Thanks George, I read that, that's great. I may have to go for a support
level in the near future.

For anyone who's interested, I was able to fix my problems with the Search
API as follows:

My code enqueues a huge amount of tasks very rapidly, which modify
datastore objects. In the _post_put handlers, these also update search
indices.

I was having problems that the datastore updates were working, but the rate
was too high for the search indices; I was getting timeouts, quota
limitations, bad things :-)

I've changed my _post_put handlers to do the updates to search indices in
separate tasks, on a queue I've configured just for this. It's rate limited
to below the maximum rate for the search api (ie: maximum search throughput
is 15000/minute, or 250/s, so I've set it lower than this).

That's completely fixed the problem. And because I'm not hitting quota
limits, the real throughput is much higher than it was; I don't see this
queue hitting the limit and lagging behind the rest of the job.

Now I get to sleep comfortably at night :-) Thanks for the help.


On 22 June 2017 at 03:53, 'George (Cloud Platform Support)' via Google App
Engine  wrote:

> Hi Emlyn,
>
> News is not entirely bad: "Note: Although these limits are enforced by the
> minute, the Cloud Platform Console displays the daily totals for each.
> Customers with Silver, Gold, or Platinum support can request higher
> throughput limits by contacting their support representative." This is to
> be read just below the quotas paragraph we speak about. In short, you may
> consider asking for a quota increase.
>
> Information on how to reduce your app's needs for paid resources, and so
> keep within quotas, you may consult the "Managing App Resources"
> documentation page
> 
> .
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-appengine/623ea57b-1c0c-4454-a854-
> 5cb5fa84bd8b%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Emlyn

https://medium.com/the-infinite-machine - A publication about Google App
Engine
sutllang.com - My language sUTL
https://plus.google.com/u/0/100281903174934656260 - Google+

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAMp1VPBy7WjB-Qw8N0mkdR0CEP%2BqEf%2Byz%2BxwKCn2GwT1EfGsuA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: appcfg.py download_app fails silently

2017-06-21 Thread T Mst
This works for me. I neglected to put pubspec.lock under source control and 
found myself with incompatible dependency(s) after doing a `pub get` in my 
Dart project. My only hope was to download my deployed project. I'm using 
the gcloud toolkit but downloaded appcfg.py spefically for this purpose. It 
took me a few tries to get the version right, as it was simply '1' rather 
than what is listed using an output  of `gcloud app versions list`.

On Saturday, May 20, 2017 at 2:53:11 PM UTC-7, Lewis wrote:
>
>
> I'm trying to take a look at a Google App Engine project started by 
> another developer and deployed to the Google Cloud Platform. I have project 
> owner rights. When running appcfg.py -A [appID] -V  [version] download_app 
> [location] there are no errors, but no files come down. 
>
> 12:00 PM Host: appengine.google.com
> 12:00 PM Fetching file list...
> 12:00 PM Fetching files...
>
> If the appID is invalid, or the version is invalid appfcg.py displays an 
> error, 
>
> 12:00 PM Host: appengine.google.com
> 12:00 PM Fetching file list...
> Error 404: --- begin server output ---
> This application does not exist (project_id=u'invalid'). To create an App 
> Engine application in this project, run "gcloud app create" in your console.
>
> or
>
> 12:00 PM Host: appengine.google.com
> 12:00 PM Fetching file list...
> Error 400: --- begin server output ---
> Major version "123" does not exist.
>
> but when the appID and version are valid it simply downloads nothing. Any 
> suggestions?
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/0a5560e8-b2f5-4f11-8ea6-f88aaf6e8d13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2017-06-21 Thread 'Lorne Kligerman' via Google App Engine
Nothing to report at this point, I'll post more details when ready.



On Wed, Jun 21, 2017 at 11:48 AM, Robert Dyas 
wrote:

> Still waiting here too.
>
> On Wednesday, June 21, 2017 at 2:45:20 PM UTC-4, David Grant wrote:
>>
>> Any update on this?
>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Google App Engine" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/google-appengine/P2PK6g4TteY/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/google-appengine/2405ea07-9462-43d1-b020-
> 108f1e142deb%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CA%2Bzk0pL2e6gtqGgK-R3E874AaD5Ep05hm0pg%2BHJgk1bnaHtmJA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: What is the default limit on Datastore?

2017-06-21 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
'withDefaults()' is just a new FetchOptions(), and FetchOptions() has no 
default 'limit' as seen in the code 
. 

Even in the JavaDocs it explains that 'getLimit()' returns null 

 
if nothing has been set. The only default that is set is the chunk size. In 
the code it shows it being set to '20', but I think this has been since 
increased to ~300 (or ~1000). 

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e65fb4c7-2c37-4235-bca9-05f913514f13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2017-06-21 Thread Robert Dyas
Still waiting here too. 

On Wednesday, June 21, 2017 at 2:45:20 PM UTC-4, David Grant wrote:
>
> Any update on this?
>
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/2405ea07-9462-43d1-b020-108f1e142deb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Connecting from app engine instance to compute engine instance directly

2017-06-21 Thread David Grant
Any update on this?

On Sunday, April 23, 2017 at 2:30:26 PM UTC-7, Lorne Kligerman wrote:
>
> If a direct connection between an App Engine standard app to a GCE VM via 
> an internal IP address is what you're looking for, work is in progress!
> When ready for testing I'll be sure to drop a note to this group.
>
> Cheers,
> Lorne.
> Product Manager - App Engine
>
> On Wednesday, April 19, 2017 at 11:32:26 AM UTC-7, Nicholas (Google Cloud 
> Support) wrote:
>>
>> This thread is a little dated and may not get the attention you expect. 
>>  I'd recommend posting to a new thread and describing exactly the 
>> requirements you seek.  When doing so, please describe the criteria you 
>> need met.
>>
>>- Would GAE being issuing request and GCE, responses?  The other way 
>>around?  Both?
>>- Are requests and responses tightly coupled like HTTP 
>>requests/responses or more independent like tasks in task queues 
>> reflecting 
>>asynchronous requests?
>>- What type of scaling would be employed for the App Engine 
>>component?  Would the Compute Engine instances also be scaled?
>>- What solutions have you tried?  Any of the ones posted above?
>>
>>
>> On Tuesday, April 18, 2017 at 11:32:37 PM UTC-4, Robert Dyas wrote:
>>>
>>> Has there been any progress on this?
>>>
>>> On Thursday, May 7, 2015 at 1:52:39 PM UTC-4, Ian Childress wrote:

 We (our Go dev team) want to connect our app engine apps to our compute 
 engine apps directly using internal IP address. From my understanding 
 through documentation and exhaustive searching, the solution is to use a 
 public IP address. This solution requires whitelisting an entire ip block 
 (Google's ip block for app engine). This both increases security risk as 
 well as charges additional bandwidth. The other solution is to use a 
 messaging service PubSub. This is fine for submitting tasks to be 
 performed 
 by the back end app, but it prevents the app engine from receiving the 
 response from the compute engine. 

 Have I missed the solution somewhere that allows for internal 
 communication between app engine and compute engine? Using a job queue or 
 public IP is not a replacement for an internal socket connection.

>>>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c2150443-b583-4f37-bd45-4fa6cbb07976%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Search limit

2017-06-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Emlyn, 

News is not entirely bad: "Note: Although these limits are enforced by the 
minute, the Cloud Platform Console displays the daily totals for each. 
Customers with Silver, Gold, or Platinum support can request higher 
throughput limits by contacting their support representative." This is to 
be read just below the quotas paragraph we speak about. In short, you may 
consider asking for a quota increase. 

Information on how to reduce your app's needs for paid resources, and so 
keep within quotas, you may consult the "Managing App Resources" 
documentation page 

. 

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/623ea57b-1c0c-4454-a854-5cb5fa84bd8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2017-06-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jason, 

Where did you replace "mysql" to "progres", exactly? 

The tutorial you mention is meant for the standard environment. "Connection 
from an App Engine standard environment application to a PostgreSQL 
instance is not supported.", as explained in the "Connecting from App 
Engine" online document 
. On the 
same page you can find more information on how to connect to your 
PostgreSQL database from the app engine. 

If you want to connect from external applications, "Connection Options for 
External Applications 
" 
provides you with needed information. 


-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6482350d-a7b8-44af-8346-bc184b6af897%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: image downloaded with images.get_serving_url() should default to a pre-defined name

2017-06-21 Thread 'George (Cloud Platform Support)' via Google App Engine
What is the whole get_serving_url line you refer to? 

There is a filename parameter you may use with the get_serving_url command, 
as documented in the "google.appengine.api.images package" online document 

. 

You may customize by other means the "save as" dialog on your page, for 
instance in JavaScript, using the filename information. 

The replies to the "Clear example of using Google App Engine Images 
get_serving_url()" question 

 
in stackoverflow should be useful as background reading. 

Any extra details on your use of the Images API might prove highly 
relevant.  

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/529bb9ec-c176-4a9b-8e5e-da005f68f765%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Go Bookshelf Tutorial OAuth Error

2017-06-21 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello Chris. I tried following the tutorial's instructions and did not 
encounter any issues following the instructions. I was able to reproduce 
the invalid_client error by supplying an incorrect client id or client 
secret.

You say you had errors uploading files even before un-commenting the 
"OAuthConfig" line. The uploading and viewing of files worked properly for 
me without authentication in place.

You might want to double-check that the bucket and client ID you are using 
belong to the same GCP project that you are logged in to on your machine or 
deploying to.

On Tuesday, June 20, 2017 at 11:12:07 PM UTC-4, Chris Lewis wrote:
>
> could not parse book from form: could not upload file: Post 
> https://www.googleapis.com/upload/storage/v1/b/statrecruit-application/o?alt=json&projection=full&uploadType=multipart:
>  oauth2: cannot fetch token: 401 Unauthorized
> Response: {
>   "error" : "invalid_client",
>   "error_description" : "The OAuth client was not found."
> }
>
>
> On Tuesday, June 20, 2017 at 4:31:51 PM UTC-7, Chris Lewis wrote:
>>
>> https://cloud.google.com/go/getting-started/tutorial-app
>>
>> I am attempting to follow this tutorial and have been unable to get the 
>> storage and OAuth2 portions working. I continually receive a 401 
>> Unauthorized response when attempting to upload a file or login.
>>
>> Then, I add my Client ID and Secret and I get a "can't find client id" 
>> error.
>>
>> Any idease?
>>
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/82ef2c80-fa76-419a-860c-8de759201078%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2017-06-21 Thread Jason Lee
Following this tutorial for GoLang:
https://cloud.google.com/appengine/docs/standard/go/cloud-sql/#setting-up

When I try to query the database to see if everything is working properly, 
I get an odd error: Could not query db: missing "=" after 
"postgres:vj0tO7Iaodofu4or@cloudsql(inspired-arena-167005:us-central1:cho-postgresql)/"
 
in connection info string"

The error happens on this following code/query.

rows, err := db.Query("SHOW DATABASES")
if err != nil {
http.Error(w, fmt.Sprintf("Could not query db: %v", err), 500)
return
}


Only thing I changed from the tutorial is changing "mysql" to "postgres".

Thank you in advance for any help.

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e2fbd002-4344-4c3b-b9d6-101e80de9688%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] What is the default limit on Datastore?

2017-06-21 Thread Joshua Fox
If I use *withDefaults()*, what is the *limit *on a Datastore query? I
don't see it in the JavaDocs


This StackOverflow answer  seems to say
that
it used to be 1000 , but was changed. What is it now?

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAD%3DB7cPT%3D6wnJiPdQsUpuvVrqvcsxFXThbrQVoGDD-8X8ebbdg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.