Re: [google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-08-08 Thread Александр Ефремов
Hi George.
For me it's enough now, but exists such saying: there is no limit to perfection 
-:).
I also made some optimizations therefore now I'm able to use most small 
instance.
But if exists opportunity to improve that, of course would be still better.

> 8 авг. 2018 г., в 22:41, 'George (Cloud Platform Support)' via Google App 
> Engine  написал(а):
> 
> Hello Aleksander, 
> 
> Glad to read you find the solution working. Do you consider this solution as 
> definitive? Would you like to see improvements? If so, what would the ideal 
> solution mean for you? 
> 
> -- 
> 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/fa9etnYlog0/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/5e8763dc-76d9-445f-8b35-8066d6e25d28%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/BCCEF70F-F35F-4CEC-B471-E4B39702D444%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App engine with SSL does not work on Firefox

2018-08-08 Thread Binh Bui Van
Thanks Katayoon,
It is not seem to be my issue.
Opened new tracker issue

Vào 21:25:16 UTC+7 Thứ Tư, ngày 08 tháng 8 năm 2018, Binh Bui Van đã viết:
>
> Hi all,
>
> I have config ssl for Google App Engine (python standar).
> It work perfect on chrome.
> But with Firefox, it show 'Your connection is not secure'
>
> Any suggestions on what I might be doing wrong?
>
>
>
> 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 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/9c3519b0-699d-403e-9588-6d88b8dbf961%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App engine with SSL does not work on Firefox

2018-08-08 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine


Hi Binh,

You may take a look at this thread in Stack Overflow 

 
which seems to be similar to your issue. If the issue persists, I recommend 
to open a report in the Issue Tracker 
 for further 
investigation.

-- 
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/4e442877-65e8-45d4-b3e1-446a355c58de%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: "The process handling this request has unexpectedly died... (Error Code 203)"

2018-08-08 Thread Charles Batty-Capps
Yep, and thanks for the info. Our 500 errors were due to the "process 
death" issue, though, and their latencies were well under the 60s deadline. 
So JFYI, I don't think the deadline exceeded error is related to what we're 
experiencing. 

I will investigate when I have a chance to see if our REST framework 
(latest version of Jersey) is somehow throwing uncaught exceptions before 
our application code runs. That's currently my best guess about what's 
going on, because anywhere in our application code an uncaught exception 
will be logged and result in a 500 error.

On Wednesday, August 8, 2018 at 1:19:47 PM UTC-7, Dan S (Cloud Platform 
Support) wrote:
>
> Hello Charles,
>
> In fact, I understand this part of your issue, and I believe that there is 
> a good answer from Nick. However, my concern and my answer concerns to the 
> HTTP 500 server error displayed in your screenshots. Sorry for do not let 
> this clear.
>
> On Monday, August 6, 2018 at 8:54:35 PM UTC-4, Charles Batty-Capps wrote:
>>
>> I can look into this, but I'm not sure that you carefully read my post. 
>> I'm getting a "process has died unexpectedly" error, NOT a "deadline 
>> exceeded error".
>>
>> On Monday, August 6, 2018 at 2:13:27 PM UTC-7, Dan S (Cloud Platform 
>> Support) wrote:
>>>
>>> There are many possible reasons to cause this kind of issues such as 
>>> Slow-Loading Apps,
>>> Performance Settings, Warmup Requests, Delays Associated with Logging
>>> Delays Associated with UrlFetch… you can find more details about the 
>>> root causes and how to avoid errors in the following documentation[1].
>>>
>>> Also note that while using Java, the runtime may not terminate the 
>>> process, so this could cause problems for future requests to the same 
>>> instance. “To be safe, you should not rely on the DeadlineExceededError, 
>>> and instead ensure that your requests complete well before the time limit.” 
>>> as per docs[2].
>>>
>>> [1] 
>>> https://cloud.google.com/appengine/articles/deadlineexceedederrors#the-request-timer
>>> [2]
>>> https://cloud.google.com/appengine/docs/standard/python/how-requests-are-handled#specifying_a_request_deadline
>>>
>>>
>>> On Sunday, August 5, 2018 at 7:56:04 PM UTC-4, Charles Batty-Capps wrote:

 Your post may have given me an idea, but the root cause isn't what you 
 think. We always use a REST framework for all our services (the latest 
 version of Jersey currently), so I am 100% certain an unexpected 
 application level exception results in a 500 error and the stacktrace is 
 logged by an Exception handler in Jersey. We never see anything in the 
 logs 
 except for the process death error when this happens. 

 It stands to reason that maybe an exception is being thrown in the 
 Jersey layer before it reaches the HTTP layer, and somehow nothing is 
 logged in this case.

 I'll investigate options with Jersey. Maybe there's a thread pool that 
 needs reconfiguring or something.



-- 
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/d3b201db-9f36-42b4-8c51-3af9ff268d11%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Will Pipelines and MapReduce libraries work on Python 3.7?

2018-08-08 Thread Jacob G
Will Pipelines and MapReduce libraries work on Python 3.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 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/7ee0fab2-b80c-4cf2-a734-1b45f5dae64d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: "The process handling this request has unexpectedly died... (Error Code 203)"

2018-08-08 Thread 'Dan S (Cloud Platform Support)' via Google App Engine
Hello Charles,

In fact, I understand this part of your issue, and I believe that there is 
a good answer from Nick. However, my concern and my answer concerns to the 
HTTP 500 server error displayed in your screenshots. Sorry for do not let 
this clear.

On Monday, August 6, 2018 at 8:54:35 PM UTC-4, Charles Batty-Capps wrote:
>
> I can look into this, but I'm not sure that you carefully read my post. 
> I'm getting a "process has died unexpectedly" error, NOT a "deadline 
> exceeded error".
>
> On Monday, August 6, 2018 at 2:13:27 PM UTC-7, Dan S (Cloud Platform 
> Support) wrote:
>>
>> There are many possible reasons to cause this kind of issues such as 
>> Slow-Loading Apps,
>> Performance Settings, Warmup Requests, Delays Associated with Logging
>> Delays Associated with UrlFetch… you can find more details about the root 
>> causes and how to avoid errors in the following documentation[1].
>>
>> Also note that while using Java, the runtime may not terminate the 
>> process, so this could cause problems for future requests to the same 
>> instance. “To be safe, you should not rely on the DeadlineExceededError, 
>> and instead ensure that your requests complete well before the time limit.” 
>> as per docs[2].
>>
>> [1] 
>> https://cloud.google.com/appengine/articles/deadlineexceedederrors#the-request-timer
>> [2]
>> https://cloud.google.com/appengine/docs/standard/python/how-requests-are-handled#specifying_a_request_deadline
>>
>>
>> On Sunday, August 5, 2018 at 7:56:04 PM UTC-4, Charles Batty-Capps wrote:
>>>
>>> Your post may have given me an idea, but the root cause isn't what you 
>>> think. We always use a REST framework for all our services (the latest 
>>> version of Jersey currently), so I am 100% certain an unexpected 
>>> application level exception results in a 500 error and the stacktrace is 
>>> logged by an Exception handler in Jersey. We never see anything in the logs 
>>> except for the process death error when this happens. 
>>>
>>> It stands to reason that maybe an exception is being thrown in the 
>>> Jersey layer before it reaches the HTTP layer, and somehow nothing is 
>>> logged in this case.
>>>
>>> I'll investigate options with Jersey. Maybe there's a thread pool that 
>>> needs reconfiguring or something.
>>>
>>>

-- 
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/111e4098-6255-4236-a1cc-0d45ee2728ac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Node.js Standard Memcache Availability

2018-08-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Daniel, 

It is not easy to predict when this or that feature is going to become 
available, as development time can depend on many factors and may change in 
the last moment. Only the date indicated in a public announcement is 
reliable. Work is undoubtedly being done meanwhile. Features such as a 
tiered version are still to be decided upon. 

It is already possible to use Memcache in the Flexible Environment, as 
described in the "Caching Application Data Using Redis Labs Memcache" 
online document 

. 

-- 
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/f707e044-17bb-4262-ad5f-a3347cae1b01%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Public link disappeared for assets in bucket

2018-08-08 Thread 'Sam (Google Cloud Support)' via Google App Engine
This is the intended way for making data in Cloud Storage public through 
the Cloud Console. The documentation that you linked shows that [1]. And 
the Cloud IAM documentation elaborates on the 'allUsers' permission 
identifier for making data publicly accessible [2].

[1] https://cloud.google.com/storage/docs/access-control/making-data-public
[2] https://cloud.google.com/iam/docs/overview#allusers

-- 
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/015f99fa-5d23-4d63-ac7c-59b335ac577b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: [URGENT] I have two applications under "No organisation" in google cloud platform with a similar source code but

2018-08-08 Thread 'Yasser Karout (Cloud Platform Support)' via Google App Engine
Hello,

Can you please provide the errors you are getting? And also provide at 
which point you are getting the errors. Is it when you try deploying the 
app? This will help determine possible causes for the issue.


On Monday, August 6, 2018 at 7:07:30 AM UTC-6, Heisenberg wrote:
>
> The problem is, one application shows some errors while the other doesn't. 
> Whereas, they both have the same source code and similar datastore 
> entities. Any ideas?
>
> p.s both applications in gcp were created by someone 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 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/5d883aff-1f23-4829-a4a1-bce516b4f204%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-08-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Aleksander, 

Glad to read you find the solution working. Do you consider this solution 
as definitive? Would you like to see improvements? If so, what would the 
ideal solution mean for you? 

-- 
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/5e8763dc-76d9-445f-8b35-8066d6e25d28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: python 3.7 standard runtime release schedule?

2018-08-08 Thread Giuliano Ribeiro
It seems to be launched right now:
https://cloud.google.com/blog/products/gcp/introducing-app-engine-second-generation-runtimes-and-python-3-7


On Wednesday, August 8, 2018 at 6:30:16 PM UTC+1, Eric G wrote:
>
> Is there a document that describes the differences between Python 3 
> standard and flex?   At a quick glance at least the interface for Python 3 
> standard looks very similar to flex.  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 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/6d58fb40-973d-4933-9c41-c750e08e7063%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App engine to connect to Oracle on-premise instance

2018-08-08 Thread 'Julie (cloud platform support)' via Google App Engine
This looks like a duplicate of this Google Groups post 


-- 
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/5aa3c2bf-fbf7-40cf-9824-e42a148f2f61%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: python 3.7 standard runtime release schedule?

2018-08-08 Thread Eric G
Is there a document that describes the differences between Python 3 
standard and flex?   At a quick glance at least the interface for Python 3 
standard looks very similar to flex.  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 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/0a25869c-685d-4260-a56b-4cec4e870fc6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: python 3.7 standard runtime release schedule?

2018-08-08 Thread Eric G
Thanks! That's great news and very helpful links.

-- 
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/21bf190b-ef62-4791-94d6-4f7dae8000f8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google App engine with SSL does not work on Firefox

2018-08-08 Thread Binh Bui Van
Hi all,

I have config ssl for Google App Engine (python standar).
It work perfect on chrome.
But with Firefox, it show 'Your connection is not secure'

Any suggestions on what I might be doing wrong?



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 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/2238cf76-4df2-4609-b4f6-d7913b42ac52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: App Engine connect to Oracle instance running in on-premise

2018-08-08 Thread VIVEK KUMAR
GAE Flexible. But, it is same as GCE as it runs on container based
environment. But, we get cloud native benfits on GAE flexible over GCE.



On Wed, Aug 8, 2018 at 9:59 AM, Attila-Mihaly Balazs 
wrote:

> Hello,
>
> Just a small request for clarification: would that be Google App Engine
> standard or Google App Engine flexible you're thinking about using?
>
> Attila
>
> --
> 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/b2fd7539-2d15-4835-b902-
> ea88e81f6b84%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/CAKZtkJP01nGdiH5rPiFiF9FZ0ONvSWmkdFsCR1zXJTCXS-ck_w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Server Sent Events in GAE Standard

2018-08-08 Thread Roxana Ioana Mirel
On Appengine, we've been using Pusher  for this, but 
you could also look into Firebase Cloud Messaging.

Regards,
Roxana

-- 
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/5e82ea66-1cbb-41bb-af38-a5b550831ea2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Node.js Standard: memory usage different for locally and deployed version on 30 - 40 Mb.

2018-08-08 Thread Aleksander Efremov
Yes, it's better now, thanks. Before was difference from my PC and Cloud 
Platform about 20Mb, now 10Mb.

On Wednesday, August 8, 2018 at 1:00:17 AM UTC+4, George (Cloud Platform 
Support) wrote:
>
> Hi Aleksander, 
>
> The issue should be fixed by now; you are encouraged to test it again. 
>

-- 
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/49ba21c5-e055-484a-84eb-0e724957d2d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.