[google-appengine] Re: HR datastore is in readonly but there are no errors?

2015-04-10 Thread Gilberto Torrezan Filho
I'm having problems with my Datastore as well. I tried to rebuild my index with vacuum_indexes (didn't know it was a general problem) and got: Apr 10, 2015 5:17:53 PM com.google.appengine.tools.admin.AbstractServerConnection send1 WARNING: Error posting to URL:

[google-appengine] Where to submit BigQuery performance issues?

2014-12-18 Thread Gilberto Torrezan Filho
Hi, Today BigQuery is taking far more time to complete query jobs than usual. Two days ago a query of my system used to be executed within 6 seconds, today it is taking from 1 to 6 minutes (without any increase of the dataset). The BigQuery Google Groups

Re: [google-appengine] How to increase Task Queue Execution timing

2014-12-11 Thread Gilberto Torrezan Filho
I've used MapReduce myself for while, and I can say it to you: 100+MB of keys means A LOT of keys at the shuffle stage. And the real limitations of MapReduce are: The total size of all the instances of Mapper, InputReader, OutputWriter and Counters must be less than 1MB between slices. This is

[google-appengine] Re: como voltar para a conta gratis ?

2014-12-11 Thread Gilberto Torrezan Filho
(English below) -- Português Caro Contato Recompa, você está no fórum errado. Essa lista de discussão refere-se ao Google App Engine, produto da linha do Google Cloud Platform, que em nada tem a ver com o Google Apps, que parece ser o que você está se referindo. De qualquer maneira acredito

[google-appengine] Re: Trying to query the datastore

2014-12-11 Thread Gilberto Torrezan Filho
Here is the native datastore query for your problem if you want to try it out: DatastoreService ds = DatastoreServiceFactory.getDatastoreService(); Query query = new Query(Member.class.getSimpleName()); query.setFilter(new FilterPredicate(name, FilterOperator.EQUAL,

[google-appengine] Re: How to Increase Task queue Execution time

2014-12-11 Thread Gilberto Torrezan Filho
That's the default behavior of tasks: they execute over 10 minutes max. To increase that you need to setup a backend and make your tasks execute in that backend. I don't know which language you are using, but I'll link the java documentation about that:

Re: [google-appengine] How to increase Task Queue Execution timing

2014-12-11 Thread Gilberto Torrezan Filho
Actually I just migrated my statistics job from MapReduce to BigQuery (using the Datastore - Cloud Storage - BigQuery pattern) =) I strongly recommend the book Google BigQuery Analytics from Jordan Tigani and Siddartha Naidu if you plan to use or know more about BigQuery. I got mine at I/O

[google-appengine] A question about the future cloud monitoring (powered by Stackdriver)

2014-08-18 Thread Gilberto Torrezan Filho
Hi, I'd like to know if with the new monitoring tool for App Engine, powered by Stackdriver, I will be able to measure the performance of my mapreduce jobs, to help me finding out, for instance: - the ideal number of mapper/reducer shards, suitable for each kind of job I run; - the

[google-appengine] Will cloud Dataflows replace the MapReduce/Pipeline API?

2014-06-25 Thread Gilberto Torrezan Filho
Hi, At the keynote of the Google I/O this year was mentioned about a new API/service called Cloud Dataflow. Will it replace the current (and still in preview) MapReduce API? I don't want to have to refactory my code suddenly. Thanks. -- You received this message because you are subscribed

Re: [google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-28 Thread Gilberto Torrezan Filho
It seems to be fixed on 1.9.5. I just sent my multi-module project to App Engine (using Maven!) with no issues. -- 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

[google-appengine] Re: unable to compile MapReduceSpecification.of

2014-05-07 Thread Gilberto Torrezan Filho
Hi Pravanjan, Can you post the compiler error message? By the way, this kind of question is perfect to ask at StackOverflow ;-) -- 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

Re: [google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-07 Thread Gilberto Torrezan Filho
Confirmed: appcfg.sh update on 1.9.3 works as intended. I hope it gets fixed on next update. On Monday, May 5, 2014 8:48:50 PM UTC-3, Gilberto Torrezan Filho wrote: Hi Fernando, Thanks for your message (I was feeling lonely here =P). I'll check it out. Gilberto -- You received

[google-appengine] Re: Can google app engine support servlet 3.0?

2014-05-06 Thread Gilberto Torrezan Filho
Until the sun rises in the west and sets in the east. Until the rivers run dry, and the mountains blow in the wind like leaves… - Daenerys Targaryenhttp://en.wikipedia.org/wiki/Daenerys_Targaryenabout the Servlet 3.0 support on App Engine. On Sunday, May 4, 2014 11:11:40 AM UTC-3, 이찬형 wrote:

[google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-05 Thread Gilberto Torrezan Filho
Well, removing the symbolic links *helps* solving the issue, but sometimes the deployment still fails. It's like 1 success in 3-4 attempts. Always with the same symptom: stuck at 87% and sending files till the hard limit of 1 is reached. Deploying an app has become a painful experience. Is

Re: [google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-05 Thread Gilberto Torrezan Filho
Hi Fernando, Thanks for your message (I was feeling lonely here =P). I'll check it out. Gilberto -- 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] Error deploying application: loop at 87% on sending batch files

2014-05-02 Thread Gilberto Torrezan Filho
Hi, I'm having a weird problem when trying to deploy my application to App Engine. I'm running a Java application, and using Maven with Modules. My project structure was created by the skeleton-archetype, described here: https://developers.google.com/appengine/docs/java/tools/maven I have the

[google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-02 Thread Gilberto Torrezan Filho
, instead of the entire EAR. No luck, same behavior. I tried to deploy only the default module, using the appcfg.sh script directly (instead of mvn appengine:update), and still no luck. I'm running out of options. =/ On Friday, May 2, 2014 1:25:03 PM UTC-3, Gilberto Torrezan Filho wrote: Hi, I'm

[google-appengine] Re: Error deploying application: loop at 87% on sending batch files

2014-05-02 Thread Gilberto Torrezan Filho
Ok, since I'm the only talking in this thread (is the keyword Java the problem around here?), I'll describe what I did to kinda get it to work. Using an webapp directory, generated or not by Maven, I have the following structure: root (war) | - WEB-INF | | - classes (directory with bytecode

[google-appengine] Re: Request to not use Maven in GAE

2014-04-24 Thread Gilberto Torrezan Filho
I'd like to express my opinion about Maven as well: please continue supporting it to make the development and deployment as much IDE agnostic as possible. ... and make the GPE work seamlessly with Maven projects - today we have configuration issues and workarounds to make everything work

Re: [google-appengine] Google Cloud Endpoint initialization

2014-04-24 Thread Gilberto Torrezan Filho
Let me see if I understood correctly: are you saying a instance of my entire VM are launched every time a request is handled by the GCE engine? All my singleton classes (DAOs, default values, some utilities) are reinstantiated each request? I don't save sensitive state in memory (I use

[google-appengine] Re: Dev workflow for Modules + Maven

2014-04-22 Thread Gilberto Torrezan Filho
Hi, If you're using Eclipse, take a look at this topic: https://groups.google.com/forum/#!topic/google-plugin-eclipse/9K0RkQID740 Maven + app engine modules doesn't work quite well with Eclipse right now, and judging by the volume of messages in the topic above, I don't think we will see any

[google-appengine] Re: What is the most efficient way to compute a rolling median on appengine?

2013-11-13 Thread Gilberto Torrezan Filho
I miss some Redis functionality in App Engine as well. Memcache is just an unreliable cache to hold some data for while... nothing more. To make such calculations which iterate over large sets of data, I use backends with in-memory processing: loading part of the data from datastore into

[google-appengine] Re: billing: credit card card declined... for which account?!

2013-08-20 Thread Gilberto Torrezan Filho
The App Engine billing is messed up (I really think they just merged the code from the Google Wallet tested on Google I/O 2013 registration to the App Engine billing system). More info: https://groups.google.com/forum/#!topic/google-appengine/2KBxFeCGacA On Tuesday, August 20, 2013 7:32:11 PM

[google-appengine] Re: GAE BILLING IS SERIOUSLY MESSED UP

2013-08-20 Thread Gilberto Torrezan Filho
I just received an e-mail of failed payment today, for the second time in one week. There's nothing wrong with my card, according to my bank (I even received a SMS about the payment to GAE - I receive a SMS everytime the card is used). I reenabled the card waiting for it to succeed. Let's see

[google-appengine] GAE/J: Error creating a DatastoreServiceFactory with remote API 1.8.3

2013-08-09 Thread Gilberto Torrezan Filho
Hi there, I'm having problems starting a DatastoreServiceFactory with the remote API provided by the 1.8.3 SDK, using a standalone client. I'm using the code provided herehttps://developers.google.com/appengine/docs/java/tools/remoteapito authenticate, and simply calling

Re: [google-appengine] GAE Blobstore file-like API deprecation timeline (py 2.7 runtime) [XPOST from StackOverflow]

2013-08-07 Thread Gilberto Torrezan Filho
Ok, and how about the GCS client API itself? Is it experimental as well? (aka. are we going to be annoyed next month because the GAE Team took too much coffee and started to randomly break things just to annoy developers worldwide)? -- You received this message because you are subscribed to

Re: [google-appengine] GAE Blobstore file-like API deprecation timeline (py 2.7 runtime) [XPOST from StackOverflow]

2013-08-07 Thread Gilberto Torrezan Filho
Oh, I feel much safer now... -- 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

Re: [google-appengine] GAE/J - Completely lost on migrating from Files API to GCS Client Library

2013-07-25 Thread Gilberto Torrezan Filho
Hi Vinny P, Thank you for your reply. Indeed I'm having problems to activate the cloud integration for my project, due to this issuehttp://code.google.com/p/googleappengine/issues/detail?id=9602. I'll wait for a position from Google about it (a patch?) before creating more projects or trying

[google-appengine] GAE/J - Completely lost on migrating from Files API to GCS Client Library

2013-07-22 Thread Gilberto Torrezan Filho
Hi everyone, I'm very confused about what do I have to do to migrate from the now deprecated Files API to GCS Client Library. Before anything I'd like to express my complete dissatisfaction with the fact that I have to manage a second service from now on just to write files on the server.

[google-appengine] Error enabling cloud integration in existing application

2013-07-22 Thread Gilberto Torrezan Filho
Is the error described here on StackOverflowhttp://stackoverflow.com/questions/17365964/error-enabling-cloud-integration-in-existing-application-gaeaffecting anyone else? I'm worried about this issue and I'm starting to think it has something to do with my own application. I really don't want