pdeva commented on issue #8276: KIS tasks in 0.15.1 RC2 sometimes duplicate rows with the same dimension values URL: https://github.com/apache/incubator-druid/issues/8276#issuecomment-520078202 I do have the `-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager` property in `druid.indexer.runner.javaOpts`. I will add the `-Dlog4j.configurationFile=<conf-file-location>` with the following config, and let you know what happens. If you need me to add additional config to the below let me know ```xml <?xml version="1.0" encoding="UTF-8" ?> <Configuration status="WARN"> <Appenders> <Console name="Console" target="SYSTEM_OUT"> <PatternLayout pattern="%d{ISO8601} %p [%t] %c - %m%n"/> </Console> </Appenders> <Loggers> <AsyncLogger name="io.druid.curator.inventory.CuratorInventoryManager" level="info" additivity="false"> <AppenderRef ref="Console"/> </AsyncLogger> <AsyncLogger name="io.druid.client.BatchServerInventoryView" level="info" additivity="false"> <AppenderRef ref="Console"/> </AsyncLogger> <!-- Make extra sure nobody adds logs in a bad way that can hurt performance --> <AsyncLogger name="io.druid.client.ServerInventoryView" level="info" additivity="false"> <AppenderRef ref="Console"/> </AsyncLogger> <AsyncLogger name ="io.druid.java.util.http.client.pool.ChannelResourceFactory" level="info" additivity="false"> <AppenderRef ref="Console"/> </AsyncLogger> <Root level="info"> <AppenderRef ref="Console"/> </Root> </Loggers> </Configuration> ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
