[
https://issues.apache.org/jira/browse/ASTERIXDB-1333?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15193089#comment-15193089
]
ASF subversion and git services commented on ASTERIXDB-1333:
------------------------------------------------------------
Commit f707c0ed2053e62d9b862e0cef4c17f2939533aa in incubator-asterixdb's branch
refs/heads/master from [~alamoudi]
[ https://git-wip-us.apache.org/repos/asf?p=incubator-asterixdb.git;h=f707c0e ]
ASTERIXDB-1333 Fix Feed Ingestion for Dataset with Filters
This change fixes a bug in the compilation of feed connection
when the dataset has filters. The bug is caused by not setting
the filter expressions during initial plan generation.
Change-Id: Ic323c9a74504921b984f68790bff2d3a7140b85b
Reviewed-on: https://asterix-gerrit.ics.uci.edu/716
Reviewed-by: Murtadha Hubail <[email protected]>
Tested-by: Jenkins <[email protected]>
> Socket Adapter Feed Hangs with LSM Filters
> ------------------------------------------
>
> Key: ASTERIXDB-1333
> URL: https://issues.apache.org/jira/browse/ASTERIXDB-1333
> Project: Apache AsterixDB
> Issue Type: Bug
> Reporter: Murtadha Hubail
> Assignee: Abdullah Alamoudi
>
> if there is a filter in the dataset, trying to connect a socket adapter feed
> to it hangs forever.
> To reproduce, execute the following:
> drop dataverse Analytics if exists;
> create dataverse Analytics;
> use dataverse Analytics;
> create type ServerLogType as closed {
> id: int,
> ip: string,
> url: string,
> timestamp: datetime
> }
> create dataset ServerLog(ServerLogType)
> primary key id with filter on timestamp;
> create feed LogsFeed using socket_adapter
> (
> ("sockets"="127.0.0.1:10001"),
> ("address-type"="IP"),
> ("type-name"="ServerLogType"),
> ("format"="adm")
> );
> set wait-for-completion-feed "false";
> connect feed LogsFeed to dataset ServerLog;
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)