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-520070434 this is how logging is configured for all nodes. apart from the peons, all the other nodes seem to be outputting fine.. ```xml <Configuration status="WARN"> <Appenders> <RollingFile name="RollingFile" fileName="log/druid.log" filePattern="log/druid-%d{MM-dd-yyyy}-%i.log"> <PatternLayout> <Pattern>%d %p %c{1.} [%t] %m%n</Pattern> </PatternLayout> <Policies> <OnStartupTriggeringPolicy /> <TimeBasedTriggeringPolicy /> <SizeBasedTriggeringPolicy size="100 MB"/> </Policies> <DefaultRolloverStrategy> <Delete basePath="log/"> <IfFileName glob="*/druid-*.log"> <IfLastModified age="7d"> <IfAny> <IfAccumulatedFileSize exceeds="4 GB" /> <IfAccumulatedFileCount exceeds="10" /> </IfAny> </IfLastModified> </IfFileName> </Delete> </DefaultRolloverStrategy> </RollingFile> </Appenders> <Loggers> <AsyncLogger name="io.druid.curator.inventory.CuratorInventoryManager" level="info" additivity="false"> <AppenderRef ref="RollingFile"/> </AsyncLogger> <AsyncLogger name="io.druid.client.BatchServerInventoryView" level="info" additivity="false"> <AppenderRef ref="RollingFile"/> </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="RollingFile"/> </AsyncLogger> <AsyncLogger name ="io.druid.java.util.http.client.pool.ChannelResourceFactory" level="info" additivity="false"> <AppenderRef ref="RollingFile"/> </AsyncLogger> <Root level="info"> <AppenderRef ref="RollingFile"/> </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]
