[google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Attila-Mihaly Balazs
I'm happy that you managed to change over to google cloud storage quickly and without too much of an issue. Blobstore is deprecated and should be avoided as much as possible. Out of curiosity: was it the case that you were creating an upload url from one project while the cloud storage bucket

[google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread 中村智
Thank you Attila-Mihaly Balazs. Yes, I use the url one-time only. Until October, my program was able to upload files from the URL created by "blobstore.create_upload_url", I guess the URL stopped working after this November. So, I changed my program to use Google Cloud Storage, and it works

Re: [google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Attila-Mihaly Balazs
Hi Henry, I'm sorry, I still don't understand the relation of the question to GKE. In my understanding the original question refers to blobstore (https://cloud.google.com/appengine/docs/standard/python/blobstore/) which is a deprecated/legacy storage solution that is only available inside of

Re: [google-appengine] Re: Unable to complete Tutorial on Google Compute Engine

2018-11-12 Thread Dos Branding
The first time you open Compute Engine on the right sidebar it guides you to start the tutorial. That’s what I followed. On Mon, Nov 12, 2018 at 5:13 PM 'Amit (Google Cloud Support)' via Google App Engine wrote: > Hello Dos, > > Did you follow any official tutorial / documentation from Google?

Re: [google-appengine] Re: Unable to complete Tutorial on Google Compute Engine

2018-11-12 Thread 'Amit (Google Cloud Support)' via Google App Engine
Hello Dos, Did you follow any official tutorial / documentation from Google? if Yes, Please provide us the link so we can check and take necessary action to change the wrong information or update if required. On Friday, November 9, 2018 at 4:51:23 PM UTC-5, Dos Branding wrote: > > Hi

[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] Google App Engine Java deployment with gcloud skips almost all files

2018-11-12 Thread 'Dan S (Cloud Platform Support)' via Google App Engine
You can follow this example: https://cloud.google.com/appengine/docs/standard/java/config/appref#automatic_scaling_min_pending_latency On Monday, November 12, 2018 at 7:32:47 AM UTC-5, Attila-Mihaly Balazs wrote: > > There is a deploy.version paramter for the Maven goal: >

Re: [google-appengine] Python 3.7 and Dajngo 2.x

2018-11-12 Thread 'Stewart Reichling' via Google App Engine
Looks like Rahul dropped the link. Here it is: https://cloud.google.com/python/django/appengine On Saturday, November 10, 2018 at 6:01:34 PM UTC-8, Rahul Ravindran wrote: > > Not an exact match, but close - Here is a sample with Django, python 3.7 > and cloudsql > > > On Sat, Nov 10, 2018 at

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

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

2018-11-12 Thread Henry Pan
Great answer:>) Any ETA to run Java 11 in the App Engine? *Thanks* *Henry Pan* DevOps Architect | Dito henry@ditoweb.com | PHONE: (425) 802-3975 [image: Dito Logo.png] On Mon, Nov 12, 2018 at 8:21 AM 'George (Cloud Platform Support)' via Google App Engine

[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: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Henry Pan
Wow Sorry Attila, My silly question is that should the similar issue happens on GKE, is your advice still apply? *Thanks* *Henry Pan* DevOps Architect | Dito henry@ditoweb.com | PHONE: (425) 802-3975 [image: Dito Logo.png] On Mon, Nov 12, 2018 at 4:52 AM

[google-appengine] Re: Unable to connect to deploy meteor app

2018-11-12 Thread Pierre Vinay
Now I've the same erro that I had before I post : > node build.js || nodejs build.js make: Entering directory '/app/programs/server/node_modules/fibers/build' CXX(target) Release/obj.target/fibers/src/fibers.o ../src/fibers.cc: In static member function 'static void Fiber::DestroyOrphans()':

[google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Attila-Mihaly Balazs
Hi Henri, Sorry, I'm having trouble understanding the question "whether this is 'URLs' also true for GKE as well". When you say "blobstore.create_upload_url" I'm assuming that you're talking about the "blobstore" service which is a deprecated (but still running) service available in Google

[google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Henry Pan
Saluting Attila from Redmond, Would you pls also advice whether this is 'URLs' also true for GKE as well? Thanks in advance + Happy Monday ' Henry Pan On Monday, November 12, 2018 at 4:39:34 AM UTC-8, Attila-Mihaly Balazs wrote: > > URLs created with "blobstore.create_upload_url" are one-time

[google-appengine] Re: url created by blobstore.create_upload_url not work.

2018-11-12 Thread Attila-Mihaly Balazs
URLs created with "blobstore.create_upload_url" are one-time only (so you can't reuse them) and also time-limited (so you can't wait very long for using it). Are you using the generated URL only once and without waiting for a long time? Attila -- You received this message because you are

Re: [google-appengine] Google App Engine Java deployment with gcloud skips almost all files

2018-11-12 Thread Attila-Mihaly Balazs
There is a deploy.version paramter for the Maven goal: https://cloud.google.com/appengine/docs/standard/java/tools/maven-reference#appenginedeploy Attila -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and

[google-appengine] url created by blobstore.create_upload_url not work.

2018-11-12 Thread 中村智
Until October, I was able to upload files from the URL created by "blobstore.create_upload_url", but this created URL no longer responds back this morning. Have there been any specification changes? -- You received this message because you are subscribed to the Google Groups "Google App