[google-appengine] Re: Exceeded soft private memory limit of 128 MB with 128 MB after servicing 238 requests total

2017-08-02 Thread Attila-Mihaly Balazs
Hello Richard,

What programming language/framework are you using? Please note that even 
though you might not "be doing anything" explicitly, the framework might 
have some caching logic (for example Jinja2 template cache) in the 
background that can lead to memory leaks. As they say: "an unbounded cache 
is just an other name for a memory leak" :-).

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/257f9efb-0c94-4000-aba3-e711c1bd1b65%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Create Django Superuser in GAE Flexible

2017-08-02 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
You can find the details of how to "createsuperuser" 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, 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/596f15c9-29cb-49d1-8915-735cb26c47ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Create Django Superuser in GAE Flexible

2017-08-02 Thread Mike Hardy
Hi There, I've been scouring the internet trying to figure out how to 
create a Django superuser in GAE Flexible environment, but there aren't 
many answers, so it leads me to believe that it is very simple and I am 
just completely lost. Can some kind soul tell me where/how to 
createsuperuser?

Thanks!
Mike

-- 
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/f70f2126-16ad-490a-9fc2-e19b302f1dba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Datastore structure for app like Google Forms?

2017-08-02 Thread asmith26
Very interesting idea. Many thanks for your detailed answer!

On Wednesday, August 2, 2017 at 6:05:59 PM UTC+1, Jordan (Cloud Platform 
Support) wrote:
>
> There does not seem to be any limit for Datastore Kinds 
> . Essentially 
> you would have one 'Form' Kind. When someone creates a new main Form entity 
> via your application you then make that main Form available to other user's 
> via your application. 
>
> When a user fills out the main Form via your application, you then save a 
> copy of that Form entity for that user, and save their email or ID to the 
> new copied Form entity.  
>
> Each Form will have multiple Section entities, and each Section will have 
> multiple Question entities. The user then interacts with their own Form's 
> Question entities (organized into Sections like Google Forms). 
>
>
> *- Datastore Kinds:*
>
>- *Form:*
>   - User's email who filled out. (null if this is the Main form to be 
>   copied by other users). 
>   - Title.
>   - Ordered list of Section entity IDs.
>   - Background image URL. 
>   - other settings etc..
>- *Section:*
>   - Parent = a Form entity.
>   - Title.
>   - Ordered list of Question entity IDs.
>- *Question Kinds*:
>   - *MultipleChoice:*
>  - Parent = a Section entity.
>  - List of choices.
>  - Chosen choices by user. 
>   - *CheckBoxes:*
>  - Parent = a Section entity.
>  - List of options for checkboxes.
>  - Chosen options by user. 
>   - *Paragraph:*
>  - Parent = a Section entity.
>  - Paragraph String.
>   - etc...
>
>
> - NOTE: This is my own interpretation of how you would implement Google 
> Forms with the Datastore, and is in no way a reflection of how it is 
> actually implemented. 
>
>

-- 
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/204d571b-8f5a-40ff-8d25-cf9f354790fe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: New SSL doesn't work

2017-08-02 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Then you cannot take this shortcut and must concatenate the relevant files. 
This is an important step of the process that cannot be skipped.

On Tuesday, August 1, 2017 at 3:12:29 PM UTC-4, Borislav Arapchev wrote:
>
> Yannick
>
> Google Cloud Console doesnt accept the bundle 
>
> it says
>
> *Error*
>
> *The SSL certificate provided could not be inserted.*
>

-- 
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/8e04f51d-1b4c-4a78-9fcb-cb52470818f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: What is the google issue tracker process.

2017-08-02 Thread 'Jesse Scherer (Google Cloud Support)' via Google App Engine
Hi Toby,

On Tuesday, August 1, 2017 at 1:51:18 PM UTC-4, Torbjørn Smørgrav wrote:
>
> I've reported a problem with Java8 that has been confirmed by the first 
> triage. Now three weeks has gone and I would like to know what I can expect 
> in terms of response to the ticket.
>

In this specific case, thank you for flagging. We escalated internally, 
which got us to notice that it was related to issue 64282261 

 

>
> Regardless of my current issue - what is the process for issues?
>
> * How many levels of triage is there? 
>

My colleagues on the support team triage issues and file them with the 
appropriate engineering team. Beyond there, the details of triage are 
really down to the individual team's process, so I cannot answer in general 
terms. But if it helps your mental model, at least two, of which the first 
phase is largely about collecting lot of information while the bug is fresh 
then getting a corresponding bug to the right team.
 

> * Do the various priorities have an SLA?
>

They do not. I'm not sure that we are systematically setting priorities on 
new issues, though the ones imported from Google Code had priority settings 
all over the map, largely because users could just set label to give an 
issue a new priority. 
 

> * Will a ticket be designated some state so I can reason about if I can 
> wait for the fix or not (e.g. won't fix, or later)?
>

For defect reports, yes. Right now that process is manual and delay-prone, 
so we're looking at some automatic state synchronization.

For nontrivial feature requests that question is much less clear, since 
it's very common for what seems like a standalone feature request to be 
tied up with a much bigger initiative (which we tend not to disclose until 
it's in beta).
 

>
> Thanks,
> -Toby
>
>
Regards,
Jesse 

-- 
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/5fa014a3-cd1f-4b8c-aa9d-894ac34af2d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Handling API versioning issue

2017-08-02 Thread 'Eric So' via Google App Engine
Thanks. Take a look at it now.

Eric So

> On Aug 2, 2017, at 10:47 AM, 'George (Cloud Platform Support)' via Google App 
> Engine  wrote:
> 
> Hi Eric, 
> 
> For related versioning information you may consider checking the "Cloud 
> Endpoints API versioning features" sub-chapter of the "API life cycle 
> management" page 
> . 
> 
> -- 
> 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/wcnWOjK-k2Q/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/a1e34d0b-809c-4b53-b241-0dd12c058489%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/802F9DF3-9D11-43CB-BEA5-851AD2F172F8%40google.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Handling API versioning issue

2017-08-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Eric, 

For related versioning information you may consider checking the "Cloud 
Endpoints API versioning features" sub-chapter of the "API life cycle 
management" page 
. 

-- 
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/a1e34d0b-809c-4b53-b241-0dd12c058489%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Django flexible app not getting connected with postgres instance

2017-08-02 Thread 'Shivam(Google Cloud Support)' via Google App Engine


Google Groups is meant for general product discussions only and not for 
technical support. I suggest to post this on one of the Stack Exchange 
sites as explained here 
. Make sure that you 
select the right tags.



On Wednesday, August 2, 2017 at 9:50:53 AM UTC-4, BrainPlow Administrator 
wrote:
>
> Currently I am trying to deploy a Django app on Google App Engine(GAE). 
> All goes well and app is deployed, but when it gets deployed, its 
> connection with Postgres instance lost. I don't know why this happening. 
> following is my *settings.py* file.
>
> DATABASES = {
> 'default': {
> 'ENGINE': 'django.db.backends.postgresql_psycopg2',
> 'NAME': 'dbname',
> 'USER': 'username',
> 'PASSWORD': 'password',
>
> }}# In the flexible environment, you connect to CloudSQL using a unix 
> socket.# Locally, you can use the CloudSQL proxy to proxy a localhost 
> connection# to the instance
> DATABASES['default']['HOST'] = '/cloudsql/'if 
> os.getenv('GAE_INSTANCE'):
> passelse:
> DATABASES['default']['HOST'] = '100.107.126.241'
>
> When i run it locally, it's making connection with google cloud Postgres 
> as i have given ipv4 address to make connection, but as soon as i deploy it 
> on *GAE*, following error comes while accessing database.
> Is the server running locally and accepting connections on Unix domain 
> socket 
> "/cloudsql/shopnroar-175407:us-central1:snr-instance1/.s.PGSQL.5432"?
>
> here is my *app.yaml*
>
> # [START runtime]
> runtime: python
> env: flex
> entrypoint: gunicorn -b :$PORT SNR.wsgi
>
> env_variables:
> # Replace user, password, database, and instance connection name with the 
> values obtained
> # when configuring your Cloud SQL instance.
> SQLALCHEMY_DATABASE_URI: >-
>   
> postgresql+psycopg2://user:password@/shopnroar?host=/cloudsql/
> beta_settings:
> cloud_sql_instances: shopnroar-175407:us-central1:snr-instance1
>
> runtime_config:
>   python_version: 2# [END runtime]
>
> Can anybody help me in this regard. i am stuck here for previous two days. i 
> was working on heroku before it. i am new here. i love to work with google 
> but this error has stuck me here for two days.
>
>
>
>
>

-- 
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/fcc34da2-6d46-4770-b15c-69867ae75825%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Datastore structure for app like Google Forms?

2017-08-02 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
Essentially you would have one 'Form' Kind. When someone creates a new main 
Form entity via your application you then make that main Form available to 
other user's via your application. 

When a user fills out the main Form via your application, you then save a 
copy of that Form entity for that user, and save their email or ID to the 
new copied Form entity.  

Each Form will have multiple Section entities, and each Section will have 
multiple Question entities. The user then interacts with their own Form's 
Question entities (organized into Sections like Google Forms). 

Note: There does not seem to be any limit for Datastore Kinds 
.

*- Datastore Kinds:*

   - *Form:*
  - User's email who filled out. (null if this is the Main form to be 
  copied by other users). 
  - Title.
  - Ordered list of Section entity IDs.
  - Background image URL. 
  - other settings etc..
   - *Section:*
  - Parent = a Form entity.
  - Title.
  - Ordered list of Question entity IDs.
   - *Question Kinds*:
  - *MultipleChoice:*
 - Parent = a Section entity.
 - List of choices.
 - Chosen choices by user. 
  - *CheckBoxes:*
 - Parent = a Section entity.
 - List of options for checkboxes.
 - Chosen options by user. 
  - *Paragraph:*
 - Parent = a Section entity.
 - Paragraph String.
  - etc...
   


-- 
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/b6a20a14-69e3-42fd-9865-283b2f42c695%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Where to edit source code in gcp

2017-08-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nagaraja, 

A local development server is specifically offered for situations like 
yours, when one needs to develop and test Go code on the local machine, 
before finally deploying it to the Cloud. You can read relevant information 
with further leading links on the "The Go Development Server 
" 
documentation page. 

The majority of pure Go packages work on Google App Engine. A package may 
not work because of one of these reasons:

The package imports syscall or unsafe.
The package uses cgo or assembly.
The package requires functions in packages that are locked down, such as 
writing to disk, or direct network access.

You can find more information in the Go Blog 
. 

If you enjoy using IDEs for development, it may be of interest to know that 
there is one being developped, called "Gogland 
". 

-- 
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/6db90b57-8aaf-47a6-bb21-63dcb88def95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Memcache problems (eu west)

2017-08-02 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello, as laid out in the Google Cloud Status Dashboard FAQ 
 the issues might not be 
publicized to the dashboard if they affect a limited number of customers

On Wednesday, August 2, 2017 at 3:37:39 AM UTC-4, Ashley Finney wrote:
>
> Hi,
> I don't see an incident on this page 
> https://status.cloud.google.com/summary
> A partner of ours was experiencing this problem and were a bit in the dark 
> about what was happening.
> Is there another page which details live status problems?
> Many thanks,
> Ash.
>
> On Friday, 28 July 2017 15:11:21 UTC+1, Yannick (Cloud Platform Support) 
> wrote:
>>
>> There was an issue with elevated error rate for Google App Engine 
>> Memcache service for European applications which has been resolved for 
>> all affected projects. We will conduct an internal investigation of this 
>> issue and make appropriate improvements to our systems to help prevent or 
>> minimize future recurrence.
>>
>> On Friday, July 28, 2017 at 9:06:16 AM UTC-4, Ruben Schwarz wrote:
>>>
>>> Same on our project.
>>>
>>> Magically the error disappeared at ~8:30 UTC.
>>>
>>> Any idea what's the cause of this problem?
>>>
>>> Am Freitag, 28. Juli 2017 09:28:19 UTC+2 schrieb Linus Larsen:

 Lately I'm getting a lot of these (java, standard env):

 com.google.appengine.api.memcache.MemcacheServiceApiHelper$RpcResponseHandler
  
 handleApiProxyException: Memcache putAll: Unknown exception setting 1 
 keys: 
 Memcache is temporarily unavailable. (MemcacheServiceApiHelper.java:68 
 
 )

 I've seen this before however not as frequent, now it happens every 
 minute but not on every request.

 Is there any work going on or is something really broken with Memcache 
 in Europe-west region?




   
  

>>>
>>> Besuchen Sie unseren Chrome Webshop unter shop.cloudwuerdig.com
>>>
>>> www.sotec.eu | www.cloudwuerdig.com 
>>> -- 
>>> SOTEC Software Entwicklungs GmbH + Co Mikrocomputertechnik KG 
>>> Calwer Straße 11, D-75395 Ostelsheim 
>>> Sitz Ostelsheim, Amtsgericht Stuttgart HRA 330821/HRB 330664, 
>>> Geschäftsführer: Florian Holz 
>>> Cloudwürdig® ist eine eingetragene Marke der SOTEC Software Entwicklungs 
>>> GmbH + Co Mikrocomputertechnik KG
>>>
>>> Der Inhalt dieser e-Mail ist ausschließlich für den bezeichneten 
>>> Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat dieser e-Mail 
>>> oder dessen Vertreter sein sollten, so beachten Sie bitte, dass jede Form 
>>> der Kenntnisnahme, Veröffentlichung, Vervielfältigung oder Weitergabe des 
>>> Inhalts dieser e-Mail unzulässig ist. Wir bitten Sie, sich in diesem Fall 
>>> mit dem Absender der e-Mail in Verbindung zu setzen.
>>>
>>> The content of this e-mail is meant exclusively for the person to whom 
>>> it is addressed. If you are not the person to whom this e-mail is addressed 
>>> or his/her representative, please be informed, that any form of knowledge, 
>>> publication, duplication or distribution of the content of this e-mail is 
>>> inadmissible. We ask you, therefore, in such a case to please contact the 
>>> sender of this e-mail.
>>>
>>>

-- 
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/390ed683-7127-4977-9a5c-31d76515590e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Django flexible app not getting connected with postgres instance

2017-08-02 Thread BrainPlow Administrator
Currently I am trying to deploy a Django app on Google App Engine(GAE). All 
goes well and app is deployed, but when it gets deployed, its connection 
with Postgres instance lost. I don't know why this happening. following is 
my *settings.py* file.

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'dbname',
'USER': 'username',
'PASSWORD': 'password',

}}# In the flexible environment, you connect to CloudSQL using a unix 
socket.# Locally, you can use the CloudSQL proxy to proxy a localhost 
connection# to the instance
DATABASES['default']['HOST'] = '/cloudsql/'if 
os.getenv('GAE_INSTANCE'):
passelse:
DATABASES['default']['HOST'] = '100.107.126.241'

When i run it locally, it's making connection with google cloud Postgres as 
i have given ipv4 address to make connection, but as soon as i deploy it on 
*GAE*, following error comes while accessing database.
Is the server running locally and accepting connections on Unix domain 
socket "/cloudsql/shopnroar-175407:us-central1:snr-instance1/.s.PGSQL.5432"?

here is my *app.yaml*

# [START runtime]
runtime: python
env: flex
entrypoint: gunicorn -b :$PORT SNR.wsgi

env_variables:
# Replace user, password, database, and instance connection name with the 
values obtained
# when configuring your Cloud SQL instance.
SQLALCHEMY_DATABASE_URI: >-
  
postgresql+psycopg2://user:password@/shopnroar?host=/cloudsql/
beta_settings:
cloud_sql_instances: shopnroar-175407:us-central1:snr-instance1

runtime_config:
  python_version: 2# [END runtime]

Can anybody help me in this regard. i am stuck here for previous two days. i 
was working on heroku before it. i am new here. i love to work with google but 
this error has stuck me here for two days.




-- 
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/abc448cf-a4ca-472e-b75c-4c3f45260481%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: New SSL doesn't work

2017-08-02 Thread Blaine Garrett
>
> But after that all the SSL checkers see *only my old SSL certificate*


It is possible that it will take several hours to propagate the change,
similar to dns changes. For me, it took up to 30 minutes for SSLLabs to
reflect the change.

Also, if your your old certificate is listed in the GAE console still, you
will need to uncheck "Enable SSL for the following custom domains". Be sure
it is checked for the new certificate.

Cheers,
~ Blaine



On Tue, Aug 1, 2017 at 2:12 PM, Borislav Arapchev 
wrote:

> Yannick
>
> Google Cloud Console doesnt accept the bundle
>
> it says
>
> *Error*
>
> *The SSL certificate provided could not be inserted.*
>
> --
> 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/0sQRiXOiR4M/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/8d0562c5-9b54-4054-841f-
> f4812274c313%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/CAH4s%3DymqSbBPq88XT7%3DoTz-LVP7rEPLJpEtTqRxeOg7EwTZ%2BOg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Datastore structure for app like Google Forms?

2017-08-02 Thread asmith26


I'm building a web app for allowing users to create online forms through a 
GUI, but I am unsure how to structure my database (similar to Google Forms 
).


My ideas are:

   - 1 Kind for the forms designed by users, 1 Kind for the data containing 
   completed forms.
   - Alternatively, I've recently come across the Fear of Adding Tables 
   . Thus I could create a new Kind 
   for every form created by users:
   - Do you know if Datastore allows for *separate databases* to segregate 
  kinds by e.g. user?
  - Does datastore have a *limit on the number of Kinds* allowed?
   
Any better ideas? Many 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/52371ab4-fb4f-434e-a204-7553b5a3d54b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Memcache problems (eu west)

2017-08-02 Thread Ashley Finney
Hi,
I don't see an incident on this page https://status.cloud.google.com/summary
A partner of ours was experiencing this problem and were a bit in the dark 
about what was happening.
Is there another page which details live status problems?
Many thanks,
Ash.

On Friday, 28 July 2017 15:11:21 UTC+1, Yannick (Cloud Platform Support) 
wrote:
>
> There was an issue with elevated error rate for Google App Engine 
> Memcache service for European applications which has been resolved for 
> all affected projects. We will conduct an internal investigation of this 
> issue and make appropriate improvements to our systems to help prevent or 
> minimize future recurrence.
>
> On Friday, July 28, 2017 at 9:06:16 AM UTC-4, Ruben Schwarz wrote:
>>
>> Same on our project.
>>
>> Magically the error disappeared at ~8:30 UTC.
>>
>> Any idea what's the cause of this problem?
>>
>> Am Freitag, 28. Juli 2017 09:28:19 UTC+2 schrieb Linus Larsen:
>>>
>>> Lately I'm getting a lot of these (java, standard env):
>>>
>>> com.google.appengine.api.memcache.MemcacheServiceApiHelper$RpcResponseHandler
>>>  
>>> handleApiProxyException: Memcache putAll: Unknown exception setting 1 keys: 
>>> Memcache is temporarily unavailable. (MemcacheServiceApiHelper.java:68 
>>> 
>>> )
>>>
>>> I've seen this before however not as frequent, now it happens every 
>>> minute but not on every request.
>>>
>>> Is there any work going on or is something really broken with Memcache 
>>> in Europe-west region?
>>>
>>>
>>>
>>>
>>>   
>>>  
>>>
>>
>> Besuchen Sie unseren Chrome Webshop unter shop.cloudwuerdig.com
>>
>> www.sotec.eu | www.cloudwuerdig.com 
>> -- 
>> SOTEC Software Entwicklungs GmbH + Co Mikrocomputertechnik KG 
>> Calwer Straße 11, D-75395 Ostelsheim 
>> Sitz Ostelsheim, Amtsgericht Stuttgart HRA 330821/HRB 330664, 
>> Geschäftsführer: Florian Holz 
>> Cloudwürdig® ist eine eingetragene Marke der SOTEC Software Entwicklungs 
>> GmbH + Co Mikrocomputertechnik KG
>>
>> Der Inhalt dieser e-Mail ist ausschließlich für den bezeichneten 
>> Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat dieser e-Mail 
>> oder dessen Vertreter sein sollten, so beachten Sie bitte, dass jede Form 
>> der Kenntnisnahme, Veröffentlichung, Vervielfältigung oder Weitergabe des 
>> Inhalts dieser e-Mail unzulässig ist. Wir bitten Sie, sich in diesem Fall 
>> mit dem Absender der e-Mail in Verbindung zu setzen.
>>
>> The content of this e-mail is meant exclusively for the person to whom it 
>> is addressed. If you are not the person to whom this e-mail is addressed or 
>> his/her representative, please be informed, that any form of knowledge, 
>> publication, duplication or distribution of the content of this e-mail is 
>> inadmissible. We ask you, therefore, in such a case to please contact the 
>> sender of this e-mail.
>>
>>

-- 
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/e37d4302-3096-4123-b0f1-4fe5b24f5031%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.