select * from tbl_event where dest_ip = 'xxx.xxx.xxx.xxx' and source_ip = 'xxx.xxx.xxx.xxx'
The scan rates dropped to thousands rows/Second. This is a search of two records from 1.5B records and each record includes 80 fields. It won't be slow if we only search one field or we only select a few fields. I know 'Select*' is normally slow for Columnar database, but why it only became much slower when searching more than one field? Anything we can do to make it faster?
Thanks a lot!
Jing