I have a index named errors and different types like network, system, user etc.. I have another index which is maintaining all the days data EX: smsc-2017.03.23
Can I able to get all system errors from the smsc-2017.03.23 within a hour interval along with its count???
Or any other way to read the errors from falt file and search??? Any suggestions are great. Thanks
mysql> select err.name,count(user.error) as error_count from error_list err join user_data user on err.name=user.error where err.type="network_error" group by err.name;
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.