Combining sparse, dense and geo fields

How to combine multiple sparse, dense and geo fields in custom ways

Elasticsearch is a powerful tool for searching and analyzing data in near realtime. As developers, we often encounter datasets with various types of diverse fields. Some fields are mandatory or contain more than average populated data while others are barely populated. The fields with many missing values are called "Sparse" fields, while those with most values present are called "Dense" fields. Of course, we also have those geo-location fields representing geographical location data.

In this article, we look at how we can query data with diverse fields. We will explore the integration of sparse, dense, and geo fields to enhance your search functionalities. We'll walk through hands-on examples (using my favourite books index :) ), ingesting sample data into Elasticsearch via Kibana DevTools and performing lexical and geo searches.

Let's define these fields before we jump into details of how we can combine such fields to extract deeper analytical capabilities.

Sparse Fields

Sparse fields are fields that are not present in every document.

For instance, consider the books index consisting of various types of books. The special_edition field in our books index is sparse because not all books are released as special editions. Similarly, there might be other fields such as category or sales_info that might not necessarily be available for all books. Sparse fields are useful for filtering results based on attributes that only a subset of the dataset possesses.

Dense Fields

Conversely, dense fields are those expected to appear in all or most documents. Fields such as title, author, number_of_pages, and publication_date in our books index are considered dense fields. They are available for most if not all books and are core to each document. They help provide solid search queries.

Geo Fields

Geo fields allow for the indexing of geographic data which enables searches based on locations or geographic areas. In our books index, topic_location is a geo field that could represent various location-based attributes. Examples include the the location of the author, the place of the book's original print etc.

Combining Diverse Fields

Combining these fields in custom ways can significantly enhance search capabilities and provide more relevant results. There are ample use cases where we would like to query the combination of sparsely populated fields with dense fields as well as geo-fields.

The power of Elasticsearch comes from its ability to handle complex queries combining various data types. By understanding the characteristics of sparse, dense and geo-location fields, we can craft focused search queries that cater to specific user needs.

Let's see how we can work with the diverse data fields by running through hands-on examples.

Creating "books" Index

First, let's define a books index with diverse field types that could apply to an online bookstore.

As you can see in the PUT request below, the mappings for the books index consist of some standard book attributes. However, you can also find some fields that might not apply to every book, for example:

  • available_copies
  • special_edition

These attributes are considered sparse as they aren't necessarily expected to be populated for every book. The other fields title, author, publication_date fields etc are expected to be present for every (or most) book.

And we expect combine these field with a geo-point field that could represent the location of the book's topic:

# Creating books mapping schema

PUT /books
{
  "mappings": {
    "properties": {
      "title": { "type": "text" },
      "author": { "type": "text" },
      "price": { "type": "float" },
      "tags": { "type": "keyword" },
      "publication_date": { "type": "date" },
      "available_copies": { "type": "integer" },
      "special_edition": { "type": "boolean" },
      "topic_location": { "type": "geo_point" },
      "genre": { "type": "keyword" },
      "language": { "type": "keyword" }
    }
  }
}

The above snippet code shows us the mapping schema for the books index. It consists of a mix of diverse fields - sparse, dense and geo-location fields.

Copy the code snippet and paste it into the Kibana console. Executing it will create our books index.

Now that we have created our mappings, let's index some sample data.

Indexing Sample Data

We want to index a few books with data that represents our needs. The following sample documents add books with a mix of these attributes:

# Omitting special_edition and technology
# Note the location is Silicon Valley

POST /books/_doc/1
{
  "title": "Head First Java: A Brain-Friendly Guide",
  "author": " Kathy Sierra, Bert Bates, Trisha Gee",
  "price": 43.99,
  "tags": ["programming", "Java", "advanced"],
  "publication_date": "2024-03-20",
  "available_copies": 10,
  "topic_location": { "lat": 37.3861, "lon": -122.0839 },
  "genre": "Technology",
  "language": "English",
  "technology": "Java"
}

# Omitting 'special_edition'
# Note the location is London

POST /books/_doc/2
{
  "title": "Elasticsearch in Action 2e",
  "author": "Madhusudhan Konda",
  "price": 39.99,
  "tags": ["Elasticsearch", "Search", "Technology", "2nd Edition"],
  "publication_date": "2022-07-01",
  "available_copies": 10,
  "topic_location": { "lat": 51.5074, "lon": -0.1278 },
  "genre": "Technology",
  "special_edition": true,
  "language": "English",
  "technology": "Elasticsearch"
}

# Omitting 'available_copies', 'special_edition', and 'topic_location'
POST /books/_doc/3
{
  "title": "Functional Programming in Java",
  "author": "Venkat Subramaniam",
  "price": 36.99,
  "tags": ["Java", "Functional Programming", "Software Development"],
  "publication_date": "2018-03-15",
  "genre": "Technology",
  "language": "English",
  "technology": "Java"
}

As you can see, we've got four different books, each indexed with a few fields missing - thus demonstrating the concept of sparse fields.

With the data preparation out of the way, the next step is to write queries effectively making these diverse fields yield cool analytical insights.

We will write the following queries:

  • Finding Java Books Near a Specific Location
  • Fetching Special Edition Search Technology Books
  • Searching for latest IT Books in Multiple Languages

The remainder of the article explains how to create queries combining the sparse, dense and geo fields.

Finding Java Books Near a Tech Hub

Let's say we want to find Java books available near a location, say, SFO. We want to write a bool query to match the Java book within a geographic area. The following query does this job:

Here, we look for Java-related books near Silicon Valley:

# Searching for Java books in Silicon Valley

GET /books/_search
{
  "query": {
    "bool": {
      "must": [
        { "match": { "technology": "Java" } }
      ],
      "filter": [
        { "geo_distance": { "distance": "100km", "topic_location": { "lat": 37.7749, "lon": -122.4194 } } }
      ]
    }
  }
}

Executing this query will return you the "Java" books in or around "Silicon Valley" - about a 100km radius. In this case, "Head First Java" will be returned.

The query combines the field types to achieve a targeted search objective. The query looks for books that specifically relate to "Java" - a technology field - which may not be relevant for all entries in the index. This is a sparse field scenario as not all the books have the technology field populated.

This example demonstrates how Elasticsearch can integrate diverse data types into a cohesive search strategy.

Querying for Special Edition Search Technology Books

Let's say our goal is to identify books within our database that are special edition books and pertain to search technology like Elasticsearch. This query extracts the books that might be particularly relevant to a specific audience interested in learning the technology in depth.

We again use a bool query to filter for special edition books related to search technologies:

# Special edition Technology books

GET /books/_search
{
  "query": {
    "bool": {
      "must": [
        { "match": { "special_edition": true } },
        { "match": { "technology": "Elasticsearch" } }
      ],
      "should": [
        { "match": { "language": "English" } }
      ],
      "must_not": [
        { "range": { "publication_date": { "lt": "2015-01-01" } } }
      ],
      "minimum_should_match": 1
    }
  }
}

This query filters books based on the special_edition field (sparse) and a genre field (dense). The query becomes more universally applicable across the dataset since genre is a field that likely exists in every book document, making it a dense field.

In addition to the above requirements, we prefer the books to be published in English (though this is not a strict requirement due to minimum_should_match set to 1). This means books will not be excluded from the search results if they are not published in English. However, if they are published in English, those books will be ranked higher in the search results.

For completeness, I've added the must_not clause too - that'll exclude the books published before 2015. This allows us to focus on more recent publications.

In essence, this query provides a balanced search approach:

  • Stringent criteria are used to filter books by their edition and genre,
  • A preference is set for the English language to boost relevancy, and
  • Not recent (published before 2015) books are filtered out to ensure recent copies only.

Searching for Latest IT Books Available in Multiple Languages

Let's say our users might be looking for the latest resources (books) to stay updated in the tech field but require materials accessible in their native (specific) languages. It's a common scenario in educational environments, multinational companies, or regions with bilingual populations. Although I don't read technical books in "Telugu" (a language of South India - where I'm originally from :)), I know a few of my friends would like tech stuff explained in their mother tongue.

Suppose we want to find the most recent IT books available in both English and Spanish, which might indicate broader educational value:

# Recent IT Books Available in Multiple Languages

GET /books/_search
{
  "query": {
    "bool": {
      "must": [
        { "range": { "publication_date": { "gte": "now-2y" } } }
      ],
      "filter": [
        { "terms": { "language": ["English", "Spanish"] } },
        { "match": { "genre": "Technology" } }
      ]
    }
  }
}

Let me explain the query in the context of "combined/diverse" fields:

The publication_date is likely a dense field because it's a standard attribute expected in every book record. By using the range query, we focus on books published within the last two years.

Similarly, genre is typically a dense field in book databases, as books are generally categorized into genres. The query filters for books specifically within the "Technology" genre. This ensures relevant books related to IT topics.

The language field can be considered sparse depending on the dataset. In a global dataset, books might be available in multiple languages, but not all books will be available in more than one language.

By filtering with the terms query for multiple languages - in this case, English and Spanish - we're fetching books that cater to a multilingual audience.

Wrap Up

That's a wrap. In this article, we've learned about diverse data fields - such as sparse, dense and geo fields - and mechanisms of combining them to produce in-depth analytics on our data.

Ready to try this out on your own? Start a free trial.
Want to get Elastic certified? Find out when the next Elasticsearch Engineer training is running!
Recommended Articles