Building your data model
Although Explo can sit on top of almost any data model, here are a few tips to ensure better performance and ease of use when connecting to Explo.
Segment your data by user groups
It is very important for your data to be segmented by user groups. In most cases, a user group is your customer, but can also be different entities that you wish to split your data by.
Ensuring that tables in your database contains a field such ascustomer_id
or organization_name
can make it much easier and quicker to query and segment your data.
However, if all your tables do not have a user group field, you can always join tables in the Explo interface.
Transform or process your data to create golden tables
Golden tables are tables that contain the relevant data for a specific business process that can be easily queried to pull insights or metrics without needing to join with other tables. These tables should all have a user group field so Explo can easily segment the data in each table.
These tables should not be aggregated views but rather raw data. Furthermore, each row should have the same granularity.
As an example, if you are creating a marketplace platform, you may have 3 golden tables with the following fields:
Table
Fields
Orders
order_status
, SKU
, quantity
, shipping_cost
, price
, customer_id
, seller_id, order_date
Customers
customer_name
, customer_id
,email
, address
, payment info
Products
SKU
, product_name
, description
, seller_id
In the example above, seller_id
would be used to segment the data for each user group.
Because you can run aggregations and calculations in Explo, it is best not to run these aggregations here, so you have the flexibility to do so in Explo.
Handle schema complexity upstream
Perform more complex data transformations and calculations in the database or ETL layer rather than running those calculations in Explo. This will also dramatically improve load times.
Last updated
Was this helpful?