[google-appengine] Re: dev_appserver.py complains of missing pdo_mysql.so on simple F3 PHP application

2016-05-04 Thread Chris Hoffman
Update. I got this working. The issue is linux users have to build a php instance from source per https://gae-php-tips.appspot.com/2014/11/15/app-engine-php-1-9-17-pre-release-sdk/. The dev appserver works OK once it is configured to point at this newly compiled php instance. The google

[google-appengine] App Engine Workshop for San Francisco Bay Area Developers

2016-05-04 Thread 'Kim Lewandowski' via Google App Engine
Hello GAE Developers, We would like to invite you to attend an in-person event for companies in the San Francisco Bay Area using Google App Engine. You will have the opportunity to meet Google Engineers and Product Managers to discuss all things App Engine and GCP. We are still gathering

[google-appengine] dev_appserver.py complains of missing pdo_mysql.so on simple F3 PHP application

2016-05-04 Thread Chris Hoffman
I'm on linux and have a simple helloworld-level Fat-Free Framework php application consisting of a single route to a single view. I am only requiring F3's base.php. Absolutely no sql anything. When I build a simple yaml file pointing to the index.php and start the dev_appserver, it complains

Re: [google-appengine] Instagram blocking App Engine's urlfetch/sockets IP block

2016-05-04 Thread Ryan B
On Wed, May 4, 2016 at 12:02 PM, 'Nick (Cloud Platform Support)' via Google App Engine wrote: > So, you're attempting merely to fetch http://www.instagram.com/, and you > receive 429 on the first request, and you're not launching many other > requests at the

[google-appengine] Re: gcloud copy-files

2016-05-04 Thread 'Zeehad (Cloud Platform Support)' via Google App Engine
Hello Deepak, You'll need to use the absolute path to the destination folder on the instance. For example *gcloud compute copy-files c:/localfile.js loggeduser@instance-name:/myAwesomeApp/src/main/webapp/resources/js --zone us-central-1* You can also use relative path to the loggeduser's

Re: [google-appengine] Instagram blocking App Engine's urlfetch/sockets IP block

2016-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Ryan, So, you're attempting merely to fetch http://www.instagram.com/, and you receive 429 on the first request, and you're not launching many other requests at the same time? It seems odd that a rate-limit response would come without a condition being reached requiring rate-limiting...

Re: [google-appengine] Mail Service Deprecation?

2016-05-04 Thread PK
How simple and easy life seems when one’s job is just to write support e-mails. Programming e-mail support in the cloud is a different story. It took me a long time to get the GAE mail service work reliably and I am very happy with it. I had to deal with encoding issues, MIME issues, etc. I do

Re: [google-appengine] Mail Service Deprecation?

2016-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Emanuele, I understand your concerns about needing to revise your codebase - nobody wants to spend more time than they need on maintaining or adjusting a system when they could be blazing new trails and writing new behaviour and system, but rest assured that we really do try to ensure that

Re: [google-appengine] Instagram blocking App Engine's urlfetch/sockets IP block

2016-05-04 Thread Ryan Barrett
thanks for the replies! i should have emphasized that this is for www.instagram.com, not the API. API requests are working fine. you're right that IP blocking wouldn't usually be the first culprit in general, especially for 429s. i tried from a few different apps, though, including shell-hrd

Re: [google-appengine] Re: my git repo is empty

2016-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Andrew, Glad to hear :) Have a nice day! Nick Cloud Platform Community Support On Tuesday, May 3, 2016 at 3:12:30 PM UTC-4, Andrew Arrow wrote: > > thanks Nick! That worked. I have all my code now. You are an excellent > googler. > > On Tue, May 3, 2016 at 12:01 PM, 'Nick (Cloud

[google-appengine] Re: call for option to remove auto-gzip

2016-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey pdknsk, Thanks for reviving that thread. We're working through all kinds of old issues, and in such a large issue tracker, it's not guaranteed that each issue will see updates within a timeframe that every user would ideally desire, but we're also willing to receive "pokes" on specific

[google-appengine] Re: AppEngine Application Problem

2016-05-04 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Gnani, No worries at all. I hope that you manage to figure out the cause of the issue, and if possible, you can work with the maintainers of the third-party system you're using to see if a fix is needed from their end. Cheers, Nick Cloud Platform Community Support On Tuesday, May 3,

[google-appengine] Re: Nodejs cluster and auto scaling

2016-05-04 Thread Artem Alekseev
I use node as a TCP server. And also use internal node clustering, so that i have one point of TCP connection (IP,PORT), and node starts workers(separate processes) and balances my TCP requests by sending them to different instances of node processes. Don't I need to use clustering with app

[google-appengine] Re: Nodejs cluster and auto scaling

2016-05-04 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Thanks for sharing your questions with the community. With App Engine, NodeJS is run in the flexible environment . If using the NodeJS runtime, An Overview of App Engine

[google-appengine] Re: java: un-expected behaviour when using appengine testing classes (possible memory leak)

2016-05-04 Thread Miroslav Genov
Already filed an issue about this at: https://code.google.com/p/googleappengine/issues/detail?id=12945=12945=1462375553 On Wednesday, May 4, 2016 at 6:28:15 PM UTC+3, Miroslav Genov wrote: > > Hello, > > > GAE Java SDK: 1.9.36 > > The following test shows that LocalServiceTestHelper is

[google-appengine] java: un-expected behaviour when using appengine testing classes (possible memory leak)

2016-05-04 Thread Miroslav Genov
Hello, GAE Java SDK: 1.9.36 The following test shows that LocalServiceTestHelper is creating a new thread on each setUp which is not closed on tearDown which leads to memory leak. @Test public void happyPath() { final LocalServiceTestHelper helper = new LocalServiceTestHelper( new

[google-appengine] Re: The SSL certificate provided could not be inserted

2016-05-04 Thread Aleksey Popryadukhin
I faced with the same issue. I converted the private key to rsa using this command: openssl rsa -in private.key -out private.key.pem And tried this command: openssl x509 -inform PEM -in www_mydomain_com.crt > public.pem But without any success. I used this guide to issue and create certificates:

[google-appengine] Nodejs cluster and auto scaling

2016-05-04 Thread Artem Alekseev
Hi, please explain how does autoscaling work for nodejs in app engine? What if I use kode clustering to apawn workers for each cpu core? Do I need to catch an event from app engine to start spawning more workers? -- You received this message because you are subscribed to the Google Groups

Re: [google-appengine] Mail Service Deprecation?

2016-05-04 Thread Jeff Schnitzer
Geez, the blobstore? Old skool :-) Jeff On Tue, May 3, 2016 at 3:14 PM, Emanuele Ziglioli wrote: > yeah, one less reason to bet on App Engine: it's such a moving target. > We can't afford to rewrite critical parts of the code every few years just > because APIs get