[google-appengine] Re: Does gae support boto3?

2019-10-10 Thread Ray Wong
Can it be fixed in GAE standard environment?

在 2019年9月24日星期二 UTC+8下午11:09:02,George (Cloud Platform Support)写道:
>
> This sub-process is now supported in App Engine's production environment 
> for Python 2.7. 
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c3106752-1b11-4ecd-a3be-4d2da7347041%40googlegroups.com.


[google-appengine] Re: Does gae support boto3?

2019-10-10 Thread 'George (Cloud Platform Support)' via Google App Engine
You are right: supported in GAE runtime, so after your app is deployed, not 
in local development environment. 

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c15bbfe6-c5b5-4eee-a065-0fae14e017b9%40googlegroups.com.


[google-appengine] dates in app engine java

2019-10-10 Thread Joan Torres


When I try to order a query in app engine java, by date, I find that it 
does not order the query correctly.

This is the case I have:

three records the first one has the date like this 10/09/2019 (09:21:00) 

the second like this 10/09/2019 (12:20:12) and 

the third one is like this 10/09/2019 (13:28:00)


but the order given by app engine is the opposite

first 10/09/2019 (12:20:12) 

second 10/09/2019 (09:21:00) 

third 10/09/2019 (13:28:00)


When the correct way to do the query is:


First 10/09/2019 (09:21:00) 

second 10/09/2019 (12:20:12) 

third 10/09/2019 (13:28:00)

I have tried in several ways but I can't find a solution, I appreciate your 
help to improve this process.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/54f1b9a3-896e-423d-9c9c-28c3a39bfe46%40googlegroups.com.


[google-appengine] Re: AppEngie OUTAGE

2019-10-10 Thread Doug Stoddart
NICE

it took them 8 hours to approve my posts about the incident, which lasted 3 
hours.
thanks Google.  Really helpful.

On Tuesday, October 8, 2019 at 4:47:42 PM UTC+2, Doug Stoddart wrote:
>
> yes, same here for nearly 1hr
>
> On Tuesday, October 8, 2019 at 9:48:59 AM UTC+2, Paolo Conte wrote:
>>
>> Hello,
>> suddently most requests return error 500, log shows "The request failed 
>> because the instance could not start successfully"
>> Project is in europe-west
>>
>> Anyone else?
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a5d63d39-f55c-4382-8658-25091823ed2a%40googlegroups.com.


Re: [google-appengine] Re: AppEngie OUTAGE

2019-10-10 Thread Doug Stoddart
thanks, Rob,

good resources.



On Wed, Oct 9, 2019 at 5:55 AM Rob Curtis  wrote:

> Hi, In the past I've found it's better to report downtime issues on their
> issue tracker. https://issuetracker.google.com/issues/
> If you're not already, also subscribe to the downtime notify group
> https://groups.google.com/forum/#!forum/google-appengine-downtime-notify
>
> Good luck
>
> On Tuesday, October 8, 2019 at 4:47:42 PM UTC+2, Doug Stoddart wrote:
>>
>> yes, same here for nearly 1hr
>>
>> On Tuesday, October 8, 2019 at 9:48:59 AM UTC+2, Paolo Conte wrote:
>>>
>>> Hello,
>>> suddently most requests return error 500, log shows "The request failed
>>> because the instance could not start successfully"
>>> Project is in europe-west
>>>
>>> Anyone else?
>>>
>> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/30dedf4b-384c-4332-a903-27f6b6572a8a%40googlegroups.com
> 
> .
>


-- 

[image: photo]
Doug Stoddart
CEO
E: d...@bikerentalmanager.com  
W: bikerentalmanager.com  

 




-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAAkjvEu%3D4Ux88%3D3VBMMAAD7qk2a1Ky1KS58aOiRg9pYqd0L_5g%40mail.gmail.com.


[google-appengine] Re: Deploy two versions of same app at same time

2019-10-10 Thread Mahmmoud Mahdi
To automate deployment of multiple versions and testing the speed of 
process in parallel. Running the deploy of second version fail until the 
first one finished.
How to deploy version similar to the following commands without facing 
error:

gcloud app deploy --version v1 --quiet &
gcloud app deploy --version v2 --quiet

Many Thanks 

On Tuesday, October 8, 2019 at 4:47:42 PM UTC+2, Nicholas Swekosky wrote:
>
> Can you please provide more context regarding the project, service, 
> version, and instance with respect to the deployment?
>
> On Monday, October 7, 2019 at 7:01:20 AM UTC-5, Mahmmoud Mahdi wrote:
>>
>> Hello All,
>> Is possible to deploy two version of same app at same time using gcloud 
>> command
>> Thanks
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4dd50cb0-06cb-44fa-a3a9-c4ba421dc1c9%40googlegroups.com.


[google-appengine] Re: AppEngie OUTAGE

2019-10-10 Thread Carl Emmoth
I've filed a bug 

Den tisdag 8 oktober 2019 kl. 09:48:59 UTC+2 skrev Paolo Conte:
>
> Hello,
> suddently most requests return error 500, log shows "The request failed 
> because the instance could not start successfully"
> Project is in europe-west
>
> Anyone else?
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d6a49aed-3328-4e79-ba70-5ece132604ff%40googlegroups.com.


[google-appengine] Firebase Cloud Functions on Client (vue.js) to access Back-End API data hosted on GAE PHP

2019-10-10 Thread Alex Gillis


Th is is a repost from

https://stackoverflow.com/questions/58201107/firebase-cloud-functions-on-client-vue-js-to-access-back-end-api-data-hosted-o

I had not answer and I wonder if either i asked on the wrong place or my 
question is not formulated  correctly, hence i riposting it here.


I have a web app hosted in Firebase in vue.js. The app access to the 
organization's main database via API to a back-end server developed in PHP 
(laravel) hosted in GAE. I'd like to know if using Firebase Cloud Function 
on the client (js) to make calls to a back end API (PHP) would help me to 
protect data and be more efficient authenticating calls from the client to 
back end.


*Currently*: Users login into the client using Firebase Auth and the client 
sends the resulting token to my back-end server on each API call. Then the 
back-end verifies the token received via HTTPS using FB Auth API and then 
if verified, the backend would return the request data via JSON back to the 
client-side via HTTPS response.


My 2 biggest concerns are:

1) would this approach scale well with more users. 2) for large extractions 
of data, i.e. 1000+ rows. I'd like to avoid to have JSON objects being 
"downloaded" on the client.


*New Scenario:* The users would still log in on the client (vue.js) using 
FB Auth, but the Client would use FB Cloud Functions to make the calls to 
the Back-End API data hosted on GAE and then return the data as an array.

The advantages I hope to utilize are: - The client will not have https 
traffic with data as this would be handled by FBCF and send to the client 
via socket (?). - Save verification auth calls from the server, *IF* there 
is a way for FBCF to make calls to GAE without the need to pass the token 
(maybe using endpoints?)


Does this make sense or am I introducing a middle man unnecessarily?


Thank you, Alex

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c706a98f-b678-4afe-b1b4-812d4c782fb5%40googlegroups.com.


[google-appengine] Re: AppEngie OUTAGE

2019-10-10 Thread Carl Emmoth
This affected our customers the whole day. Is it possible to get 
compensation?

Den tisdag 8 oktober 2019 kl. 09:48:59 UTC+2 skrev Paolo Conte:
>
> Hello,
> suddently most requests return error 500, log shows "The request failed 
> because the instance could not start successfully"
> Project is in europe-west
>
> Anyone else?
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/a63f63fb-fdb8-4f40-86c0-c94a3f9376c2%40googlegroups.com.


[google-appengine] Re: dates in app engine java

2019-10-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joan, 

How did you perform the query? Do you refer to 
com.google.appengine.api.datastore Class Query 
?
 
There is a Enum Query.SortDirection. Did you use Cloud SQL? 

This discussion group is oriented more towards general opinions, trends, 
and issues of general nature touching App Engine and Cloud SQL. For query 
order by issues you may be better served in dedicated forums such as 
stackoverflow, where experienced programmers are within reach and ready to 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6af5075c-aa87-4fff-b1aa-5ed7a13965d5%40googlegroups.com.