Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 564 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 564 Bytes

ATHENA

Approach for Tweet Harvesting, Enhancement, Analysis and Normalisation

To Run celery jobs

redis-server celery -A athena worker -l info

DB

CREATE TABLE tweet ( twitterId text, user text, content text, date timestamp, retweets int, likes int, hashtags list<text>, history uuid, PRIMARY KEY (twitterId));

CREATE TABLE harvest ( uuid uuid, start_date timestamp, end_date timestamp, hashtag text, done boolean, PRIMARY KEY(uuid));

CREATE TABLE normal (uuid uuid, name text, content text, PRIMARY KEY(uuid));