Re: PIO Build Error

2016-10-13 Thread Jim Miller
Thanks Chan. I will try this evening then post the results. Jim On Thu, Oct 13, 2016 at 12:05 AM, Chan Lee wrote: > Hi Jim, > > Could you try removing pio.sbt in the template directory? > > Chan > > On Wed, Oct 12, 2016 at 8:24 PM, Jim Miller >

[GitHub] incubator-predictionio-template-text-classifier pull request #7: Update temp...

2016-10-13 Thread chanlee514
GitHub user chanlee514 opened a pull request: https://github.com/apache/incubator-predictionio-template-text-classifier/pull/7 Update template for PIO version 0.10.0-incubating You can merge this pull request into a Git repository by running: $ git pull

[GitHub] incubator-predictionio-template-text-classifier pull request #6: Update name...

2016-10-13 Thread chanlee514
Github user chanlee514 closed the pull request at: https://github.com/apache/incubator-predictionio-template-text-classifier/pull/6 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature

[GitHub] incubator-predictionio pull request #308: Update the Recommendation Quicksta...

2016-10-13 Thread chriswoodford
GitHub user chriswoodford opened a pull request: https://github.com/apache/incubator-predictionio/pull/308 Update the Recommendation Quickstart * Clean up some of the language (fix suffixes, remove unnecessary pronouns) * Add specificity, clarity, and structure to the rate/buy

clashing hbase queries

2016-10-13 Thread Pat Ferrel
The DAG for a template just happens to schedule 2 tasks that do something like this: val fieldsRDD: RDD[(ItemID, PropertyMap)] = PEventStore.aggregateProperties( appName = dsp.appName, entityType = "item")(sc) to execute in parallel The PEventStore calls from 2 separate closures start

Re: clashing hbase queries

2016-10-13 Thread Andrew Purtell
This sounds like hotspotting. Ideally the workload over the keyspace can be better distributed, which is another avenue of attack - partitioning, keying strategy. > On Oct 13, 2016, at 6:10 PM, Pat Ferrel wrote: > > The DAG for a template just happens to schedule 2