[appengine-java] Some MapReduce questions.

2012-02-22 Thread markabrucey
Hi there, I am a MapReduce rookie, so I have a few questions to ask (sorry if they are silly questions): - What is the maximum input processing rate? - The docs say: - The aggregate number of entities processed per second by all mappers. Used to prevent large

[appengine-java] Re: Some MapReduce questions.

2012-02-22 Thread markabrucey
Never mind, I just found the announcement of the migration to stack overflow, Any replies are still appreciated though. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Some MapReduce questions.

2012-02-22 Thread markabrucey
I also found this which helps a lot: http://stackoverflow.com/questions/5494251/how-fast-is-google-app-engine-mapreduce -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Mappper Quota being reached.

2012-02-06 Thread markabrucey
Hi, I am running a small map reduce job over only 474 entities (as a test on my server). It appears that immediately (despite the fact all my quota should be replenished now) I am reaching my task queue quota: /mapreduce/mapperCallback 200 541ms 0kb AppEngine-Google;

[appengine-java] Re: Copying Entities to Another Application

2012-01-25 Thread markabrucey
Solved. The jobs were put into a default task que which must have been in paused status from the go. The jobs are now un-paused and it seems to be going through them nicely. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view

[appengine-java] Re: Copying Entities to Another Application

2012-01-25 Thread markabrucey
Solved. The jobs were put into a default task queue which must have been in paused status from the go. The jobs are now un-paused and it seems to be going through them nicely. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To

[appengine-java] /_ah/mapreduce/finalizejob_callback 404 - Copying Entities to Another Application

2012-01-25 Thread markabrucey
Hi there, I have been attempting to copy entities to another application and they have all seemed to copy correctly. However, the queue still has 83 tasks (which is the same number as the kinds I copied, so a task for each kind). The final 83 tasks are no longer making progress and the

[appengine-java] Re: /_ah/mapreduce/finalizejob_callback 404 - Copying Entities to Another Application

2012-01-25 Thread markabrucey
Well it is typical that I would go to lunch and the tasks in the queue have gone. I'm not sure what happened, but I'm sure I can still run my Mapper over the entities to test it. Thanks, Mark -- You received this message because you are subscribed to the Google Groups Google App Engine for

[appengine-java] Copying Entities to Another Application

2012-01-24 Thread markabrucey
Hi, I have recently created a new application to copy entities to from an older application. I have done this in order to test my map reduce jobs safely as I have seem to be un-able to get it working properly LOCALLY. (see:

[appengine-java] Problem Aborting MapReduce Job

2012-01-19 Thread markabrucey
Hi there, I have been following Ikai's blog (which I have found to be most useful, so thanks): http://ikaisays.com/2010/07/09/using-the-java-mapper-framework-for-app-engine/ It seems I have set things up properly with web.xml / mapreduce.xml my mapper class. However, there is a problem.

[appengine-java] Re: Problem Aborting MapReduce Job

2012-01-19 Thread markabrucey
Oh, I also see: Status ViewID NameActivityStart time Time elapsedControl

[appengine-java] Re: Problem Aborting MapReduce Job

2012-01-19 Thread markabrucey
... and my task queue for mapreduce: mapreduce http://192.168.0.56:8080/_ah/admin/taskqueue?queueName=mapreduce 5.0/s100 -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Problem Aborting MapReduce Job

2012-01-19 Thread markabrucey
I can remove the Jobs from the datastore and get rid of them that way, but this does not explain why my Jobs get stuck in RUNNING state and it never hits the break points in my Mapper class. I must have set something up slightly wrong, but I can't think what. Here is my xml: configurations

[appengine-java] Getting data from a specified Index.

2012-01-16 Thread markabrucey
Hi there, I am currently finding myself having to MapReduce over a lot of entities. I was just wondering if it is possible to MapReduce only over a specific index ( e.g. get all data for users that are in the following index: userID(ASC), userName(ASC), userAge(DESC) ) I hope this makes

[appengine-java] Re: Merging older queries with ancestor queries.

2011-10-28 Thread markabrucey
Sorry, the title of the post is meant to be written as: Merging older entities with entities that were created into an entity group. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Merging older queries with ancestor queries.

2011-10-28 Thread markabrucey
Sorry, the title of the post is meant to be written as: Merging older entities with entities that were created into an entity group. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Merging older queries with ancestor queries.

2011-10-28 Thread markabrucey
I understand that I will not have a delay in the case of using ancestor queries. This is what I mean: (maybe I failed to make it clear). The problem we have is when you create a new entity (without using ancestor queries) and redirect the view to a list of the entities after creation, you may

[appengine-java] Re: Merging older queries with ancestor queries.

2011-10-28 Thread markabrucey
I understand that I will not have a delay in the case of using ancestor queries. This is what I mean: (maybe I failed to make it clear). The problem we have is when you create a new entity (without using ancestor queries) and redirect the view to a list of the entities after creation, you may

Re: [appengine-java] Does JDO auto remove indexes that now have unindexed properties?

2011-10-27 Thread markabrucey
Thanks for the reply Ikai, that was the information I needed. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/85UIicBcxZQJ. To post to

[appengine-java] Merging older queries with ancestor queries.

2011-10-27 Thread markabrucey
Hi, I have been doing a lot of reading on Ancestor queries because we are currently trying to transfer from Master / Slave to the High Replication datastore. We have noticed while testing on the HRDS, that sometimes when adding an entity and redirecting the view to show that entity (or maybe

[appengine-java] Does JDO auto remove indexes that now have unindexed properties?

2011-10-14 Thread markabrucey
Basically I have gone through my datastore persist-able classes and have annotated properties that I never need to query on like this: @Extension(vendorName=datanucleus, key=gae.unindexed, value=true) private Long random; I needed to test whether or not JDO removed the index when I changed the