Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id BBEB5200C52 for ; Mon, 27 Mar 2017 05:18:48 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BA6A7160B95; Mon, 27 Mar 2017 03:18:48 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0E44F160B87 for ; Mon, 27 Mar 2017 05:18:47 +0200 (CEST) Received: (qmail 88500 invoked by uid 500); 27 Mar 2017 03:18:47 -0000 Mailing-List: contact notifications-help@asterixdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@asterixdb.apache.org Delivered-To: mailing list notifications@asterixdb.apache.org Received: (qmail 88485 invoked by uid 99); 27 Mar 2017 03:18:47 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Mar 2017 03:18:47 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id BE2A41A02DC for ; Mon, 27 Mar 2017 03:18:46 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id g2-pUDJgN7Tp for ; Mon, 27 Mar 2017 03:18:45 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 9BBC85FC6D for ; Mon, 27 Mar 2017 03:18:45 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id CEC62E02CB for ; Mon, 27 Mar 2017 03:18:41 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 8802124062 for ; Mon, 27 Mar 2017 03:18:41 +0000 (UTC) Date: Mon, 27 Mar 2017 03:18:41 +0000 (UTC) From: "Chen Luo (JIRA)" To: notifications@asterixdb.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (ASTERIXDB-1861) Port not open after creating feed in single server mode MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 27 Mar 2017 03:18:48 -0000 Chen Luo created ASTERIXDB-1861: ----------------------------------- Summary: Port not open after creating feed in single server mode Key: ASTERIXDB-1861 URL: https://issues.apache.org/jira/browse/ASTERIXDB-1861 Project: Apache AsterixDB Issue Type: Bug Components: Feeds Environment: single server mode, using default configurations from ./opt/local/conf/ Reporter: Chen Luo Priority: Minor I'm using the single server mode with 1 CC node and 2 NC nodes (red and blue). All configurations are default from /opt/local/conf/. However, after creating a feed and connecting it to a dataset, the specified port is not open, and no error message/ stacktrace is shown. The following commands work fine (and the specified port is open) on AsterixDB 0.9.0. Steps to reproduce: {code} drop dataverse twitter if exists; create dataverse twitter if not exists; use dataverse twitter create type typeUser if not exists as open { id: int64, name: string, screen_name : string, lang : string, location: string, create_at: date, description: string, followers_count: int32, friends_count: int32, statues_count: int64 } create type typePlace if not exists as open{ country : string, country_code : string, full_name : string, id : string, name : string, place_type : string, bounding_box : rectangle } create type typeGeoTag if not exists as open { stateID: int32, stateName: string, countyID: int32, countyName: string, cityID: int32?, cityName: string? } create type typeTweet if not exists as open{ create_at : datetime, id: int64, "text": string, in_reply_to_status : int64, in_reply_to_user : int64, favorite_count : int64, coordinate: point?, retweet_count : int64, lang : string, is_retweet: boolean, hashtags : {{ string }} ?, user_mentions : {{ int64 }} ? , user : typeUser, place : typePlace?, geo_tag: typeGeoTag } create dataset ds_tweet(typeTweet) if not exists primary key id using compaction policy correlated-prefix (("max-mergable-component-size"="1048576"),("max-tolerance-component-count"="10")) with filter on create_at ; // with filter on create_at; //"using" "compaction" "policy" CompactionPolicy ( Configuration )? )? create feed TweetFeed using socket_adapter ( ("sockets"="red:10001"), ("address-type"="nc"), ("type-name"="typeTweet"), ("format"="adm") ); connect feed TweetFeed to dataset ds_tweet; {code} Then check port 10001 using nmap: {code} nmap -p 10001 localhost {code} It shows: {code} PORT STATE SERVICE 10001/tcp closed scp-config {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)