DEV Community

Cover image for Couchbase: Scans And Pushdowns
Mehmet Firat KOMURCU
Mehmet Firat KOMURCU

Posted on • Updated on • Originally published at firatkomurcu.com

Couchbase: Scans And Pushdowns

Couchbase has numerous query optimizations, and the purpose is to get the query plan as much optimized as possible. Scans and pushdowns are one of these optimizations. Let's first start with scans.

Note: Before we start, I assume that you have basic knowledge about Couchbase Index, Query and Data Services.

Scans

When a query request hits the Query Service, the service will transform predicates to ranges and give these ranges to Index Service. These ranges are scans.
If you explain a query plan that uses GSI(Global Secondary Index), you can see the scans section. For example:

-> Explain Select * From Users Where age > 33 and age < 40
-> ...
"spans": [
    {
        "exact": true,
        "range": [
            {
                "high": "40",
                "inclusion": 0,
                "low": "33"
            }
        ]
    }
 ]
    ...
Enter fullscreen mode Exit fullscreen mode

As we can see in the picture, spans have "ranges". In this range section, there are three properties. These are: "high", "inclusion" and "low". What is the meaning of these? Let's see together.

  • "High" means upper bound. If it does not exist, it indicates that there is no upper bound.
  • "Low" means lower bound. If it does not exist, it indicates that there is no lower bound.
  • "Inclusion" intimates if High and Low fields are involved.
0 -> Neither  -> Neither high nor low fields are involved
1 -> Low      -> Only low fields are involved  
2 -> High     -> Only high fields are involved
3 -> Both     -> Both fields are involved
Enter fullscreen mode Exit fullscreen mode

Scans are not just for numbers. It is an explanation for predicates. Let's see how scans behave in strings.

-> Explain Select * From Users Where name Like 'Bruce%'
-> ...
"spans": [
    {
        "exact": true,
        "range": [
            {
                "high": "\"Brucf\"",
                "inclusion": 1,
                "low": "\"Bruce\""
            }
        ]
    }
]
...
Enter fullscreen mode Exit fullscreen mode

Our range starts with "Bruce" and goes until all combinations begin with the "Bruce" string. "f" is the next character after "e"(last character of the "Bruce" string), so that is our high upper bound.

Scans have a lot of expressions like these examples. You can check Couchbase's document for more details.

So we now know what scan is. Query service produces scans and passes them to Index Service. For what? What will Index Service do with it? That question directs us to our second topic, pushdowns.

Pushdowns

Query Service has a lot of responsibility, a lot of work to do. Fortunately, it has a hero to run its business efficiently, and that is Index Service. Do not think that Index Service is just indexing data and sitting there. It has a lot of abilities like pagination, ordering, point, and range scans.

When Query Service produces its predicates and selects which indexes to use, it tries to address Index Service work. In that way, Query Service does less job and fewer data transfers from Index Service to Query Service. This is what pushdown is.

Index Service stores its index keys in sorted order. Let's perceive this from an example. Assume that we have data that holds superheroes' names and their heights. Here is an example:

{
  "name": "Captain America",
  "height": 188
}
Enter fullscreen mode Exit fullscreen mode

Now we will create an index on height.

Create Index heroes_height ON superheroes(height)
Enter fullscreen mode Exit fullscreen mode

When we create the index on height, Index Service will sort it as I said before. If we now select "id" from data with "height", Query Service will get the data from Index Service. It doesn't have to go Data Service next because Index Service has "height" and "id". You can say that we did not index the "id" field. That's because Couchbase implicitly indexes document id.

We can imagine Index Service stores superheroes in sorted order by height like this:

Marvel-Heroes-Height-Comparison-Chart.jpg

Note: Captain America's Height: 188cm ~= 6'2" and image source: marvel.com

Now let's explain our select query and see what it has.

-> Explain Select meta().id from superheroes Where height = 188
-> ...
"covers": [
    "cover ((`superheroes`.`height`))",  (1)
    "cover ((meta(`superheroes`).`id`))" (2)
],
"spans": [
    {
        "exact": true,
        "range": [
            {
                "high": "188",
                "inclusion": 3,
                "low": "188"
            }
        ]
    }
]
...
Enter fullscreen mode Exit fullscreen mode

We can see that our index covers both height(1) and id(2).

At the start of the Pushdown section, I said Index Service has abilities like pagination. If Index Service stores data in sorted order, we can get data with Limit, Offset, Max, Min, etc. If you want to go deeper about these functionalities, you can check out official documents.

Conclusion

In this article, we learned what Scans and Pushdowns are in Couchbase. This article is my first blog post. I am open to any advice and comments.

Thank you for reading, May the force be with you!

Top comments (0)