Evolve Logical Data Model

In a typical workflow, you are evolving LDM in time. For example, when you add a new table to your database, and you want to utilize it in your insights, you have to update PDM and LDM accordingly.

Generally there are three approaches. All approaches require updating PDM, go to Physical Data Model to learn how.

We are going to describe here the first two approaches, the third one is described in the article Auto Generate LDM.

Every time you update the LDM, you have to publish it to the workspace before you can utilize changes in analytical applications.

Use case - extend Model by Shared Dimensions Region and State

We are going to evolve the Demo model used in Getting Started.

As you may already realize, the model is not fully aligned with best practices described in root page of this section. For example, there are attributes State and Region in many datasets. They are not defined as separate dimension datasets, which could be shared by all fact tables. Insights utilizing facts (or measures based on them) from both Order lines and Campaign Channels fact tables cannot be sliced by Region or State attributes.

Alter relational model in the database

We are going to alter relational model in the embedded PostgreSQL database. Use your favorite IDE for working with databases, e.g. Dbeaver. If you prefer command line, you can utilize psql from inside the container:

# Update "some-gooddata" to the name of container you chose during startup of platform 
docker exec -it some-gooddata bash
psql -U demouser -d demo

Connect to the database using same credentials, which we used during registration of the related data source entity:

  • username = demouser
  • password = demopass

The following SQL script creates two new tables regions and states. Tables are populated by data from already existing tables.

set search_path to demo;

create table regions (
   region varchar(128) not null,
   constraint pk_regions primary key (region)
);

create table states (
   state varchar(128) not null,
   region varchar(128) not null,
   constraint pk_states primary key (state),
   constraint fk_states_regions foreign key (region) references regions (region)
);

insert into regions
select region from customers union select region from campaign_channels;
insert into states
select state, region from customers union select state, region from campaign_channels;

alter table customers add constraint fk_customers_states foreign key (state) references states (state);
alter table order_lines add constraint fk_order_lines_states foreign key (state) references states (state);
alter table campaign_channels add constraint fk_campaign_channels_states foreign key (state) references states (state);

Update PDM and Manually Update LDM

Let’s say we cannot utilize Auto Generation of LDM, e.g. because we manually updated the Demo model in the past, and we do not want to lose these changes.

  1. Create datasets States and Regions
  2. Add attribute ID into both datasets
  3. Set ID attributes as primary keys
  4. Create relations from Regions to States and from States to Customers and Campaign Channels. We should end up with the model below.

    Extended Demo Model - Manual Step 1

  5. Scan model without generating datasets. It is fully described in How to Scan Physical Data Model.
  6. Map States and Regions to new tables we created in the previous chapter, including the Foreign key in States.

    Extended Demo Model - Manual Step 2

  7. Map new references to States dataset in Customers and Campaign Channels.

    Extended Demo Model - Manual Step 2

Consider if you need to keep State and Region attributes in datasets Customers and Campaign Channels. They may be useful from performance point of view (prevent JOINs between underlying tables), but they have limited usage (only regions/states are displayed, which have at least one record in the related table).

Update PDM and Generate New LDM

In this case, because we defined primary and foreign keys, we can still utilize Auto Generation of LDM. Use Replace Scan mode to fully replace already stored PDM, otherwise you would end up with invalid mapping between LDM and PDM.

The result model:

Extended Demo Model - Auto Generate

Publish the Model

Go to Publish Logical Data Model to learn how to publish model.

Utilize New Model in Analytical Designer

Now let’s evaluate the new model in Analytical Designer.

Create an insight containing two measures Campaign Channels.Budget and Order lines.Quantity. Now you can slice them both by Regions.Region:

Insight with Extended Model