Managing Schema Changes

The databases you connect to with Looker are not frozen in time - as businesses grow and evolve the way we store data changes too. LookML provides an abstraction layer to help manage these changes and minimize their impact on end-user reports. In this article we’ll discuss some Looker features, common workflows, and tips & tricks to help keep the Looker model up-to-date with underlying schema changes.

We’re going to divide schema changes into two types: small and big. Small changes are the day-to-day, incremental tweaks such as add/remove/rename columns, split/combine/rename tables, etc. Big changes are when you drastically refactor the schema, such as for a new product version or a platform migration.

In both of these cases, good communication between internal teams and adherence to a change management process is the most important factor for ensuring a smooth and successful outcome. LookML code should be treated just like your own production code for services that are dependent on the backend database.

Small Schema Changes

Looker has 3 particular features every analyst should know about to help deal with schema changes and content migration.

The Substitution Operator

We see the familiar ${ } in our LookML code all the time, but let’s take a second to reflect on why that is. The substitution operator gives us indirection and encapsulation - your logic is defined only in one place, then that definition is referenced elsewhere. When you need to make a change later, there is only one place to do it, which automatically flows through to the other references. We also call this kind of code DRY for “Don’t Repeat Yourself”.

Dimensions in Looker naturally abstract your underlying table names. Take this code for example:

dimension: order_amount {
  type: number
  sql: ${TABLE}.order_amt
}

dimension: is_big_order {
  type: yesno
  sql: ${order_amount} > 1000
}

measure: total_order_amount {
  type: sum
  sql: ${order_amount}
}

measure: count_big_orders {
  type: count
  filters: {
    field: is_big_order
    value: yes
  }
}

We could just use ${TABLE}.order_amt in “is_big_order” and “total_order_amount”. But if we later change the underlying column name to order_amount_usd, we’d then have to change it in 3 places. By using dimension references we only have to make the change once. This code also shows an example of encapsulating derived logic with “is_big_order”. Once we’ve defined the logic for big orders we can easily reference it in a filtered measure. If we later change the definition of “big”, the change only needs to be made in one place.

Using dimension references to abstract column names and derived logic makes it easy to respond to several small schema changes:

  1. Rename column - just update the column name in the base dimension definition
  2. Change column type - update the lookml field type, or apply a conversion in the base definition if needed. This can apply to timezone conversions as well.
  3. Delete column - remove the base dimenions definition, then the lookml validator can tell you if it was being referenced elsewhere. If you use raw sql references, you would need to search for all of them manually.

The alias Parameter

In the previous section we updated SQL references but didn’t rename or remove any LookML objects (eg dimensions, measures, views). But sometimes you will need to refactor the LookML objects, which can have the side effect of breaking users’ saved looks. The reason is because looks & dashboards are stored as a “query snapshot” in the Looker backend db - they don’t automatically know when the underlying model changes. Here is a diagram to illustrate:

442a9b2dd95e531e374027d575f175c494327a7f.png

When this look runs it will try to find view1.field1 in the LookML model. That field existed when the look was first saved, but could have been deleted by an analyst later. Then when the look runs the user will see a warning that view1.field1 no longer exists and will be omitted from the query.

The alias param allows us to re-route that reference to a different field instead:

dimension: new_better_field {
  alias: [field1, other_view.field2]
}

The look is still saved with field1, but Looker can map that to a replacement field so the user doesn’t see an error. Note that a field can have multiple aliases, and you can alias fields from other views. This makes alias handy for the following situations:

  1. Deleting redundant fields and mapping the duplicates to the single source of truth
  2. Merging fields from one view into another, or splitting a view into sub-units (e.g. because you normalized or de-normalized the underlying database tables)
  3. Renaming a lookml field for code quality (you can always use the label param to change just what users see)

Check out the docs for more info on the alias param.

The Content Validator - Bulk Find & Replace

Going back to the saved look diagram above, the substitution operator and alias param only effect the LookML side of the equation. The Content Validator, on the other hand, allows us to update the actual saved look in the backend db.

You can find the Content Validator in the Develop drop down menu:

894a1ab2439280269aa944c3c0f34fb2b7b2aaae.png

Once you click, it might take a few minutes to run. You’ll see a list of looks that are currently broken with options to fix them. However, take note of the buttons in the top left:

62352c7917bd950992fdbb34517961c725fc4100.png

With “Find & Replace All Looks” you can bulk update all of your looks at once, without going through the individual errors. You can update either the field, view, explore, or model name:

8b8d73b4cdd40616a6ec570a9952ee369842b349.png

Use this tool in the following situations:

  1. Moving an explore from one model to another
  2. Merging one explore into another
  3. Renaming a view or fields when alias would be too burdensome
  4. When you were previously using alias but want to “push” that change out to the saved looks
  5. When you want to remove a field and delete it from all saved looks (not redirect to a replacement)

Big Schema Changes

Sometimes schema changes are a big project and making the updates transparent to end users just isn’t possible (new product version, platform migration, or even switching data warehouse vendor). In these cases you may want to rebuild all or part of the LookML model. Here are some points to keep in mind:

  • Looker “projects” just correspond to different git repos. You can start a new project if you want, but it’s not necessary.
  • A Looker project can contain multiple model files, and each model file can point to a different database.
  • You can always update the database connection for a model file at a later time.

So, let’s say your engineering team is developing a new schema on separate database called STAGING. You can create a new connection for this db in Looker, then create a new model file in your existing project and point it to the STAGING connection. From there you can start adding/copying views as needed to replicate the logic of your old db.

Once the new model is ready, you can use the Content Validator to update the model for all saved looks.

Or, you may be able to completely overwrite the old model with your new code-- just update the connection param for the model.

The API can also be helpful for bulk updating saved looks based on custom rules.

Feel free to reach out to Looker Support or your Customer Success representative for help planning big schema changes.

8 1 3,594
1 REPLY 1

This is a very old post. Is there perhaps any new best practices or guides for this?

What tools does Looked provide to continuously check for changes in the database and the impact of that on the model? Since this is all GIT based it should be very possible to create a good experience here?

Top Labels in this Space
Top Solution Authors