You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Ian Maxon (JIRA)" <ji...@apache.org> on 2015/11/11 02:52:11 UTC

[jira] [Commented] (ASTERIXDB-1169) Ingestion Pipeline for twitter is not fetching data

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

Ian Maxon commented on ASTERIXDB-1169:
--------------------------------------

Does the feed start to ingest if you omit a filter query (the "query" parameter)? There have to be enough tweets coming in to fill a frame before it actually appears in the query results, so if it is a very specific filter, it can take a while. 

> Ingestion Pipeline for twitter is not fetching data 
> ----------------------------------------------------
>
>                 Key: ASTERIXDB-1169
>                 URL: https://issues.apache.org/jira/browse/ASTERIXDB-1169
>             Project: Apache AsterixDB
>          Issue Type: Bug
>          Components: Feeds
>         Environment: Ubuntu 14 
>            Reporter: Subhasis
>
> Hi, 
> I am playing with the twitter feeds and trying set up an ingestion pipeline using the Twitter adaptor. 
> Unfortunately, after setting up everything correctly, my feed data is not populating. 
> Likewise, I am sending all the AQL commands I have also used  I have not found any error during executions:
> ***************************
> drop dataverse feeds if exists; 
> create dataverse feeds;
>     use dataverse feeds;
>     create type TwitterUser if not exists as open{
>         screen_name: string,
>         language: string,
>         friends_count: int32,
>         status_count: int32,
>         name: string,
>         followers_count: int32
>     };
>     create type Tweet if not exists as open{
>         id: string,
>         user: TwitterUser,
>         latitude:double,
>         longitude:double,
>         created_at:string,
>         message_text:string
>     };
>     create dataset Tweets (Tweet)
>     primary key id;
> **************************************************************************
> use dataverse feeds;
>     create feed TwitterFeed if not exists using "push_twitter"
>     (("type-name"="Tweet"). ("query" = "NASA"))
> ("consumer.key"="ABCD"),
>      ("consumer.secret"="ABCD"),
>      ("access.token"="ABCD"),
>      ("access.token.secret"="ABCD"));
> use dataverse feeds;
>     connect feed TwitterFeed to dataset Tweets;
> Thank you very much for your time 
> -Subh



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)