[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-16 Thread Panayiotis Lipiridis
oki.. that worked, I just had to add it to the list. But is it possible to redirect automatically to www as it does with the http (no SSL works)? We used to have that setting under Google Apps for Work console.. but now I cannon find it in the new one. Where do we setup the automatic redirects

[google-appengine] Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Naresh Pokuri
I am implementing CQRS model on GAE. So, as per the design whatever commands we publish on aggregate will generate one or more Events and publish. Those events has to be handled asynchronously. At the same time the event handling Sagas can generate new commands required to update other

[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-16 Thread Panayiotis Lipiridis
I didn't find out how could I redirect from naked SSL domain to www for example. (https://example.com >> https://www.example.com) On Wednesday, September 16, 2015 at 4:19:06 AM UTC+2, Darshan-Josiah Barber wrote: > > Nope, that wasn't the issue; it was already taken care if in step 7. >

[google-appengine] Problems in Data Base

2015-09-16 Thread Дмитрий Пермяков
Hello! We are facing the problem. We stores model with StructuredProperty field with repeated attribute. Recently, one model object has 3 of this structured property objects. However, now we see that this field has already 6 and 3 of them are None. If we log this fields in the python code we

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Wolfram Gürlich
You could first save your event/command as an entity and delete that entity at the same time you apply your event/command in a cross-group transaction. Wolfram -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this

[google-appengine] Re: Problems in Data Base

2015-09-16 Thread Дмитрий Пермяков
Forgot that our application name is doubleb-automation-production среда, 16 сентября 2015 г., 14:56:49 UTC+3 пользователь Дмитрий Пермяков написал: > > Hello! > > We are facing the problem. We stores model with StructuredProperty field > with repeated attribute. Recently, one model object has 3

[google-appengine] Re: Problems in Data Base

2015-09-16 Thread Patrice (Cloud Platform Support)
Hi, This would actually be more appropriate for our issue tracker , if I understood your issue correctly (you're exp The issue tracker is where we file and work on defect reports and feature requests, while the google group is more used

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Wolfram Gürlich
Simply write the "event" entity at the same time (or immediately before) you enqueue the processing task. Inside the processing task first read the entity and only do the processing if the entity is still there. Since that entity is deleted if and only if your model is updated successfully

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Naresh Pokuri
Sorry, I didn't get you. How this solution will stop running same command/event multiple times? On Wednesday, 16 September 2015 16:01:34 UTC+5:30, Wolfram Gürlich wrote: > > You could first save your event/command as an entity and delete that > entity at the same time you apply your

[google-appengine] Re: Old versions of Managed VMs

2015-09-16 Thread Christian F. Howes
Hi Jeff, >From what i can see managed VMs behave much like app engine modules that use backend instance class and manual scaling - which means they stay live when you deploy a new version, and even after setting default. I'm still using the "old" app engine console, and when i delete an old

[google-appengine] Re: Old versions of Managed VMs

2015-09-16 Thread Michael Spainhower
I am using managed vms and also have the issue of non-default versions running residual instances. However, I do not experience the issue you have described where the instances remain even after deleting the non-default versions. Are you using a standard runtime or custom runtime

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Naresh Pokuri
Okay. One final question if you worked with Push Task Queues - Is there a chance that duplicate task runs at the same time the actual task running or duplicate tasks won't run until actual task completes? Thanks for your help On Wednesday, 16 September 2015 23:12:51 UTC+5:30, Wolfram Gürlich

[google-appengine] Traffic migrate between versions is stuck

2015-09-16 Thread Joachim Stokke
Hi guys! I've got myself in a bind here. I accidentally deployed a java 8 compiled version to app engine, and then hit the migrate traffic button.. The traffic migration is now stuck, because the new version is not working (or at least that's what I presume is why it's stuck). I also cannot

[google-appengine] Re: Old versions of Managed VMs

2015-09-16 Thread Jeff Schnitzer
Interesting. Maybe I just didn't wait long enough after deleting the nondefault versions. Still, it's a small surprise that I have to prune old versions. With normal GAE, I leave those versions around so I can go back through the logs when necessary. Jeff On Wed, Sep 16, 2015 at 1:03 PM,

[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-16 Thread tom saffell
Thank you for making the change - it's much appreciated! I tried to add our naked domain. It instructed me to add some type A DNS records, with host "@". I tried adding the records on name.com (our registrar and DNS provider) and got an error "The Record Host field is invalid." Anyone have

Re: [google-appengine] Re: Frontend Instance Hours quota

2015-09-16 Thread Nick (Cloud Platform Support)
Hey Evgeny, Yes, that sounds like what's needed here. You unlock a higher tier of free quota just by signing up, although you can use the App Engine daily budget to set a limit of 0, meaning your service will simply hard-error if the quota fills up to the point of incurring a charge. Of course

Re: [google-appengine] Re: I'm seeing 500 status and 204 error code.

2015-09-16 Thread Nick (Cloud Platform Support)
Hey Nicolas, No worries, glad to have been of help! Best of luck with the next step. Sincerely, Nick On Tuesday, September 15, 2015 at 8:17:59 AM UTC-4, Nicolas Enriquez wrote: > > Great that'll very good for us. I'll do it. > In fact, it could be a great idea for all apps. Maybe app engine's

[google-appengine] Re: Traffic migrate between versions is stuck

2015-09-16 Thread Nick (Cloud Platform Support)
Hey Joachim, This definitely seems like something that shouldn't occur. If the new version has fatal errors, the infrastructure managing the migration should detect this and back off, eventually terminating the migration status. Feel free to open a public issue tracker issue

[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-16 Thread husayt
Hi Lorne, naked domains been mentioned here, which is a big problem. We really need to get that resolved. Also naked domains for GCS hosted static websites (Non ssl, since ssl is not available there) is a huge issue. Would be great if Google would support SSL and naked domains on all range

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Wolfram Gürlich
I doubt this ever happens but I'm not really sure. To handle that case you should start the transaction before reading the event entity. That way the transaction will abort should the event entity have been deleted concurrently by another task. Wolfram -- You received this message because

[google-appengine] Re: Announcing SSL for GAE Custom Domains in the Developers Console

2015-09-16 Thread Lorne Kligerman
Thanks for all the quick feedback! No downtown was expected or took place during this migration and launch. The work involved here didn't touch the basics of how the applications are being served, but just the configuration. @PK, good catch on the reference to the old UI, we'll get that

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Naresh Pokuri
But here I am using Datastore(sorry for not mentioning earlier) and it is eventual consistent. So, reading inserted event may not be found (or) reading deleted event may be still found On Wednesday, 16 September 2015 22:29:46 UTC+5:30, Wolfram Gürlich wrote: > > Simply write the "event" entity

[google-appengine] Re: Implementing CQRS with Task Queue(Push Queue)

2015-09-16 Thread Wolfram Gürlich
Only reading from an index is eventual consistent. Getting an entity by its id (name) is strongly consistent (if not explicitly configured otherwise). Wolfram -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group