[google-appengine] Re: Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread Linh T.
Hi Attila,

I re-send output (file attached)

-- 
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/d458464d-78ed-4859-addd-6640e9ca038d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread Linh T.



Hi Attla,

I use GAE Standard, screenshot from dashboard.  


Could you list the top 20 files for example (by size) from your /tmp 
> directory? Something like:
>
> du -a /tmp 2>/dev/null | sort -gr | head -n20
>

This is output:

> 128 /tmp36 /tmp/dotnet-installer32 /tmp/tmpLL2RSP32 
> /tmp/dotnet-installer/.dotnet20 
> /tmp/dotnet-installer/.dotnet/optimizationdata16 /tmp/tmp.FCMuxpIW8F16 
> /tmp/metadata.go16 /tmp/dotnet-installer/.dotnet/optimizationdata/2.0.012 
> /tmp/dotnet-installer/.dotnet/optimizationdata/2.0.0/debian.9-x648 
> /tmp/tmppwp2Ip8 /tmp/tmp.FCMuxpIW8F/configurations8 
> /tmp/dotnet-installer/.dotnet/optimizationdata/2.0.0/debian.9-x64/dotnet4 
> /tmp/tmux-10004 /tmp/tmp.FCMuxpIW8F/configurations/config_cloudshell-253224 
> /tmp/tmp.FCMuxpIW8F/active_config4 /tmp/npm-427-3430096d4 
> /tmp/hsperfdata_root4 
> /tmp/dotnet-installer/.dotnet/2.0.0_MachineId.dotnetUserLevelCache4 
> /tmp/dotnet-installer/.dotnet/2.0.0_IsDockerContainer.dotnetUserLevelCache4 
> /tmp/b63773568.patch


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/570a878a-2944-4193-84ae-fe5728549cfa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread Attila-Mihaly Balazs
Hello,

Just to clarify - you're using Google App Engine (GAE) Flexible, right? 
Because using GAE standard you can't SSH into the instances which are 
running your code.

Could you list the top 20 files for example (by size) from your /tmp 
directory? Something like:

du -a /tmp 2>/dev/null | sort -gr | head -n20

Cheers,
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/fbb8895c-873f-4848-b5f6-e52abd656d1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread Linh T.
Hi George,

Thanks for reply!

Does your disc belong to a compute engine instance?
>
No, i don't use compute engine.

If you use the app engine, what is the output of the gcloud info command? 

> gcloud infoGoogle Cloud SDK [201.0.0]Platform: [Linux, x86_64] ('Linux', 
> 'cs-6000-devshell-vm-0a549b2f-e336-4f48-bd86-a2d2e6923d35', 
> '3.16.0-6-amd64', '#1 SMP Debian 3.16.56-1+deb8u1 (2018-05-08)', 'x86_64', 
> '')Python Version: [2.7.13 (default, Nov 24 2017, 17:33:09) [GCC 6.3.0 
> 20170516]]Python Location: [/usr/bin/python2]Site Packages: 
> [Disabled]Installation Root: [/google/google-cloud-sdk]Installed 
> Components: datalab: [20180503] kubectl: [] container-builder-local: [] 
> pubsub-emulator: [2018.02.02] core: [2018.05.11] app-engine-java: [1.9.63] 
> app-engine-python: [1.9.69] app-engine-php: [ ] docker-credential-gcr: [] 
> app-engine-python-extras: [1.9.69] beta: [2017.09.15] gsutil: [4.31] 
> cloud-datastore-emulator: [1.4.1] cbt: [] alpha: [2017.09.15] gcd-emulator: 
> [v1beta3-1.0.0] app-engine-go: [] bq: [2.0.33]
>

Do you actually use the G Suite?  
>
No, i also don't use G Suite.

 Do you make calls to the Datastore API? 
>
No, i don't use Datastore API. i write flask app, which hosted on GAE. This 
is code in flask.
And i use ab benchmark from local to test API. i try to test with ab -c 10 
-n 1 -k https://

from google.appengine.ext import ndb
>
> class UserController():
> token_jose = None
>
> def __init__(self):
> pass
>
> def create_user(self):
> usr = Account(first_name='test', last_name='test')
> usr.put()
>
> class Account(ndb.Model):
> first_name = ndb.StringProperty()
> last_name = ndb.StringProperty()
>  
>
> On Friday, May 18, 2018 at 12:40:00 AM UTC+7, George (Cloud Platform 
Support) wrote:
>
> More information is needed on your disc and your app's architecture.
>
Web app -> GAE Standard (host API) -> Datastore.

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/71331dc2-5bb0-45cb-92ed-1d70eef94be1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-17 Thread Brian de Alwis
On 17-May-2018, at 9:14 PM, Grass CFA  wrote:
> This is what I have on the Google Cloud Tools settings on Eclipse. If I have 
> unchecked the "Choose SDK" option the SDK Location area was greyed out, so 
> that it stopped me specifying a different SDK location here.

This location is used by Cloud Tools for Eclipse to (1) deploy to GCP and (2) 
to access the development local server (`dev_appserver`) to run and debug App 
Engine Standard apps locally.

> I couldn't find anywhere I can reference the App Engine SDK jars. Are the 
> servlet api and jsp api sufficient for an App Engine project to run? This is 
> really confusing me.

Use the "Google Cloud Libraries" library group.  See the following for details:

https://cloud.google.com/eclipse/docs/libraries

Brian.

-- 
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/F97A1B2B-0D11-4949-86A5-CF5B76CD3147%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-17 Thread Grass CFA
Hi all,

Thanks for all that you have replied!

This is what I have on the Google Cloud Tools settings on Eclipse. If I 
have unchecked the "Choose SDK" option the SDK Location area was greyed 
out, so that it stopped me specifying a different SDK location here.




I have successfully run a Hello World Google App Engine Standard Java 
project. The project structure is as below. I didn't include the App Engine 
API and obviously the App Engine SDK Jar file is not included either. But 
the project still compiled and ran. The App Engine Standard Runtime only 
contains the servet and jsp api jar files. I couldn't find anywhere I can 
reference the App Engine SDK jars. Are the servlet api and jsp api 
sufficient for an App Engine project to run? This is really confusing me.




Thanks!

Cheers,


On Friday, May 18, 2018 at 5:02:13 AM UTC+10, George (Cloud Platform 
Support) wrote:
>
> What makes you think that the Eclipse automatically uses the SDK jar files 
> from the local Maven repository? 
>
> In any case, you can select the SDK installation you prefer. In the 
> Eclipse Preferences dialog, the Google Cloud Tools setting shows the Google 
> Cloud SDK configuration. When the Choose SDK checkbox is clear, then Cloud 
> Tools for Eclipse is managing the SDK. You can choose right there the 
> version of the SDK you prefer, and the way this is managed. The 
> illustration to be seen on the "Managing the SDK for Your Project" 
> documentation page  
> should be quite helpful. 
>

-- 
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/08753726-b9cf-4d63-b5ea-86f9f5b45b9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Using App Engine Flexible behind a CDN (Fastly)

2018-05-17 Thread 'George (Cloud Platform Support)' via Google App Engine
Is Fastly a must for your architecture? You may consider using Google Cloud 
CDN  instead. 

-- 
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/edaea4d7-fdef-472d-8624-c56e2467ba05%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: google app engine slow and timing out

2018-05-17 Thread Valerio M
forget to mention, it's node.js

On Thursday, May 17, 2018 at 10:12:42 PM UTC+1, Valerio M wrote:
>
> Hey,
> I deployed an app yesterday. First time on GAE.
> Not sure what's going on. The same app works on heroku.
> The / loads extremely slowly. the main js file may load in  mins sometime. 
> I modified the resources, # of instances, disabled health check... nothing. 
> Always getting nginx 502
>
> I tried plugging in to the docker instance and do a docker log but it 
> seems that  only get the health check queries. at the moment i am running 
> with 1 instance only, not sure why i do not see any request from docker.
>
> I've also put a DEBUG variable in app.yaml, no good. The logs don't show 
> any info. It's like as if my requests get lost behind the firewall (nginx?).
>
> I am totally lost. All the debugging i've done following various tutorials 
> is useless. Any help greatly appreciated.
>
> regards,
>
> Valerio
>
>
>

-- 
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/006aaedd-2345-4508-9ef5-48c9bc04e1a1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: RDP Error

2018-05-17 Thread 'Digil(Google Cloud Platform Support)' via Google App Engine
Hello, 

By looking at the screenshot you have provided, the error message appears 
to be related to a recent policy change updated by the Microsoft 
.
 
It also seems like a widely spread issue, affecting Windows Server 
instances regardless of their location or hosting platform. I have a seen a 
discussion 

 
thread in the Microsoft community where root cause analysis and workaround 
for this issue have been provided. 


-- 
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/4273dcaa-108b-41f4-a159-fd7590f8b809%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] google app engine slow and timing out

2018-05-17 Thread Valerio M
Hey,
I deployed an app yesterday. First time on GAE.
Not sure what's going on. The same app works on heroku.
The / loads extremely slowly. the main js file may load in  mins sometime. 
I modified the resources, # of instances, disabled health check... nothing. 
Always getting nginx 502

I tried plugging in to the docker instance and do a docker log but it seems 
that  only get the health check queries. at the moment i am running with 1 
instance only, not sure why i do not see any request from docker.

I've also put a DEBUG variable in app.yaml, no good. The logs don't show 
any info. It's like as if my requests get lost behind the firewall (nginx?).

I am totally lost. All the debugging i've done following various tutorials 
is useless. Any help greatly appreciated.

regards,

Valerio


-- 
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/f834eade-303e-40fe-9051-5781f35acf68%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-17 Thread Vitaly Bogomolov
Hi, Steren

Our goal is to enable it by default in the future.
>

Good news.

What about google.appengine.ext.testbed.init_datastore_v3_stub() ? Is it 
also will be touched by these changes?

WBR, Vitaly

>

-- 
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/00b6c157-f8f0-4c60-8886-463d7d69163b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-17 Thread 'George (Cloud Platform Support)' via Google App Engine
What makes you think that the Eclipse automatically uses the SDK jar files 
from the local Maven repository? 

In any case, you can select the SDK installation you prefer. In the Eclipse 
Preferences dialog, the Google Cloud Tools setting shows the Google Cloud 
SDK configuration. When the Choose SDK checkbox is clear, then Cloud Tools 
for Eclipse is managing the SDK. You can choose right there the version of 
the SDK you prefer, and the way this is managed. The illustration to be 
seen on the "Managing the SDK for Your Project" documentation page 
 should be quite helpful. 

-- 
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/b2fac338-72ff-4898-8abf-3400f4e031eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] gcloud beta app deploy : This deployment has too many files

2018-05-17 Thread Ani Hatzis
Ok, beta makes sense then and maybe it's really just a bug. If your code is 
public I could try to deploy myself into a temporary project and see if the 
deployment gives me the same error. Have you ever used Cloud Shell 
? It makes reproducing such 
steps very easy and it comes with pre-installed tools. Just to be sure the 
problem is not related to the local environment, e.g. outdated or broken 
Cloud SDK.

Regards,
Ani


On Thursday, May 17, 2018 at 5:07:42 PM UTC+2, Lourdu rajan wrote:
>
> Hi Ani Hatzis,
>
> Thanks for your reply.
>
> I am trying to publish my code as Endpoint Services in Google Flex 
> Environment. Currently Endpoint backend deploy methodlogy is in beta 
> version. So "gcloud beta app deploy" command used for deploying my code 
> into the Flex environment. 
>
> I also tried to publish the code with specifying the app.yaml file in the 
> gcloud command (i.e. gcloud beta app deploy app.yaml), but still got the 
> same issue.
>
> If you would like, then I may be share the code.
>
> Also implemented below items inthis code,
>
> - Swagger Docs
> - OpenAPI file for Endpoint
> - OAuth Security in OpenAPI file as Security Definition
> - Encode/Decode for Database credentials in app.yaml
> - Swagger Project structure
>
> Do you think any of these item may cause for this issue?, because your 
> sample code from Git 
> works
>  
> fine for me. 
>
> Regards
> Lourdu Rajan G
>
> On Thu, May 17, 2018 at 3:39 AM, Ani Hatzis  > wrote:
>
>> Hi,
>>
>> well, that doesn't sound like 10,000+ files. If it's a bug you could file 
>> a report in the Public Issue Tracker . 
>> Is there a particular reason that you use gcloud *beta* app deploy 
>> instead of gcloud app deploy? The first one gives you the commands that 
>> are still in beta, the latter one the commands that are GA. And my last 
>> question: Do you have used gcloud beta app deploy with nothing else? I 
>> believe that if you don't specify the location, e.g. gcloud app deploy 
>> src/app.yaml, the command will try to automatically detect where the app 
>> is, and maybe it gets confused and tries to upload some other path with 
>> 10,000+ files.
>>
>> Good luck,
>> Ani
>>
>> On Wednesday, May 16, 2018 at 9:11:36 PM UTC+2, Lourdu rajan wrote:
>>>
>>> Hi Ani Hatzis,
>>>
>>> Thanks for your reply.
>>>
>>> I don't have any process like file storage or file processing. Just 
>>> trying to deploy my code into the Google app engine flexible environment, 
>>> which 
>>> has basic functionality and it's reference. Like, app.yaml, openapi.yaml, 
>>> app.js, db.js, package.json and node modules (reference). I checked the 
>>> file size of each files, its all just below 250 kB.
>>>
>>> Any other solutions/suggestions please.
>>>
>>> Regards,
>>> Lourdu Rajan G
>>>
>>> On Wed 16 May, 2018, 12:02 AM Ani Hatzis,  wrote:
>>>
 Does your app deployment indeed include more than 10,000 files? You 
 cannot deploy an app with more than 10,000 files. The deployment is 
 supposed to contain mainly code and configuration files. You probably want 
 to also host a bunch of other files (images, PDFs etc.) and have added 
 them 
 to the deployment, I guess. You would not include them in the deployment. 
 Instead you can host these files in Cloud Storage 
  or Firebase Hosting 
 .

 On Tue, May 15, 2018 at 7:01 PM Lourdu rajan  
 wrote:

> I got the below error, when I tried to deploy my Google Cloud Flex 
> Environment Endpoint project (NodeJs) through gcloud command (gcloud beta 
> app deploy).
>
> ERROR: (gcloud.beta.app.deploy) INVALID_ARGUMENT: This deployment has 
> too many files. New versions are limited to 1 files for this app.- 
> '@type': type.googleapis.com/google.rpc.BadRequest fieldViolations:  
> - description: This deployment has too many files. 
>
> -- 
> 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-appengi...@googlegroups.com.
> To post to this group, send email to google-a...@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/83d04d8f-8642-4f28-a55d-4c5ae89b1f08%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
 -- 
 You 

[google-appengine] Re: Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread 'George (Cloud Platform Support)' via Google App Engine
Does your disc belong to a compute engine instance? Do you make calls to 
the Datastore API? Do you actually use the G Suite? More information is 
needed on your disc and your app's architecture. 

If you use the app engine, what is the output of the gcloud info command? 

-- 
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/57a1fb51-d2e7-4113-a3ed-1de23ff327d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] gcloud beta app deploy : This deployment has too many files

2018-05-17 Thread Lourdu rajan
Hi Ani Hatzis,

Thanks for your reply.

I am trying to publish my code as Endpoint Services in Google Flex
Environment. Currently Endpoint backend deploy methodlogy is in beta
version. So "gcloud beta app deploy" command used for deploying my code
into the Flex environment.

I also tried to publish the code with specifying the app.yaml file in the
gcloud command (i.e. gcloud beta app deploy app.yaml), but still got the
same issue.

If you would like, then I may be share the code.

Also implemented below items inthis code,

- Swagger Docs
- OpenAPI file for Endpoint
- OAuth Security in OpenAPI file as Security Definition
- Encode/Decode for Database credentials in app.yaml
- Swagger Project structure

Do you think any of these item may cause for this issue?, because your
sample code from Git
works
fine for me.

Regards
Lourdu Rajan G

On Thu, May 17, 2018 at 3:39 AM, Ani Hatzis  wrote:

> Hi,
>
> well, that doesn't sound like 10,000+ files. If it's a bug you could file
> a report in the Public Issue Tracker .
> Is there a particular reason that you use gcloud *beta* app deploy
> instead of gcloud app deploy? The first one gives you the commands that
> are still in beta, the latter one the commands that are GA. And my last
> question: Do you have used gcloud beta app deploy with nothing else? I
> believe that if you don't specify the location, e.g. gcloud app deploy
> src/app.yaml, the command will try to automatically detect where the app
> is, and maybe it gets confused and tries to upload some other path with
> 10,000+ files.
>
> Good luck,
> Ani
>
> On Wednesday, May 16, 2018 at 9:11:36 PM UTC+2, Lourdu rajan wrote:
>>
>> Hi Ani Hatzis,
>>
>> Thanks for your reply.
>>
>> I don't have any process like file storage or file processing. Just
>> trying to deploy my code into the Google app engine flexible environment, 
>> which
>> has basic functionality and it's reference. Like, app.yaml, openapi.yaml,
>> app.js, db.js, package.json and node modules (reference). I checked the
>> file size of each files, its all just below 250 kB.
>>
>> Any other solutions/suggestions please.
>>
>> Regards,
>> Lourdu Rajan G
>>
>> On Wed 16 May, 2018, 12:02 AM Ani Hatzis,  wrote:
>>
>>> Does your app deployment indeed include more than 10,000 files? You
>>> cannot deploy an app with more than 10,000 files. The deployment is
>>> supposed to contain mainly code and configuration files. You probably want
>>> to also host a bunch of other files (images, PDFs etc.) and have added them
>>> to the deployment, I guess. You would not include them in the deployment.
>>> Instead you can host these files in Cloud Storage
>>>  or Firebase Hosting
>>> .
>>>
>>> On Tue, May 15, 2018 at 7:01 PM Lourdu rajan  wrote:
>>>
 I got the below error, when I tried to deploy my Google Cloud Flex
 Environment Endpoint project (NodeJs) through gcloud command (gcloud beta
 app deploy).

 ERROR: (gcloud.beta.app.deploy) INVALID_ARGUMENT: This deployment has
 too many files. New versions are limited to 1 files for this app.-
 '@type': type.googleapis.com/google.rpc.BadRequest fieldViolations:  -
 description: This deployment has too many files.

 --
 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-appengi...@googlegroups.com.
 To post to this group, send email to google-a...@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/ms
 gid/google-appengine/83d04d8f-8642-4f28-a55d-4c5ae89b1f08%
 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-appengi...@googlegroups.com.
>>> To post to this group, send email to google-a...@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/ms
>>> gid/google-appengine/CALdDuQ5KaTRA7f8RS%3D5yo%3DekvqgtZ9dSSr
>>> A9rSsKCSpisHZ6CA%40mail.gmail.com
>>> 
>>> .
>>> For 

Re: [google-appengine] Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-17 Thread Brian de Alwis
Hi.

I find it helpful to think of the Cloud SDK as "programs for manipulating and 
emulating GCP resources".  It doesn't include the APIs and client libraries.

Although the `app-engine-java` component would seem to install the App Engine 
SDK for Java, that installation is an internal implementation detail to the 
Cloud SDK.  It just happens that some of those programs use jars and other 
resources included in the App Engine Java SDK and so it's bundled alongside.

But the Cloud SDK reserves the right to repackage and radically alter the 
`app-engine-java` component.  For example, the Java-based programs could be 
packaged using `jlink` and so the jars would no longer be necessary.

So development tools, such as Cloud Tools for Eclipse, must download and 
install canonical versions of the API jars and dependencies.

Brian.


> On 16-May-2018, at 7:58 PM, Grass CFA  wrote:
> 
> Hello George,
> 
> Thank you for your reply.
> 
> I have instlaled the Google Cloud Tool for Eclipse from Google Marketplace 
> following the instructions. Google Cloud SDK has also been downloaded and 
> installed separately.
> 
> My question was regarding to Google App Engine SDK. It seems the Eclipse 
> automatically uses the SDK jar files from the local Maven repository (see the 
> screenshot as above please) rather than the SDK that I downloaded and 
> installed separately. 
> https://cloud.google.com/appengine/docs/standard/java/download 
> 
> 
> Is it managed by the Google Cloud Tool for Eclipse (gcloud)? How can I 
> configure Eclipse to use the SDK that I downloaded and installed? I couldn't 
> find any instruction as to it.
> 
> Hope it was made clear to you.
> 
> Cheers,
> 
> 
> On Thursday, May 17, 2018 at 3:40:09 AM UTC+10, George (Cloud Platform 
> Support) wrote:
> There are other ways to install the Cloud SDK, the preferred one is in 
> conjunction with installing Cloud Tools for Eclipse. While installing the 
> tools, it searches your computer for the Cloud SDK. If it can't find the SDK, 
> then it automatically downloads the latest version of the SDK. It also 
> periodically checks for and installs updates as needed. Regarding the 
> reference to the SDK from Eclipse, you can either allow Cloud Tools for 
> Eclipse to automatically manage the SDK for you, or you can manage the SDK 
> yourself.
> 
> There is no duplicate work, as the Cloud Tools install searches your computer 
> for the Cloud SDK to reuse it. In short, you can download and install the SDK 
> separately, your work won't get wasted. You may check the "Managing the SDK 
> for Your Project" online document  
> for reference. 
> 
> 
> -- 
> 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/4642397c-a8b6-4d1e-a052-8f8f42d3fe10%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/6458AD7B-1B2F-4A71-8A29-774425C82D16%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google App Engine Standard - OSError: [Errno 28] No space left on device

2018-05-17 Thread Linh T.
Hi guys,

Currently, i have met issue about disk data on GAE.


test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   24G  4.4G  85% /
> test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   20G  8.2G  72% /
> test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   22G  6.6G  77% /
> test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   26G  2.1G  93% /
> test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   27G  1.1G  97% /
> test@gae-5482:~$ df -h /tmp
> Filesystem  Size  Used Avail Use% Mounted on
> none 30G   30G 0 100% /
>
>
After i test performance, API (hosted on GAE) -> Datastore.
I call API from local (my laptop).

I check with cmd: df -h /tmp. Disk be full 30/30gb and then I not do 
anything, anh re-check df -h /tmp more times, data disk changed more time.
I don't know that why data disk changed and how to delete or flush it or 
increase size for data disk (GAE standard does not have this feature).

Please help me!
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/fd2d5de3-21a7-4f11-8b4a-55bbe4ba273e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] RDP Error

2018-05-17 Thread Apurba Dutta
While taking remote access to our VM instance we are getting rdp error 
mentioned below and attached screenshot

An authentication error has occurred 
The function requested is not supported
This could be due to Credssp encryption oracle remedition

what is the solution for this please suggest
Thanks in Advance

-- 
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/4d37b920-08ce-4ef6-91aa-54b89ffc447a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-17 Thread Grass CFA
Hello George,

Thank you for your reply.

I have instlaled the Google Cloud Tool for Eclipse from Google Marketplace 
following the instructions. Google Cloud SDK has also been downloaded and 
installed separately.

My question was regarding to Google App Engine SDK. It seems the Eclipse 
automatically uses the SDK jar files from the local Maven repository (see 
the screenshot as above please) rather than the SDK that I downloaded and 
installed separately. 
https://cloud.google.com/appengine/docs/standard/java/download

Is it managed by the Google Cloud Tool for Eclipse (gcloud)? How can I 
configure Eclipse to use the SDK that I downloaded and installed? I 
couldn't find any instruction as to it.

Hope it was made clear to you.

Cheers,


On Thursday, May 17, 2018 at 3:40:09 AM UTC+10, George (Cloud Platform 
Support) wrote:
>
> There are other ways to install the Cloud SDK, the preferred one is in 
> conjunction with installing Cloud Tools for Eclipse. While installing the 
> tools, it searches your computer for the Cloud SDK. If it can't find the 
> SDK, then it automatically downloads the latest version of the SDK. It also 
> periodically checks for and installs updates as needed. Regarding the 
> reference to the SDK from Eclipse, you can either allow Cloud Tools for 
> Eclipse to automatically manage the SDK for you, or you can manage the SDK 
> yourself.
>
> There is no duplicate work, as the Cloud Tools install searches your 
> computer for the Cloud SDK to reuse it. In short, you can download and 
> install the SDK separately, your work won't get wasted. You may check the 
> "Managing the SDK for Your Project" online document 
> for reference. 
>
>

-- 
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/4642397c-a8b6-4d1e-a052-8f8f42d3fe10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Error 403 with Android restricted Cloud Platform API key and Cloud Endpoints

2018-05-17 Thread Sandeep Dhameshia
Nope, nothing on this.

Alternatively, I tried Cloud Endpoints v2, with Firebase,
using EspAuthenticator.class authenticator. Did Anonymous login in
Firebase, got token. Passed that token to Endpoint method. It worked.
Though I had to take care of token expiration.

But again, this is not a good approach.

On Thu, May 17, 2018 at 8:21 AM, Thành Nguyễn Xuân 
wrote:

> I'm facing the same issue . Are you resolve it ?
>
> --
> 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/kN0MaIkeUC8/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/e55466ee-6221-45af-af0c-
> ba232f6e1d1a%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/CANKj8ETT-M3VLASgiEtKpnnfgQHUMvmK_3ngUMGpO3tnkONoDg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.