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

ASF GitHub Bot commented on RYA-280:
------------------------------------

Github user meiercaleb commented on a diff in the pull request:

    https://github.com/apache/incubator-rya/pull/177#discussion_r127987608
  
    --- Diff: 
extras/rya.indexing.pcj/src/main/java/org/apache/rya/indexing/pcj/storage/accumulo/PcjTables.java
 ---
    @@ -412,9 +413,9 @@ private void writeResults(
                     // Row ID = binding set values, Column Family = variable 
order of the binding set.
                     final Mutation addResult = new Mutation(rowKey);
                     final String visibility = result.getVisibility();
    -                addResult.put(varOrder.toString(), "", new 
ColumnVisibility(visibility), "");
    +                addResult.put(varOrder.toString(), "", new 
ColumnVisibility(visibility), new Value(bsSerDe.serialize(result).toArray()));
                     mutations.add(addResult);
    -            } catch(final BindingSetConversionException e) {
    +            } catch(Exception e) {
    --- End diff --
    
    Just converted back to the original Exception.


> PeriodicQuery Support for Fluo
> ------------------------------
>
>                 Key: RYA-280
>                 URL: https://issues.apache.org/jira/browse/RYA-280
>             Project: Rya
>          Issue Type: New Feature
>          Components: clients
>    Affects Versions: 3.2.10
>            Reporter: Caleb Meier
>            Assignee: Caleb Meier
>
> Add the capability to Rya-Fluo App to provide periodic updates for queries 
> registered with Fluo.  That is, provide the application with the ability to 
> satisfy the standing query "tell me every 12 hours about all of the events of 
> a particular type that occurred within the last 24 hours".  Given that Fluo 
> operates using a push based notification system, some external service needs 
> to be implemented to periodically notify Fluo to generate a result 
> notification (this helps handle the non-event event that occurs when nothing 
> happens in a given period of time).  



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to