[google-appengine] Re: Uploading Files directly to Cloud Storage without going through App Engine Instances

2018-10-26 Thread samiislam via Google App Engine
I am providing you the Github sample for Java to upload Objects to Cloud Storage bucket since you were able to go through the first step

[google-appengine] Re: Why Is Runtime PHP 7.0.30 Not 7.2??

2018-10-25 Thread samiislam via Google App Engine
You are correct, this way you would be able to see the php version information of the Google App Engine Instance in Flexible environment, but it is not applicable for standard environment as there is no way to ssh into App Engine Standard in php 7.2 Runtime. Also, it is not possible to run php

[google-appengine] Re: How to resolve the hibernate connection issue

2018-10-25 Thread samiislam via Google App Engine
According to this thread in stackoverflow , this issue occurs when Hibernate is not able to connect to the database. As the thread suggests, you can start with

[google-appengine] Re: Accessing datastore from microservice

2018-10-16 Thread samiislam via Google App Engine
Hi Richard, I am clarifying the point that George has made in his earlier post on the thread. Basically, Modules are services , so are microservices, they are all the same. I have to mention that the

Re: [google-appengine] Re: Datastore & Firestore Transaction

2018-10-16 Thread samiislam via Google App Engine
Hi Rajesh, I can understand that you have a concern moving forward with Firestore as you have been using App Engine with Datastore for such a long time. I am providing you a link to the documentation which addresses the process of automatic upgrade of Cloud Datastore to Cloud Firestore

Re: [google-appengine] Re: Datastore & Firestore Transaction

2018-10-16 Thread samiislam via Google App Engine
Hi Rajesh, I can understabd that you have a concern moving forward with Firestore as you ahve been using App Engine with Datastore for such a long time. I am providing you a link to the documentation which addresses the process of automatic upgrade of Cloud Datastore to Cloud Firestore

[google-appengine] Re: Protecting backend Services with a Firewall

2018-10-12 Thread samiislam via Google App Engine
Hello Joshua, App Engine uses ephemeral IP’s, so a purely “firewall based solution” might not be the most efficient solution in your case. But there are other ways that a solution could be developed. As per your requirement is concerned, the closest method to what you have described can be

[google-appengine] Re: dev_appserver in 1.9.76 switched import resolution from relative to absolute?

2018-10-12 Thread samiislam via Google App Engine
Hi Vitaly, This behavior is indeed unusual. As Amit mentioned above, there seems to be a known issue which is currently under investigation by our Cloud SDK Engineering Team. I would recommend adding a comment to the Issue Thread providing your

[google-appengine] Re: URL Fetch Exception

2018-10-10 Thread samiislam via Google App Engine
Hello Gabriel, I am aware of the Issue Tracker that you have opened with us addressing the issue of ‘ApiProxy$UnknownException in Blobstore and URL Fetch calls’. I am currently investigating the issue on my end and definitely will provide you an

Re: [google-appengine] Re: Google App Engine is slow to deploy, hangs on "Updating service [someproject]..."

2018-10-09 Thread samiislam via Google App Engine
Yes, you are right. In order to connect to the Redis instance, App Engine applications must be in the same region as the Redis Instance and on the same network to be authorized. Please check the following article for

[google-appengine] Re: Python code runs in laptop's dev_appserver, but won't run in GAE :(

2018-10-05 Thread samiislam via Google App Engine
Thank you for your message. I was able to deploy the application through the same article that you have been using to connect to Firebase RealTime Database and to read item from it through the HTTP request. So,

[google-appengine] Re: Help! Recurring Error: /usr/bin/bash: Exit 60

2018-10-01 Thread samiislam via Google App Engine
Hello Pam, I believe you were following this documentation to setup your Course Builder environment. You could try to look at the permissions of /usr/include/python2.7. Maybe the user

[google-appengine] Re: Cloud Tasks Api for Appengine flex

2018-09-28 Thread samiislam via Google App Engine
Hi Joshua, This is the latest announcement posted in the Google Cloud blog about the news on Cloud Tasks APIs & Services. As David

[google-appengine] Re: Why do some requests answered by a Filter take over a second on AppEngine?

2018-09-18 Thread samiislam via Google App Engine
As you have mentioned in the thread that the issue is not related to app engine, I would highly recommend checking out the documentation for best practices for App Engine startup time in setting up your in the following Article

Re: [google-appengine] Re: Why GAE create many instances in short time?

2018-09-06 Thread samiislam via Google App Engine
Thank you for your information. As this behavior seems abnormal, I will require more information to investigate the issue further. Would it be possible to reply me with the project ID via private message, so that I can take a look in your project's logs to possibly figure out the root cause of

[google-appengine] Re: Why GAE create many instances in short time?

2018-09-05 Thread samiislam via Google App Engine
By checking the screenshot that you have provided, it seems that your Activity log is showing that there were multiple Kubernetes Clusters launched through the particular service account. Could you please check if your Kubernetes Engine cluster has the autoscaler enabled as this might be the

[google-appengine] Re: HttpBadRequestError when deploy app using gcloud

2018-08-30 Thread samiislam via Google App Engine
Hello Hoang, I would suggest deploying the app from the Cloud Shell by going through the following article . This way the deployment will be independent of the local environment. This is the documentation

[google-appengine] Re: HttpBadRequestError when deploy app using gcloud

2018-08-29 Thread samiislam via Google App Engine
Looking at your issue and the error message, it seems like your gcloud components are not updated to the latest version. To update all installed components to the latest version please try the following command on your environment: $gcloud components update I would recommend going through

[google-appengine] Re: memory usage of python37 runtime on standard environment

2018-08-02 Thread samiislam via Google App Engine
You can also play around with it on the local development server (hopefully the leak reproduces there). And you could try using other methods to understand the source of the leak. In my experience this message usually means that your instances use more memory than your instance class

[google-appengine] Re: GCP deploy with 'python_version: 3.5' still uses python 3.6

2018-08-02 Thread samiislam via Google App Engine
Please would it be possible to update the app.yaml file with the following information and see what is the behavior. App.yaml -- #[START RUNTIME] runtime: python env: flex entrypoint: gunicorn -b :$PORT mysite.wsgi runtime_config: python_version: 3 #[END RUNTIME]