[google-appengine] Re: App Engine Standard Environment for Go requires billing?

2019-02-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Agustinus, To deploy your apps, you must enable billing. Your account will not be charged if you stay within your free quota. If your application needs resources that exceed the free quota, you will be charged for the additional usage. Whether your choice of programming language falls

[google-appengine] Re: sync between datastore and firestore

2019-02-25 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rajesh, As things are now, is not possible to switch from Datastore to Firestore within the same project. Still, you may operate Firestore in Datastore mode. By creating a Cloud Firestore database in Datastore mode, you can access Cloud Firestore's improved storage layer while keeping

[google-appengine] Re: Changing Port no. on AppEngine Flex environment

2019-02-25 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Abhishek, Where do you configure your port with the markup? In Flexible Environment, the usual way to specify network settings is in your app.yaml configuration file, for example: network: instance_tag: TAG_NAME name: NETWORK_NAME subnetwork_name: SUBNETWORK_NAME

[google-appengine] Re: AppEngine Flex - Correct Firewall Configuration For Inter-Service-Communication

2019-02-25 Thread 'George (Cloud Platform Support)' via Google App Engine
It is not immediately apparent, after reading the documentation page you link to, how certain IPs are to be whitelisted; targeted HTTP requests, service accounts, and Cloud Pub/Sub are mentioned, as recommended solutions. The firewall configuration page stipulates, for requests received in

[google-appengine] Re: PHP Developer server + PHP-FPM

2019-02-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Piotr, You have some hints in the error message, one being "No default module found", the other "No php.ini file will be used". You should check your code and modify it accordingly. All this is above the scope of this discussion group, in fact off-topic. You should post such questions to

[google-appengine] Re: Google search dictionary results text coloring extremely light

2019-02-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Your reproduced text here in the message window is invisible. How did you get the results you complain about? Is it from the Google Dictionary extension? I have tries it and here text is perfectly legible, so I can't reproduce your results with this extension. Have you tried tweaking Chrome

[google-appengine] Re: GAE APIs

2019-02-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ryan, You are right, Python 2 to 3 code migration may be accomplished in part by employing tools such as modernize , futurize and 2to3

[google-appengine] Re: Getting inconsistent 500 error - inconsistent Error code 204 on Google App Engine PHP Standard

2019-02-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Shaharia, You can now follow progress in your identical Public Issue Tracker issue 123731553. Advertising Policies indicate that destination are suspended if such destinations don't function properly or have been

[google-appengine] Re: GCP + WebAssembly?

2019-02-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Valentyn, It depends what environment you would like to use: App Engine Standard or Flexible? Maybe Compute Engine? You may check supported programming languages and frameworks on the "Choosing an App Engine environment" documentation page

[google-appengine] Re: How to simulate app engine environment for a python3 application locally

2019-02-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Santiago, You can find relevant information in the "Running locally" sub-chapter of the "Testing and deploying your application" documentation page. To test your application's

[google-appengine] Re: Get the data from a document in Firestore as dictionary

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Guanaco, There is a doc.to_dict() function as well. You may want to check an example on the "google-cloud-firestore 0.31.0" Python documentation page . All this is above the scope of this discussion group, in fact off-topic. You should

[google-appengine] Re: Needed URL endpoints to whitelist for pub-sub (publish)

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Anoop, If you rely on IP-based firewall rules as a security mechanism, note that Cloud Pub/Sub is not associated with any specific IP address. Configuration of your Organization's firewall falls under your Organization's responsibility, and you should take into consideration the

[google-appengine] Re: No search results for my website but it does show some pages from one of my clients sites

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Luke, Your site indicates "Powered by Webbering". Are you sure your site is deployed to Google Cloud Platform? If so, did you deploy it to Standard Environment or Flexible? When did you notice this redirection issue? What would your exact expectation be? -- You received this message

[google-appengine] Re: PHP Developer server + PHP-FPM

2019-02-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Piotr, What directory are you in when running this command? You should rather run the dev_appserver.py command as follows from the directory that contains your app's app.yaml configuration file: dev_appserver.py [PATH_TO_YOUR_APP] Alternatively, you can specify the configuration file

Re: [google-appengine] Re: cloud shell - boost mode

2019-02-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Cloud shell is not meant to build your app. Instead, you could use the Cloud Build service, which lets you build software quickly across all languages. Related details are to be found on the "Cloud Build" page and related documentation. -- You received

Re: [google-appengine] Re: Configure app.yaml for standard env

2019-02-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Google Cloud Platform provides health checking mechanisms that determine whether VM instances respond properly to traffic. To respond to traffic, VM instances need to be existing and running. Health checks are not able to target nonexistent instances, or cause instances to be launched without

[google-appengine] Re: Mount Cloud Storage for App Eng

2019-02-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Myron, It all depends on what is meant by "local" drive. Your app cannot write to the local file system. Does your app face difficulties when using Cloud Storage, as recommended? You may have a look at the "Using Cloud Storage with Go" documentation page

[google-appengine] Re: How to overcome ModuleNotFoundError: No module named 'google.appengine' ?

2019-02-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Amruth, What have you tried exactly, up to now? It looks like a path issue: google.appengine.api is part of the App Engine SDK packaged with the Google Cloud SDK. This has to be reflected in your Python path, so you'll need to add to PYTHONPATH the path to your google module

[google-appengine] Re: appengine with firestore in a different google cloud project.

2019-02-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rajesh, The abstract separation introduced by two different project names should not result in in real Firestore access time differences. Are your projects situated in different regions? If your Firestore instance is situated in one of these regions, and you have another project open in

[google-appengine] Re: Migrating GAE app stored user information to GAE Python 3.0 without Users API

2019-01-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Marcel, Documentation does not indicate restrictions on user ID's, you may check "Getting profile information" page for related details. You can choose IDs or pattern for IDs that might correlate to the old App Engine IDs.

[google-appengine] Re: Parallel calls to a same function on Google App Engine (Concurrency)

2019-01-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Amruth, You could pass the whole list as an array in a call to your function, as described in the "Passing arrays via HTTP GET?" posting in Groups. You'll be able then to process your list at once. This

[google-appengine] Re: GAE APIs

2019-01-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joshua, You may check from time to time the official "Feature Deprecations" page . As you may realize, it is difficult to provide extra information, that is not officially published, over this special channel; also: fruitless to

[google-appengine] Re: Can't make a new NodeJS App Deploy

2019-01-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Paulo, More information is needed to start our investigation properly. What steps have you undertaken prior to running this command? Have you modified anything in your application's code or app.yaml configuration file? As a first step, you may consider running 'gcloud components

[google-appengine] Re: Google App Engine Seach Java not working since this morning: com.google.appengine.api.search.SearchException: Error constructing stub for app

2019-01-22 Thread 'George (Cloud Platform Support)' via Google App Engine
You may follow issue 123192346 to monitor progress and eventual fixes. No estimated time to resolution has been set. Engineering is already working towards a fix. -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: Configure app.yaml for standard env

2019-01-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Artur, You may consider switching to other instance class, such as F2, all depending on your application's needs, and your design decisions. You can not readily refer to practice, all depending on your application. You set instance class in app.yaml. Details are available on the "App

[google-appengine] Re: Google App Engine Seach Java not working since this morning: com.google.appengine.api.search.SearchException: Error constructing stub for app

2019-01-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Bruno, We need your project ID, to investigate this specific error further. You should not write private information such as project IDs in public forums, but you can reply to me privately using the drop-down menu of the top-right reply button, and choosing "reply privately to author".

[google-appengine] Re: com.google.appengine.api.search.PutException: Error constructing stub for app s~hanji-bd63d

2019-01-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Akash, This type of errors are to be preferably reported in the Public Issue Tracker. I have gone ahead and opened an issue with similar content . You may follow developments in this thread. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: com.google.appengine.api.search.PutException: Error constructing stub for app s~hanji-bd63d

2019-01-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Akash, What version of Java are you using? Version 7 is not supported any more. Did you change anything in the environment that calls your indexADocument() method? What is your code that runs when your instance gets initialized? This discussion group is oriented more towards general

[google-appengine] Re: Why don't I see any scheduled CRON Jobs in my Google App Engine Cloud Dashboard

2019-01-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Shivang, Do you use App Engine SDK, or Cloud SDK in your workflow? The page you linked to uses Cron with the XML cron configuration file; this is to be employed if you use App Engine SDK tooling, such as appcfg. If you use Cloud SDK-based tooling, such as the gcloud command line, or

[google-appengine] Re: How do I deploy Django app to app engine

2019-01-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Baturay, What is the value of the CLOUDSDK_PYTHON variable at the moment of attempted deployment? Support for version 3.7 is experimental, at present. This error is related to the Python version used by the SDK: currently gcloud requires Python version 2.7.x and there is experimental

[google-appengine] Re: What is the expected output for app_identity.get_default_version_hostname()

2019-01-16 Thread 'George (Cloud Platform Support)' via Google App Engine
In reply to your first question, you are right: google.appengine.api.app_identity.app_identity.get_default_version_hostname() gets the standard host name of the default version of the app. For example, if your application_id is my-app, then the result might be my-app.appspot.com. You may check

[google-appengine] Re: app.yaml not being recognized by my app

2019-01-16 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello David, What is your app's directory structure? What directory were you in, when running go run? What happens if you run dev_appserver.py app.yaml in the directory where your app.yaml resides? Is it ignored as well? You may refer to the "Serving Static Content" documentation page

Re: [google-appengine] GAE python 2.7 end of life

2019-01-16 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Joshua, The advantage of sending mail every day without incurring charges might not be lost: you can apply for a charity-related discount, or good cause exemption with the mail service providers, who might in fact be ready to help you to a similar discount. In any case, your personal

[google-appengine] Re: Installing a 3rd party deb in App engine ?

2019-01-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Aswath, You are right, you cannot install software in GAE, as local system is not accessible, or writes are not persistent. Which environment do you refer to: Standard or Flexible? In fact, you don't need to organize your own cron system, you can simply use Cloud Scheduler

[google-appengine] Re: the Credentials oauth2client.contrib.appengine.StorageByKeyName creates are None

2019-01-14 Thread 'George (Cloud Platform Support)' via Google App Engine
The method you mention is meant to retrieve a credential from Datastore: class oauth2client.contrib.appengine.StorageByKeyName(**kwargs) Bases: oauth2client.client.Storage Store and retrieve a credential to and from the App Engine Datastore. Have you called the method this way? To access

[google-appengine] Re: gcloud crashes when run within Cloud Build

2019-01-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Craig, How did you prepare your build for deployment? You may refer to the "Deploying artifacts" sub-chapter of the "Building, testing, and deploying artifacts" page. Are all

[google-appengine] Re: How to connect Firebase Database from GOogle App engine

2019-01-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Linus, You are indeed missing the fact that one can't as yet use Datastore and Firestore in the same project, one needs to choose at the start which functionality and features suit one's project better. The way you migrate from Cloud Messaging to FCM seems a separate issue. You may find

[google-appengine] Re: How do I deploy Node_Modules on Google App Engine Flexible

2019-01-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dos, How did you deploy your app? What commands did you run? As a first step, you may consider running 'gcloud components update', and then try deploying again. If you run gcloud app deploy, what directory were you in? If you deploy again with gcloud app deploy --verbosity=debug, what

[google-appengine] Re: How to connect Firebase Database from GOogle App engine

2019-01-11 Thread 'George (Cloud Platform Support)' via Google App Engine
It all depends on what you want to accomplish, exactly. You may have a look at "Using Firebase for Real-time Events on App Engine ", or "Integrate with Google Cloud Platform

[google-appengine] Re: GAE python 2.7 end of life

2019-01-11 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Vitaly, In addition to sending email, SendGrid can receive email or make sense of the email you’ve already sent using webhooks. You may check related detail on the "Sending Emails with SendGrid" documentation page

[google-appengine] Re: GAE python 2.7 end of life

2019-01-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Vitaly, Is there a special reason you can't re-program your app? Do you absolutely need to use GAE Mail service? The Mail service is not available in Python 3. You need to use a third-party mail provider such as SendGrid, Mailgun, or Mailjet to send email. All of these services offer

[google-appengine] Re: gcloud crashes when run within Cloud Build

2019-01-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Craig, You indicate how you run the gcloud app deploy command locally, not in Cloud Build. How does your Cloud Build deploy command look like? It should look like: gcloud app deploy --image-url=[HOSTNAME]/[PROJECT-ID]/[IMAGE]:[TAG] . How does yours look like, with project ID edited out?

Re: [google-appengine] Cloud Tasks using Golang.

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
You may find "A Go Task Queue Example" here . -- 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,

[google-appengine] Re: calling external web services from my NODEJS GAE APP

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
502 errors are generated when there was difficulty reaching a service, in your case this is likely caused by the outbound calls failing. Currently, there is no implementation of urlfetch for Node.js so you would have to use the standard HTTP library or other

[google-appengine] Re: Error while deploying swift application

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Matt, What directory are you in, when you run the "gcloud app deploy" command? You are expected to be in the top-level directory, where the app.yaml configuration file is present. You seem to lack a directory, by reference to: TopLevelDirectory |- Package.swift |- Sources

[google-appengine] Re: gcloud crashes when run within Cloud Build

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Craig, How did you run the gcloud app deploy command? You have provided the output of the command, but not the command itself. You should edit out any sensitive information, such as project ID. Have you generated an app.yaml file in preparation? You may refer to the "Deploying to App

[google-appengine] Re: Google App Engine

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Siva, You seem to refer to the "Get API Key" documentation page , or another App Engine documentation page. What is the use of referring to documentation without describing the problem you are faced with? Your link

[google-appengine] Re: GAE python 2.7 end of life

2019-01-09 Thread 'George (Cloud Platform Support)' via Google App Engine
You are perfectly right, NP. Python 3 is made incompatible with 2, and Python 3 does not support quite a few features, and will require effort to re-program your app in an alternative manner. I was simply saying that often the effort is not enormous, and becomes worthwhile on the longer term.

[google-appengine] Re: GAE python 2.7 end of life

2019-01-08 Thread 'George (Cloud Platform Support)' via Google App Engine
The mentioned date is the end of support. Already deployed apps are not directly affected on an immediate time frame. On a longer term though, you'll have to migrate your code to Python 3 or delete it. The effort involved is not necessary enormous in each case, in a lot of cases this might

[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, This seems to be a new question: how to detach mapping of your custom domain to your service. You did not mention this purpose till now. For a new question, it is better to open a new thread, but not in Groups. This forum meant for general discussion on the platform and its

[google-appengine] Re: App Engine PHP 7.3

2019-01-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello James, It is difficult to offer even an appropriate release date for PHP versions. Development speed is known to depend on many factors, testing results are not known in advance, and decisions might be taken in the last moment. Assuming you use App Engine Flexible, you'll need to still

[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, Detailing the actions to be taken: 1) redeploy your app with an empty application: you can read needed details on the "Deploying the Application" documentation page . 2) create an

Re: [google-appengine] Re: Video on how to setup Google Compute Engine

2019-01-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Dos, You need to authenticate and set the default project: gcloud auth login gcloud config set project PROJECT As mentioned, you have done the right thing, opening issue 120953373. The advantage is now that you can follow developments and instructions in the issue itself; you don't need

[google-appengine] Re: ImportError: No module named google.oauth2

2019-01-03 Thread 'George (Cloud Platform Support)' via Google App Engine
It looks like a library duplication issue. How did you install libraries? How did you install Cloud SDK? As a preemptive measure, you may consider uninstalling all Google packages from your local machine, then delete the lib folder in your GAE app folder, and re-create it. This being done,

[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nikos, You seem to want to stop your default service, which is not possible. This is why your button is greyed out. To stop this service, you need to redeploy your app with an empty application, and create an app.yaml that uses only static files. Once this is done, you can stop your app

[google-appengine] Re: When/Where to create index for Search API - Java

2019-01-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Akash, Do you refer to a Java web server in App Engine Standard Environment, or Flexible? Do you refer to a MySQL server running in Compute Engine? If it's Standard or Flexible, you don't have access to the local file system, so you cannot store anything. You can't install database

Re: [google-appengine] Re: Video on how to setup Google Compute Engine

2019-01-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dos, You have done the right thing, opening issue 120953373. Now you can follow developments and instructions in the issue itself. The Support Person has confirmed that the tutorial works as expected. There are other tutorials you may choose to follow, to round up your general knowledge

[google-appengine] Re: F1 instances now have 256MB memory?

2018-12-31 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jeff, You might have discovered a discrepancy in different documentation pages. Where did you see 256MB value being indicated? Not aware of any similar changes in F1 values right now. What would you like to upgrade to? What specific advantages are you looking for, with this

[google-appengine] Re: APP Engine--Running the example of 'Export to Drive' has errors

2018-12-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Zi Yang, Have you attempted to follow the exact example from the site linked to, without stripping unnecessary code? If that works, you should strip code carefully, and gradually, in step-by-step fashion. This discussion group is oriented more towards general opinions, trends, and

[google-appengine] Re: Video on how to setup Google Compute Engine

2018-12-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dos, You may find videos and other related GCE instruction material on the "Videos and Samples" documentation page . A series of quick-starts is to be found on the "Getting Started with Google Cloud Platform" page

Re: [google-appengine] Re: How can I use RedisLab with Java/Flexible environment?

2018-12-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Bao, The assumption is made here, being an App Engine discussion group, that you intend to connect to Redis from Java in Flexible Environment, as you indicate otherwise in your posting's title. The page first

[google-appengine] Re: 404 error

2018-12-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello William, Error 404 notFound indicates that either there is no API method associated with the URL path of the request, or the request refers to one or more resources that were not found. You need to configure your app with app.yaml, to take into consideration the directory where your

Re: [google-appengine] http://docsstorybuilder.appspot.com/ and Python 2.5 Error

2018-12-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Version 2.5 of Python is not supported, as indicated earlier on the thread. You should start planning to migrate your app to supported versions. Depending on your preferred environment, this may be Python 2.7 or 3.6, or Python 3.7 beta runtime, as indicated on the "Python on Google App Engine"

[google-appengine] Re: Cron Jobs failure

2018-12-25 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rodrigo! Error 404 means that a resource was not found. Either there is no API method associated with the URL path of the request, or the request refers to one or more resources that were not found. It is worthwhile testing if you have access to the route for Cron, as defined in your

[google-appengine] Re: Previous Project Target Details Fetched While Deploying Google App Engine App from within Eclipse

2018-12-25 Thread 'George (Cloud Platform Support)' via Google App Engine
You need to choose your project ID first, as indicated on the "Deploying App Engine Standard Applications from Eclipse" page . You seem to indicate that you still use Cloud Plugin for Eclipse. The Google Plugin for Eclipse (GPE) is obsolete

[google-appengine] Re: Google cloud storage "gsutil cp" does this command charge any cost? Is it a CLass A operation ?

2018-12-24 Thread 'George (Cloud Platform Support)' via Google App Engine
If you use one of these products, pricing is indicated separately, for each one: - Cloud CDN , see Cloud CDN pricing . - For CDN Interconnect , see CDN

[google-appengine] Re: How can I use RedisLab with Java/Flexible environment?

2018-12-24 Thread 'George (Cloud Platform Support)' via Google App Engine
You may find related information on the "Connecting to a Redis instance from an App Engine Flexible Environment application" page . App Engine applications must be in the same region as the Redis instance and on the

[google-appengine] Re: cloud shell - boost mode

2018-12-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Rajesh, When you start Cloud Shell, it provisions a g1-small Google Compute Engine virtual machine running a Debian-based Linux operating system. There is no clearly-defined procedure to change this default behavior. You seem to need a higher instance. What is your exact need? How do

[google-appengine] Re: Cloud shell simply doesn't work

2018-12-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sergey, Are-you logged in properly in Console? Where do you run the Console, on which OS: Linux, Windows, Mac? Are you situated behind a company proxy or other similar setup? Did your cloud shell ever work? Is this the first time you tried launching Cloud Shell? What browser are you

[google-appengine] Re: Invalid Static JS Content Type on Google AppEngine Standard Environment

2018-12-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Ali, You mention Eclipse GCP plugin. Do you actually use the proper Eclipse GCP Plugin? Do you refer to the Tools for Eclipse? If you still use the unsupported GCP Plugin, it is advisable to migrate to the Tools, as indicated in the "Migrating from the Google Plugin for Eclipse" online

[google-appengine] Re: Background jobs in App engine Flex environment

2018-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Amit, You may refer to our reply to your twin posting. This runs like this: "If you want to use task queues in the Flexible Environment, a solution is already present: Cloud Tasks

[google-appengine] Re: Implementing Background Jobs in App engine Flex

2018-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Amit, If you want to use task queues in the Flexible Environment, a solution is already present: Cloud Tasks , a task queue

[google-appengine] Re: Invalid Static JS Content Type on Google AppEngine Standard Environment

2018-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ali, You seem to want to deploy a Java app. If this is the case, you must put your static served files within your app's webapp directory. After you choose a location for the static files, you must define their location in the appengine-web.xml file, using the element. More detail can

Re: [google-appengine] Re: GCP ARCHITECTS: GCF + GAE + CloudSQL ==commonlibrary??

2018-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Yanay, What concerns your use-case: no web page, just trigger it with an HTTP call, I am happy to signal to you that the scenario maps closely, and seems well-suited for Google Cloud Functions. [1] You are encouraged to have a look, and ascertain this is what you were seeking. [1]

Re: [google-appengine] Re: Can't deploy changes in console: error response 13: An internal error occurred

2018-12-03 Thread 'George (Cloud Platform Support)' via Google App Engine
It is still better to report directly in the public issue you link to, where information may be kept confidential, and help is assured. If hello world deployed successfully, while your Django app failed, the issue seems to be associated with your app, not Cloud Platform. -- You received this

[google-appengine] Re: Google maps is going to put the nail in the coffin of a website I've developed

2018-12-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Richard, This Groups is dedicated to discussions related to Google Cloud Platform. In what concerns Google Maps pricing, you should use the feedback means offered on the "Google Maps Help" page . -- You received this message

[google-appengine] Re: Can't deploy changes in console: error response 13: An internal error occurred

2018-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
The best place to report this issue is the Public Issue Tracker, where you can be sure your posting will get deserved attention, and developments or solutions are all on thread. Your Cloud SDK seems to be up-to-date. Running gcloud components update may be still be worthwhile. We need the

[google-appengine] Re: How to upload files to google app engine

2018-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Grant, You may check for replies and solutions on your other post in Groups. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this

[google-appengine] Re: PGP Encryption with PHP on App Engine

2018-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Kyaw, Why do you need this extension? Encryption of at least equal level is already provided within App Engine. A feature request needs the support of a well-motivated use case to prove its point and convince. How do you plan to use the extension? A detailed u se-case, preferably in

[google-appengine] Re: Uploading files for App Engine website

2018-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Grant, How did you deploy your app and to which environment? Your attached app.yaml does not seem to present itself in yaml format, and contains a log excerpt. Do you want to deploy to the App Engine environment, or to an instance of Compute Engine? If your plan to deploy your app in

[google-appengine] Re: cron.yaml: is there a max limit to min_backoff_seconds?

2018-11-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mark, Your minimum retry interval for Cron is set to 2 minutes, and I have the feeling this is quite high, without any reasonable explanation to support my intuition. The expected value seems to be in the order of seconds. Three repeats for would imply 4 minute, 8 and then 16 minutes:

[google-appengine] Re: Pushed my site with deploy but old one remains

2018-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, You app's logs shows errors similar to: methodName: "google.appengine.v1.Versions.CreateVersion" "status: { code: 3 details: [ 0: { @type: "type.googleapis.com/google.rpc.BadRequest" fieldViolations: [ 0: { description: "Value

[google-appengine] Re: Error when deploying to Flex - Timed out waiting for the flex deployment to become network provisioned

2018-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Alexandre, It is difficult to offer support directly in this Group, as confidential, project-related information is needed to start investigating, and then progress is not always visible. You are at an advantage posting in the Public Issue Tracker ,

[google-appengine] Re: Pushed my site with deploy but old one remains

2018-11-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, The error remains: "INFO: Previous default version is an automatically scaled standard environment app, so not stopping it. "Are you using manual scaling or automatic scaling in your app.yaml? If you're using manual scaling, App Engine will try to keep instances alive indefinitely

[google-appengine] Re: Python 3.7 service killed after exceeding memory limit

2018-11-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Is your Cron handler deployed in the Standard or Flexible Environment? You seem to use a B4 instance class. To determine whether the instance class is indeed at the origin of these errors, you may consider upgrading to a higher instance class, and see if this makes any difference, and if then

[google-appengine] Re: Pushed my site with deploy but old one remains

2018-11-20 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Nikos, You should be able to manage versions and set the default one in the Developers' Console, navigating to App Engine --> Versions, where you can stop the unwanted version and start the preferred one. You may read more on the "Testing and Deploying your Application" documentation page

[google-appengine] Re: Dev env outputting HTML to console on error

2018-11-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Andy, There is no handy command to stop displaying error messages in case of error, as these messages are generally considered useful in debugging. You can scroll quickly through the Cloud Shell window with Ctrl-Shift-PageUp / Ctrl-Shift-PageDn (Windows and Linux) or Fn-Shift-Up /

[google-appengine] Re: nginx client_body_buffer_size increase

2018-11-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jörg, This is a warning, not an actual error. It is known to Developers, but there are no definite plans to address it in the near future. If you feel this is of importance to you, and a solution will address an actual problem you are affected by, you are encouraged to open a new issue

[google-appengine] Re: [flex] Is there a way to call the HTTPS URL in cron?

2018-11-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Paul, At the moment, there is no way to force cron to call to the HTTPS URL. There is already a feature request with similar contents in the Public Issue Tracker, called "cron.yaml - no option for https only ". It offers some insight in the

[google-appengine] Re: Domain Wide Delegation not working on 2nd generation GAE (Python 3)

2018-11-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Marc, You seem to write on G Suite development matters; this forum is meant for Google Cloud Platform development. You may check the "G Suite Developer" page for specific help. If you intend to develop on GCP indeed, you may have a look at the

Re: [google-appengine] Re: env: Flex ; runtime: Java ; with NodeJs ?

2018-11-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Henry, There is no clear estimate on an implementation date for Java 11. You can check the "Java on Google App Engine" page from time to time. It would be counterproductive to provide guesses on issue dates, as these may change at the

[google-appengine] Re: env: Flex ; runtime: Java ; with NodeJs ?

2018-11-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Deepak, It all depends on how do you plan to structure your app's services. If you opt for microservices, code can be deployed to these services independently, and different services can be written in different languages, such as Python, Java, Go, and PHP. You may gather more detail

Re: [google-appengine] Re: Does GAE support tags?

2018-11-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joshua, Your latest specifications have been included in the same PIT issue mentioned above, so you may monitor developments and fixes on the same thread. -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: What is the actual maximum number of versions?

2018-11-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nikhil, Your issue seems different from this thread's initial one. It is worthwhile treating it as a new issue, that depends on your project's situation and setup. Addressing it might require your project number, and other private details, that are only protected if you open a similar

[google-appengine] Re: Innovative idea

2018-11-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sivakumar, Would you like to see special search engines implemented, one for each profession? How would these search engines differ from one another? What advantages would a professional enjoy, when using the search engine dedicated to her/his profession? How would you define the

[google-appengine] Re: GAE Flex Nodejs deploy failing

2018-11-07 Thread 'George (Cloud Platform Support)' via Google App Engine
This is an ongoing issue that is expected to be addressed very soon. You may follow developments and fixes in this thread. Your patience meanwhile is highly appreciated. -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: GAE PHP deploy failing

2018-11-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Brad, Instead of CLI script, does calling this command from your code succeed? What happens if you use something in the line of: Route::get('/clear-cache', function() { $exitCode = Artisan::call('cache:clear'); }); As mentioned, you are better off asking for coding advice in forums

Re: [google-appengine] Re: GAE Logger triggers StackOverflowError

2018-11-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joshua, Providing statistics implies that parameters such as issue complexity and priority level are made publicly available. This is not the case. How would statistics provide more information than a simple parameter such as priority level? If the value of this parameter is, let's say,

[google-appengine] Re: GAE PHP deploy failing

2018-11-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Brad, Have you tried deploying our old app, prior to the simple code change that is only an UI tweak? Does it deploy without error? There are no issues with the service on the Google Cloud Platform, service is offered at usual parameters, so you should't be affected by any

Re: [google-appengine] Re: Error 302 running cron and login:admin in app.yaml in google app engine

2018-10-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Your cron correctly calls /hellocron. The 302 error is returned from the call, so your handler needs attention, not cron. Error code 302 means "Found: Resource temporarily located elsewhere according to the Location header". You may read more detail on the "HTTP Status and Error Codes for

<    1   2   3   4   5   6   7   8   9   >