What is the main difference between SQL filter and correlation filter in Azure Service Bus

Viewed 335
1 Answers

I have a blog post where all three filter types are explained

  1. Boolean filters
  2. Correlation filters
  3. SQL filters

There are several differences between correlation and SQL filters. Just to list a few

  • Within a correlation filter, multiple conditions are AND-ed. SQL filter is much more flexible and can use AND as well as OR operations.
  • The cost of evaluating filter expression is minimal and almost immediate w/o extra compute required. SQL filters can require more compute but offer more flexibility.
Related