Taewoo Kim created ASTERIXDB-2290:
-------------------------------------

             Summary: Feed doesn't work when the address type is NC.
                 Key: ASTERIXDB-2290
                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-2290
             Project: Apache AsterixDB
          Issue Type: Bug
            Reporter: Taewoo Kim


A feed works fine when the given address type is IP. The following feed can be 
created and works without any issue.
{code:java}
create feed TweetFeed with {
"adapter-name" : "socket_adapter",
"sockets" : "x.x.x.x:10001",
"address-type" : "IP",
"type-name" : "typeTweet",
"format" : "adm",
"insert-feed" : "true"
};{code}
 

The same feed doesn't work when the given address type is NC. The following 
feed can be created. However, nothing happens when trying to ingest a record.
{code:java}
create feed TweetFeed with {
"adapter-name" : "socket_adapter",
"sockets" : "1:10001",
"address-type" : "NC",
"type-name" : "typeTweet",
"format" : "adm",
"insert-feed" : "true"
};{code}
 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to