Re: Timestamps and Cardinality in Queries

2017-02-23 Thread John Smith
I have a pull request that fixes that problem.. it has been stuck in limbo for months.. https://github.com/apache/incubator-rya-site/pull/1 Can someone merge it into master? On Thu, Feb 23, 2017 at 2:00 PM, Liu, Eric wrote: > Cool, thanks for the help. > By the way,

On Storing Rya Metadata in the rya_spo table.

2017-01-17 Thread John Smith
When I perform a scan of the rya_spo table after adding a SINGLE triple, I see that Rya adds TWO triples, the one I wanted to add and one denoting the version of Rya. e.g. rya_spo> scan INSERT DATA { . }

Re: On Storing Rya Metadata in the rya_spo table.

2017-01-17 Thread John Smith
ould this make sense? On Tue, Jan 17, 2017 at 1:52 PM, John Smith <johns0...@gmail.com> wrote: > I can find it with this query > > select * { > ?p ?o . > > } > > > I also get it when I load the graph into GraphX, since it pulls the entire > graph. >

Re: On Storing Rya Metadata in the rya_spo table.

2017-01-17 Thread John Smith
I can find it with this query select * { ?p ?o . } I also get it when I load the graph into GraphX, since it pulls the entire graph. Being but a single triple it isn't a huge deal, but we are establishing the precedent that metadata about the implementation details of our store is to be

Fwd: Do i need a jira ticket for changes to the Rya web site?

2016-12-14 Thread John Smith
i need a jira ticket for changes to the Rya web site? To: dev@rya.incubator.apache.org I think a jira ticket and then add Adina as a watcher. She knows the process for updating (I'm not sure everyone has permissions but I might be wrong). Sent from my iPhone > On Dec 14, 2016, at 2:25 PM, J

Do i need a jira ticket for changes to the Rya web site?

2016-12-14 Thread John Smith
There is a broken link on the Rya web site and I'd like to push a fix for it. How do I do this? Do i need to create a jira ticker or is that just for source code changes? How do I submit a pull request for website changes?

Re: GraphXGraphGenerator Usage Help

2017-01-10 Thread John Smith
t, > but the entity centric index does. > There is a configuration parameter to enable the entity centric index. You > can see how to enable it by looking at the entity centric example in the > examples project-- let me know if you have trouble finding it. > > On Monday, Jan

GraphXGraphGenerator Usage Help

2017-01-09 Thread John Smith
I'm trying to use the GraphXGraphGenerator class but it is hard coded to use the EntityCentricIndex table by default. But this doesn't exist in Rya by default. Shouldn't this default to the SPO table? Or perhaps even better, be a configurable parameter? What is the purpose of the

select * where { s? p? o? } query

2017-01-03 Thread John Smith
*I was looking to make RYA more SPARQL1.1 compliant by enabling the capability to perform the following query* *SELECT * { s? p? o? } * *I found that this capability is already supported, it is simply disabled ( RYA-83 )Could someone point me

Re: select * where { s? p? o? } query

2017-01-04 Thread John Smith
n) > > And your done! > There might be some oddness about creating a range with an empty start > array. Might be better to skip the range when creating the scanner. > david. > > On Tue, Jan 3, 2017 at 4:01 PM, John Smith <johns0...@gmail.com> wrote: > >