[google-appengine] App engine standard java8 - how to add health check for instances?

2018-09-27 Thread Roman Mašek
Is it possible to implement a custom health-check for instances in App Engine Standard? I tried to configure liveness-check and readiness-check, but these seem to be supported only in flex environment. The reason I would like to do this is that recently we ran into following issue several

[google-appengine] App engine standard java8 - health check for instances?

2018-09-12 Thread Roman Mašek
Hi, Is it possible to implement a custom health-check for standard engine instances? I tried to configure liveness-check and readiness-check, but these seem to be supported only in flex environment. The reason I would like to do that is that recently we ran into following issue several times:

[google-appengine] Re: Testing locally theTaskQueue

2017-07-27 Thread Roxana Ioana Roman
Reversing the order of the two dependencies did the trick. Apparently, starting from Maven 2.0.9 order of dependecies matters, where the first declared dependency has priority. On Tuesday, 25 July 2017 23:00:06 UTC+3, George (Cloud Platform Support) wrote: > > Have you tried to exclude the

[google-appengine] Re: Testing locally theTaskQueue

2017-07-25 Thread Roxana Ioana Roman
it to use the right one? Thanks! On Tuesday, 25 July 2017 17:50:32 UTC+3, Roxana Ioana Roman wrote: > > In order to do some unit tests for a method that uses the TaskQueue, I > have included the following dependencies in my pom: > > > > com.google.appengine

[google-appengine] Re: Testing locally theTaskQueue

2017-07-25 Thread Roxana Ioana Roman
Running mvn dependency:tree -Ddetail=true gives +- org.hsqldb:hsqldb:jar:2.3.2:runtime On Tuesday, 25 July 2017 20:16:23 UTC+3, Roxana Ioana Roman

[google-appengine] Re: Testing locally theTaskQueue

2017-07-25 Thread Roxana Ioana Roman
Hi, yes I tried using the version directly and also tried other newer versions on hsqldb including 2.4.0. I saw the answers on stackoverflow and tried scope: test, runtime, compile. Same error, unfortunately. On Tuesday, 25 July 2017 19:55:28 UTC+3, George (Cloud Platform Support) wrote: > >

[google-appengine] Testing locally theTaskQueue

2017-07-25 Thread Roxana Ioana Roman
In order to do some unit tests for a method that uses the TaskQueue, I have included the following dependencies in my pom: com.google.appengine appengine-testing ${appengine.target.version} test com.google.appengine appengine-api-stubs ${appengine.target.version} test where the

[google-appengine] Setting datasource's maximumPoolSize with a HikariDataSource on AppEngine with Cloud SQL

2017-06-08 Thread Roxana Ioana Roman
Hello, I am a bit confused regarding setting the optimal connections pool size (dataSource.setMaximumPoolSize(maxPoolSize)). Correct me if my judgement is wrong. Instances on AppEngine have only a single core. Given that, the optimal max number of threads is 2 per instance (i.e. 2 per core).

[google-appengine] Re: Cron doesn't start

2017-06-01 Thread Roxana Ioana Roman
directory that contains a WEB-INF directory." > > The WEB-INF is located in the folder web within my project > /Users/shachar/server_project/*web*/WEB-INF, how can I tell update_cron > where is the right folder? > > Best > Shachar > > On Thursday, June 1, 2017 at 5:2

[google-appengine] Re: Cron doesn't start

2017-06-01 Thread Roxana Ioana Roman
> > > repsai-tickets-retrieval > /tasks/repsai/retrieve_tickets > > > > ObjectifyFilter > com.googlecode.objectify.ObjectifyFilter > > > ObjectifyFilter > /* > >

[google-appengine] Re: Cron doesn't start

2017-06-01 Thread Roxana Ioana Roman
Are your cron jobs visible in App Engine -> Task Queues -> Cron Jobs? If not, you have to run update_cron. Can you add your web.xml and the Servlet which handles these cron jobs? Your second cron job does not have a which means the job will run on the default service . Roxana On Thursday, 1

[google-appengine] Re: Synchronizing between different Cloud Sql tables with GooglePubSub or TaskQueue

2017-05-30 Thread Roxana Ioana Roman
le to pass >> messages across a distributed system in order to keep data eventually >> consistent without relying on message order being preserved. It requires >> special care in designing your data model, but can be a good alternative to >> service-to-service calls and ti

[google-appengine] Synchronizing between different Cloud Sql tables with GooglePubSub or TaskQueue

2017-05-30 Thread Roxana Ioana Roman
Moving to a micro-service architecture, I have separated an AppEngine module into two services (the big one and a smaller one, still part of the same AppEngine project). Next, I want to separate the database into two, so allowing the small micro-service to have only the needed tables in its

[google-appengine] Synchronizing between different cloud sql tables using Google PubSub or Task Queue

2017-05-30 Thread Roxana Ioana Roman
Moving to a micro-service architecture, I have separated an AppEngine module into two services (the big one and a smaller one, still part of the same AppEngine project). Next, I want to separate the database into two, so allowing the small micro-service to have only the needed tables in its

[google-appengine] Re: EVERY task queue fails since 1st Feb 2016

2016-02-03 Thread Marcial Roman
I believe this comment is quite relevant in existing Issue 12073 : SSL Error in every call that GAE application makes to a secure server On Wednesday,

[google-appengine] Re: Can't access a local mongodb database. Keeps getting access denied (java.lang.RuntimePermission modifyThreadGroup)

2015-03-15 Thread Marcial Roman
App Engine sandbox environment imposes some restrictions on what can be done. As it is stated in public documentation [1]: ... you must use one of the methods on ThreadManager to create your threads. You cannot invoke new Thread() yourself or use the default thread factory

[google-appengine] Re: Machine system clock is incorrect ??

2015-02-09 Thread Marcial Roman
As announced before community support is moving to Stack Overflow. [1] I will recommend you to post this specific question on Stack Overflow. Simply post your question tagging it with google-app-engine, and a member of our support team or a member of our global developer community will

[google-appengine] Dev Server deployment exception: Caused by: com.google.apphosting.utils.config.AppEngineConfigException: Application directory 'xxx.war' must exist and be a directory.

2015-01-08 Thread Roman Schönbichler
I'm using the latest GAE java sdk and eclipse plugins for eclipse luna. My project consists of Java modules using maven (like here https://github.com/GoogleCloudPlatform/appengine-modules-sample-java). When I'm trying to deploy the ear project from eclipse, I'm getting this exception:

[google-appengine] reference static resource in different module in local dev setup

2014-10-28 Thread Roman Schönbichler
hey there, I've setup my app to make use of the module concept. I have a welcome and a user module. In my welcome module I'm serving my js dependencies for my single page app. In the user module I'm including those files to make use of browser caching and so on. so in my welcome index.html i

[google-appengine] eclipse maven module project missing jar

2014-10-06 Thread Roman Schönbichler
Hi all, I've created an application with different modules using maven. Therefore I followed this appengine-modules-sample-java https://github.com/GoogleCloudPlatform/appengine-modules-sample-java layout. Then I added a module, called base, which compiles as a jar and all other modules

[google-appengine] Costs of an e-commerce built on GAE

2012-10-02 Thread Roman Steiner
With the idea of an online shop on GAE in mind. If coded right, with proper caching and concurrent requests, what should I expect for the costs in the new pricing model? I didn't find any success stories involving e-commerce on GAE (should that be a hint?). Let's say I got 500 visitors each

[google-appengine] Re: java.lang.ClassNotFoundException: com.google.appengine.tools.enhancer.Enhance

2012-03-30 Thread Roman Shafigullin
Hi tuco, Open project properties in Eclipse / Java Build Path / Libraries / Select invalid libs and remove them GL On Sunday, February 13, 2011 10:43:52 AM UTC+4, tuco wrote: Hi All, As soon as I create a Google Web application project, it immediately reports error: Could not find the

[appengine-java] Re: Python url fetch against java appengine servlet

2011-03-31 Thread Roman Nurik
Just found this thread from a Google search. I was running into the same problem; after switching to Python 2.7 this problem seems to have gone away. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email

[appengine-java] using getObjectByIds in SDK 1.3.6

2010-09-04 Thread Roman
Hi, I am trying to use PersistenceManager.getObjectByIds() method in order fetch multiple object at once. 1. Is it supported by appengine? 2. If yes, which keys should I pass to the collection? For the single object I use the following call: pm.getObjectById(A.class, name) 3. Is it possible to

[appengine-java] inconsistent behavior of jdoPostLoad in appengine

2010-08-30 Thread Roman
Hi, I am using SDK 1.3.6. I noticed the following inconsistencies when using JDO. Consider the following example: @PersistenceCapable public class A implements LoadCallback { @Persistent @PrimaryKey public String key; @Persistent public String payload; @NotPersistent public

[appengine-java] Re: wrong redirection to google sites

2009-12-28 Thread Roman
error and also was able to create it once more. After few minutes it started to work again. br, Roman On Dec 24, 12:33 pm, Didier Girard didier.gir...@gmail.com wrote: Hello Don, I have the same problem for my web site:www.onGWT.com. I hope you can find the team that can help us to solve

[appengine-java] Re: hijacked domain

2009-12-28 Thread Roman
error and also was able to create it once more. After few minutes it started to work again. br, Roman On Dec 24, 6:36 pm, atomi at...@verizon.net wrote: Thanks Didier that is a better place for this discussion. Vik I'll do my best to answer your question there. On Thu, Dec 24, 2009 at 12:21 AM

[appengine-java] Cron job fired up twice

2009-11-04 Thread Stefan Roman
Hi All, My crontab is defined in the following way: ?xml version=1.0 encoding=UTF-8? cronentries cron url/cron/sendnotifs/url descriptionSend notification at 9 every Mon, Tue, Wed, Thu, Fri/ description scheduleevery mon,tue,wed,thu,fri 09:00/schedule

[google-appengine] A single StringListProperty or multiple StringPropertys? (GeoModel)

2009-08-03 Thread Roman N
/geomodel/ http://code.google.com/p/geomodel/source/browse/trunk/geo/geomodel.py Thanks, Roman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google

[google-appengine] Re: A single StringListProperty or multiple StringPropertys? (GeoModel)

2009-08-03 Thread Roman N
Answered here: http://stackoverflow.com/questions/1220794 Thanks Nick! On Aug 1, 11:07 am, Roman N api.roman.pub...@gmail.com wrote: Hi all, If you don't want to read this whole post, skip directly to 'QUESTION 1' and 'QUESTION 2' below. A bit of background first: GeoModel is a library I

[google-appengine] Re: Your application is exceeding a quota: Datastore Indices Count

2009-07-16 Thread Roman
Hi, I got the same issue and it is blocking the application. Please help. App id is roman-baglay Thank you! On Jun 30, 10:59 pm, Alex Epshteyn alexander.epsht...@gmail.com wrote: I should add that thisquotamessage doesn't seem to be impacting theapplicationin any way (i.e

[google-appengine] Your application is exceeding a quota: Datastore Indices Count

2009-07-16 Thread Roman
I got a problem Your application is exceeding a quota: Datastore Indices Count Application id is roman-baglay Please help! Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post

[google-appengine] How expensive are queries

2009-01-19 Thread Roman
I get warnings in my app that some requests used high amount of CPU (2000ms, roughly 1 times over CPU limit). Those requests require a few queries, e.g.: 5 of WHERE a=b type, each returning 1 object 1 of WHERE ANCESTOR IS :parent foo ORDER BY bar DESC returning 5 objects 2 of Model.ref_set type

[google-appengine] Re: How expensive are queries

2009-01-19 Thread Roman
I guess it's too expensive. I memcached the first 5 and it made a big difference. On Jan 19, 11:49 am, Roman roman.budzianow...@gmail.com wrote: I get warnings in my app that some requests used high amount of CPU (2000ms, roughly 1 times over CPU limit). Those requests require a few queries

[google-appengine] Re: versions share db?

2009-01-12 Thread Roman
you are modifying your v2 datastore (otherwise, you wouldn't need different datastores per app version). You would have to merge somehow the data from v1 to v2 before switching to v2. On Jan 12, 1:46 pm, Roman roman.budzianow...@gmail.com wrote: It appears that different versions of an app

[google-appengine] versions share db?

2009-01-11 Thread Roman
It appears that different versions of an app share the db. Do they share other stuff? Is it possible to have a separate db for each version? A pointer to a precise definition of what constitutes a version of an app would be appreciated (http://code.google.com/ appengine/docs/configuringanapp.html