[ https://issues.apache.org/jira/browse/METRON-279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15368150#comment-15368150 ]
ASF GitHub Bot commented on METRON-279: --------------------------------------- Github user dlyle65535 commented on the issue: https://github.com/apache/incubator-metron/pull/181 So, if I'm not mistaken, METRON-279 was reported because the parser_invalid and parser_error topics were not created during deployment. The root cause was the duplicated roles causing confusion. So, unless I'm mistaken, METRON-279 won't be complete unless those topics are created by the deployment scripts. It's kind of buried in the commentary, but perhaps Neha can confirm/deny that. > Multiple metron_kafka roles available in metron deployment directory > -------------------------------------------------------------------- > > Key: METRON-279 > URL: https://issues.apache.org/jira/browse/METRON-279 > Project: Metron > Issue Type: Bug > Affects Versions: 0.2.1BETA > Reporter: Neha Sinha > Priority: Minor > Fix For: 0.2.1BETA > > > Hi, > There are two roles available that try to accomplish the task of creating > default kafka topics:- > -metron-kafka > -metron_kafka_topics > > We would need to purge one of them. > The main.yml file for metron_kafka_topics has the following entries :- > topics_to_create: > - { topic: "pcap", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "bro", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "yaf", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "snort", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "enrichments", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > Whereas main.yml file for metron_kafka has the following entries :- > topics_to_create: > - { topic: "pcap", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "bro", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "yaf", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "parser_invalid", num_partitions: 1, replication_factor: > 1, retention_gb: 10 } > - { topic: "parser_error", num_partitions: 1, replication_factor: > 1, retention_gb: 10 } > - { topic: "snort", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > - { topic: "enrichments", num_partitions: 1, replication_factor: 1, > retention_gb: 10 } > So particularly i see the topics "parser_error" and "parser_invalid" missing > in > metron_kafka_topics/main.yml file. > Regards, > Neha -- This message was sent by Atlassian JIRA (v6.3.4#6332)