Very interesting idea in the latest Infobright release:
The most interesting of the group might be Rough Query, which speeds the process of finding the needle in a multi-terabyte haystack by quickly pointing users to a relevant range of data, at which point they can drill down with more-complex queries. So, in theory, a query that might have taken 20 minutes before might now take just a few minutes because Rough Query works in seconds by using only the in-memory data and the subsequent search is against a much smaller data set.
Curt Monash provides more context about Rough Queries in his post:
To understand Infobright Rough Query, recall the essence of Infobrightâs architecture:
Infobrightâs core technical idea is to chop columns of data into 64K chunks, called data packs, and then store concise information about whatâs in the packs. The more basic information is stored in data pack nodes,* one per data pack. If youâre familiar with Netezza zone maps, data pack nodes sound like zone maps on steroids. They store maximum values, minimum values, and (where meaningful) aggregates, and also encode information as to which intervals between the min and max values do or donât contain actual data values.
I.e., a concise, imprecise representation of the database is always kept in RAM, in something Infobright calls the âKnowledge Grid.â Rough Query estimates query results based solely on the information in the Knowledge Grid â i.e., Rough Query always executes against information thatâs already in RAM.
Rough Query is not meant for BI or reporting, but rather for initial investigations data scientists would perform against BigData.
Original title and link: Infobright Rough Query: Aproximating Query Results (NoSQL database©myNoSQL)