You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by al...@apache.org on 2020/08/05 21:15:35 UTC

[asterixdb] branch master updated: [NO ISSUE] Feed operator doc updates

This is an automated email from the ASF dual-hosted git repository.

alsuliman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git


The following commit(s) were added to refs/heads/master by this push:
     new ea9a4d8  [NO ISSUE] Feed operator doc updates
ea9a4d8 is described below

commit ea9a4d80a2d5e707e574d89d40638171bcd9b7da
Author: Ali Alsuliman <al...@gmail.com>
AuthorDate: Tue Aug 4 17:26:06 2020 -0700

    [NO ISSUE] Feed operator doc updates
    
    - user model changes: no
    - storage format changes: no
    - interface changes: no
    
    Change-Id: Ic3ffbcd691b7a864861272282dcbf093e6999e03
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/7463
    Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Reviewed-by: Ali Alsuliman <al...@gmail.com>
    Reviewed-by: Michael Blow <mb...@apache.org>
---
 .../external/operators/FeedMetaOperatorDescriptor.java   |  4 +++-
 .../external/operators/FeedMetaStoreNodePushable.java    | 16 ++++++++++++----
 2 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaOperatorDescriptor.java b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaOperatorDescriptor.java
index 3f02927..b6fca04 100644
--- a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaOperatorDescriptor.java
+++ b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaOperatorDescriptor.java
@@ -72,7 +72,9 @@ public class FeedMetaOperatorDescriptor extends AbstractSingleActivityOperatorDe
      **/
     private final FeedRuntimeType runtimeType;
 
-    /** Whether the incoming frame has a message that this operator should handle **/
+    /**
+     * Whether the incoming frame has a message that this operator should handle.
+     **/
     private final boolean hasMessage;
 
     public FeedMetaOperatorDescriptor(final JobSpecification spec, final FeedConnectionId feedConnectionId,
diff --git a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaStoreNodePushable.java b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaStoreNodePushable.java
index 7548313..37e589a 100644
--- a/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaStoreNodePushable.java
+++ b/asterixdb/asterix-external-data/src/main/java/org/apache/asterix/external/operators/FeedMetaStoreNodePushable.java
@@ -51,10 +51,14 @@ public class FeedMetaStoreNodePushable extends AbstractUnaryInputUnaryOutputOper
 
     private static final Logger LOGGER = LogManager.getLogger();
 
-    /** Whether the incoming frame has a message that this operator should handle **/
+    /**
+     * Whether the incoming frame has a message that this operator should handle
+     **/
     private final boolean hasMessage;
 
-    /** Runtime node pushable corresponding to the core feed operator **/
+    /**
+     * Runtime node pushable corresponding to the core feed operator
+     **/
     private final AbstractUnaryInputUnaryOutputOperatorNodePushable insertOperator;
 
     /**
@@ -75,10 +79,14 @@ public class FeedMetaStoreNodePushable extends AbstractUnaryInputUnaryOutputOper
      **/
     private final int partition;
 
-    /** Type associated with the core feed operator **/
+    /**
+     * Type associated with the core feed operator
+     **/
     private final FeedRuntimeType runtimeType = FeedRuntimeType.STORE;
 
-    /** The (singleton) instance of IFeedManager **/
+    /**
+     * The (singleton) instance of IFeedManager
+     **/
     private final ActiveManager feedManager;
 
     private FrameTupleAccessor fta;