Explain bloom?



Explain bloom?..

Answer / Diwakar Verma

"Bloom filter" in Apache Pig is a probabilistic data structure used for testing whether an element is a member of a set. It's known for its space efficiency, but has a small probability of false positives.nnExample usage:n`data = FOREACH input_data GENERATE col1; bloomFilter = LOAD '<bloom_filter_file>'; filtered_data = FILTER data BY bloomFilter.contains(col1);`

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Apache Pig Interview Questions

What are the Applications of Apache Pig?

1 Answers  


What is the use of illustrate in pig?

1 Answers  


How do users interact with the shell in apache pig?

1 Answers  


Why is pig used in hadoop?

1 Answers  


What do you know about the case sensitivity of apache pig?

1 Answers  


What is a relation in Pig?

1 Answers  


What relational operators can we use that are related to combining and splitting in Pig language?

1 Answers  


Explain the uses of Map Reduce in Pig?

1 Answers  


Why Do We Need Apache Pig?

1 Answers  


What are all stats classes in the java api package available?

1 Answers  


What are the 2 modes used to run pig scripts?

1 Answers  


What is the function of co-group in Pig?

1 Answers  


Categories