[GitHub] incubator-rya pull request #96: [WIP] RYA-144 Entity index.

2017-04-04 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/incubator-rya/pull/96


---
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
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-rya pull request #146: RYA-261-ContextValidation

2017-04-04 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/incubator-rya/pull/146


---
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
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-rya pull request #147: RYA-262 Fixed a bug where AccumuloDocIdInde...

2017-04-04 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/incubator-rya/pull/147


---
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
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Commented] (RYA-128) Refactor existing tests

2017-04-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/RYA-128?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15955324#comment-15955324
 ] 

ASF GitHub Bot commented on RYA-128:


Github user asfgit closed the pull request at:

https://github.com/apache/incubator-rya/pull/121


> Refactor existing tests
> ---
>
> Key: RYA-128
> URL: https://issues.apache.org/jira/browse/RYA-128
> Project: Rya
>  Issue Type: Sub-task
>Affects Versions: 3.2.10
>Reporter: Andrew Smith
>Assignee: Eric White
>
> Refactor the existing tests to use refactored merge tool



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (RYA-262) AccumuloDocIdIndexer throws exception when authorizations are empty string or null.

2017-04-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/RYA-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15955326#comment-15955326
 ] 

ASF GitHub Bot commented on RYA-262:


Github user asfgit closed the pull request at:

https://github.com/apache/incubator-rya/pull/147


> AccumuloDocIdIndexer throws exception when authorizations are empty string or 
> null.
> ---
>
> Key: RYA-262
> URL: https://issues.apache.org/jira/browse/RYA-262
> Project: Rya
>  Issue Type: Bug
>Reporter: Kevin Chilton
>Assignee: Kevin Chilton
>Priority: Minor
>
> AccumuloDocIndexer.runQuery(StarQuery query, Collection ranges) throws 
> an exception if the configuration object never set authorizations or if the 
> authorizations are set to the empty string.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (RYA-262) AccumuloDocIdIndexer throws exception when authorizations are empty string or null.

2017-04-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/RYA-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15955139#comment-15955139
 ] 

ASF GitHub Bot commented on RYA-262:


Github user pujav65 commented on the issue:

https://github.com/apache/incubator-rya/pull/147
  
merged


> AccumuloDocIdIndexer throws exception when authorizations are empty string or 
> null.
> ---
>
> Key: RYA-262
> URL: https://issues.apache.org/jira/browse/RYA-262
> Project: Rya
>  Issue Type: Bug
>Reporter: Kevin Chilton
>Assignee: Kevin Chilton
>Priority: Minor
>
> AccumuloDocIndexer.runQuery(StarQuery query, Collection ranges) throws 
> an exception if the configuration object never set authorizations or if the 
> authorizations are set to the empty string.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (RYA-261) Context Validation for StatementPattern Evaluation

2017-04-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/RYA-261?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15955138#comment-15955138
 ] 

ASF GitHub Bot commented on RYA-261:


Github user pujav65 commented on the issue:

https://github.com/apache/incubator-rya/pull/146
  
merged


> Context Validation for StatementPattern Evaluation
> --
>
> Key: RYA-261
> URL: https://issues.apache.org/jira/browse/RYA-261
> Project: Rya
>  Issue Type: Bug
>  Components: clients, dao
>Affects Versions: 3.2.10
>Reporter: Caleb Meier
>Assignee: Caleb Meier
> Fix For: 3.2.10
>
>
> When ParallelEvaluationStrategyImpl evaluates StatementPatterns, it doesn't 
> take into account the possibility that context can be specified by the 
> BindingSet parameter passed into its evaluate method.  The evaluate method 
> scans Rya by building an Accumulo Range using all values relevant to the 
> Accumulo Row that are included in the StatementPattern and BindingSet. 
> However, it does not utilize context when building it Range object because 
> context is stored in the Accumulo Column Family.  The results of this scan 
> are effectively (Statement, BindingSet) pairs that are joined to form a 
> result BindingSet.  This join process does not take into account the fact 
> that the BindingSet could contain a value for the context that is not the 
> same as the context value in the Statement.  As an example of this incorrect 
> behavior, consider the following named graph query:
> select ?c ?x where{ graph ?c { ?x  ;  
>  }} 
> If the data (uri:Joe, uri:talksTo, uri:Bob, uri:context1), (uri:Joe, 
> uri:worksAt, uri:GroceryStore, uri:context2) is stored in Rya, the above 
> query will incorrectly return [?x = uri:Joe, ?c = context1] when it should 
> return no results.  



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (RYA-144) New Secondary Index: Smart URI

2017-04-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/RYA-144?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15955101#comment-15955101
 ] 

ASF GitHub Bot commented on RYA-144:


Github user pujav65 commented on the issue:

https://github.com/apache/incubator-rya/pull/96
  
hey @kchilton2 can you close this pr?


> New Secondary Index: Smart URI
> --
>
> Key: RYA-144
> URL: https://issues.apache.org/jira/browse/RYA-144
> Project: Rya
>  Issue Type: New Feature
>Reporter: Kevin Chilton
>Assignee: Andrew Smith
>
> This is intended primarily for the Mongo implementation of Rya.
> A purpose of this is so that we can discover it though the SPARQL query 
> interface.
> Suppose you have a star entity named 'David':
> David is a person
> david has an SSN
> david has a birthday, 
> So a URI holding all of this information about David could look like this:
> HTTP://Person=david=111-11-=20160101
> This makes it so that instead of using 3 joins it is only a scan.
> --
> Current open pull request does not have SPARQL support.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[GitHub] incubator-rya issue #121: Rya-128 trigger service to Kafka

2017-04-04 Thread pujav65
Github user pujav65 commented on the issue:

https://github.com/apache/incubator-rya/pull/121
  
asfbot build


---
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
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---