This app demonstrates the real-time incremental computation capabilities of Materialize in the context of an e-commerce website.
An e-commerce business wants to understand:
- Order trends throughout the day to discern patterns.
- What is selling the most?
- Understand supply/demand and manage inventory.
- Show inventory status in the website to encourage users to buy.
- Conversion Funnel: Effectiveness of the website in converting pageviews to actual buys.
- Low-stock Alerts: Generate alerts and automatically place orders to the warehouse if a specific item is close to running out of stock
We'll build materialized views that answer most of the questions by providing data in a business intelligence dashboard.
To generate the data we'll simulate users, items, purchases and pageviews on a fictional e-commerce website.
To simplify deploying all of this infrastructure, the demo is enclosed in a series of Docker images glued together via Docker Compose. As a secondary benefit, you can run the demo via Linux, an EC2 VM instance, or a Mac laptop.
The docker-compose file spins up containers with the following names, connections and roles:
Our load generator (loadgen
) is a python script that does two things:
- It seeds MySQL with
item
,user
andpurchase
tables, and then begins rapidly addingpurchase
rows that join an item and a user. (~10 per second) - It simultaneously begins sending JSON-encoded
pageview
events directly to kafka. (~750 per second)
As the database writes occur, Debezium/Kafka stream the changes out of MySQL. Materialize subscribes to this change feed and maintains our materialized views with the incoming data––materialized views typically being some report whose information we're regularly interested in viewing.
For example, if we wanted real time statistics of total pageviews and orders by item, Materialize could maintain that report as a materialized view. And, in fact, that is exactly what this demo will show.
M1 Mac Warning |
---|
This demo relies heavily on Docker images from several different sources, we haven't tested it on Apple M1 Silicon yet, which is known to have Docker compatibility issues. |
If you're on a Mac laptop, you might want to increase the amount of memory available to Docker Engine.
- From the Docker Desktop menu bar app, select Preferences.
- Go to the Advanced tab.
- Select at least 8 GiB of Memory.
- Click Apply and Restart.
You'll need to have docker and docker-compose installed before getting started.
-
Clone this repo and navigate to the directory by running:
git clone https://github.com/MaterializeInc/ecommerce-demo.git cd ecommerce-demo
-
Bring up the Docker Compose containers in the background:
docker-compose up -d
This may take several minutes to complete the first time you run it. If all goes well, you'll have everything running in their own containers, with Debezium configured to ship changes from MySQL into Kafka.
-
Launch the Materialize CLI.
docker-compose run mzcli
(This is just a shortcut to a docker container with postgres-client pre-installed, if you already have psql you could run
psql -U materialize -h localhost -p 6875 materialize
) -
Now that you're in the Materialize CLI, define all of the tables in
mysql.shop
as Kafka sources:CREATE SOURCE purchases FROM KAFKA BROKER 'kafka:9092' TOPIC 'mysql.shop.purchases' FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY 'http://schema-registry:8081' ENVELOPE DEBEZIUM; CREATE SOURCE items FROM KAFKA BROKER 'kafka:9092' TOPIC 'mysql.shop.items' FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY 'http://schema-registry:8081' ENVELOPE DEBEZIUM; CREATE SOURCE users FROM KAFKA BROKER 'kafka:9092' TOPIC 'mysql.shop.users' FORMAT AVRO USING CONFLUENT SCHEMA REGISTRY 'http://schema-registry:8081' ENVELOPE DEBEZIUM;
Because these sources are pulling message schema data from the registry, materialize knows the column types to use for each attribute.
-
We'll also want to create a JSON-formatted source for the pageviews:
CREATE SOURCE json_pageviews FROM KAFKA BROKER 'kafka:9092' TOPIC 'pageviews' FORMAT BYTES;
With JSON-formatted messages, we don't know the schema so the JSON is pulled in as raw bytes and we still need to CAST data into the proper columns and types. We'll show that in the step below.
Now if you run
SHOW SOURCES;
in the CLI, you should see the four sources we created:materialize=> SHOW SOURCES; name ---------------- items json_pageviews purchases users (4 rows) materialize=>
-
Next we will create our first Materialized View, summarizing pageviews by item and channel:
CREATE MATERIALIZED VIEW item_pageviews AS SELECT (regexp_match((data->'url')::STRING, '/products/(\d+)')[1])::INT AS item_id, data->>'channel' as channel, COUNT(*) as pageviews FROM ( SELECT CAST(data AS jsonb) AS data FROM ( SELECT convert_from(data, 'utf8') AS data FROM json_pageviews )) GROUP BY 1, 2;
As you can see here, we are doing a couple extra steps to get the pageview data into the format we need:
-
We are converting from raw bytes to utf8 encoded text to jsonb:
SELECT CAST(data AS jsonb) AS data FROM ( SELECT convert_from(data, 'utf8') AS data FROM json_pageviews )
-
We are using postgres JSON notation (
data->'url'
), type casts (::STRING
) and regexp_match function to extract only the item_id from the raw pageview URL.(regexp_match((data->'url')::STRING, '/products/(\d+)')[1])::INT AS item_id,
-
-
Now if you select results from the view, you should see data populating:
SELECT * FROM item_pageviews ORDER BY pageviews DESC LIMIT 10;
If you re-run it a few times you should see the pageview counts changing as new data comes in and gets materialized in real time.
-
Let's create some more materialized views:
Purchase Summary:
CREATE MATERIALIZED VIEW purchase_summary AS SELECT item_id, SUM(purchase_price) as revenue, COUNT(id) AS orders, SUM(quantity) AS items_sold FROM purchases GROUP BY 1;
Item Summary: (Using purchase summary and pageview summary internally)
CREATE MATERIALIZED VIEW item_summary AS SELECT items.name, items.category, SUM(purchase_summary.items_sold) as items_sold, SUM(purchase_summary.orders) as orders, SUM(purchase_summary.revenue) as revenue, SUM(item_pageviews.pageviews) as pageviews, SUM(purchase_summary.orders) / SUM(item_pageviews.pageviews)::FLOAT AS conversion_rate FROM items JOIN purchase_summary ON purchase_summary.item_id = items.id JOIN item_pageviews ON item_pageviews.item_id = items.id GROUP BY 1, 2;
This view shows some of the JOIN capabilities of Materialize, we're joining our two previous views with items to create a summary of purchases, pageviews, and conversion rates.
If you select from
item_summary
you can see the results in real-time:SELECT * FROM item_summary ORDER BY conversion_rate DESC LIMIT 10;
Remaining Stock: This view joins items and (all purchases created after an item's inventory was updated) and creates a column that subtracts quantity_sold from inventory to get a live in-stock count.
CREATE MATERIALIZED VIEW remaining_stock AS SELECT items.id as item_id, MAX(items.inventory) - SUM(purchases.quantity) AS remaining_stock FROM items JOIN purchases ON purchases.item_id = items.id AND purchases.created_at > items.inventory_updated_at GROUP BY items.id;
Trending Items: Here we are doing a bit of a hack because Materialize doesn't yet support window functions like
RANK
. So instead we are doing a self join onpurchase_summary
and counting up the items with more purchases than the current item to get a basic "trending" rank datapoint.CREATE MATERIALIZED VIEW trending_items AS SELECT p1.item_id, ( SELECT COUNT(*) FROM purchase_summary p2 WHERE p2.items_sold > p1.items_sold ) as trend_rank FROM purchase_summary p1;
Lastly, let's bring the trending items and remaining stock views together to create a view that a user-facing application might read from:
CREATE MATERIALIZED VIEW item_metadata AS SELECT rs.item_id as id, rs.remaining_stock, ti.trend_rank FROM remaining_stock rs JOIN trending_items ti ON ti.item_id = rs.item_id;
Now if you run
SHOW VIEWS;
you should see all the views we just created:materialize=> SHOW VIEWS; name ------------------ item_metadata item_pageviews item_summary purchase_summary remaining_stock trending_items (6 rows)
-
Now you've materialized some views that we can use in a business intelligence tool, metabase, to read and display them in pretty charts. Close out of the Materialize CLI (Ctrl + D).
-
In a browser, go to localhost:3030 (or <IP_ADDRESS:3030> if running on a VM).
-
Click Let's get started.
-
Complete the first set of fields asking for your email address. This information isn't crucial for anything but does have to be filled in.
-
On the Add your data page, fill in the following information:
Field Enter... Database Materialize Name shop Host materialized Port 6875 Database name materialize Database username materialize Database password Leave empty. -
Proceed past the screens until you reach your primary dashboard.
-
Click Ask a question
-
Click Native query.
-
From Select a database, select shop.
-
In the query editor, enter:
SELECT * FROM item_summary ORDER BY conversion_rate DESC;
-
You can save the output and add it to a dashboard, once you've drafted a dashboard you can manually set the refresh rate to 1 second by adding
#refresh=1
to the end of the URL, here is an example of a real-time dashboard of top-viewed items and top converting items:
You now have materialize doing real-time materialized views on a changefeed from a database and pageview events from kafka. You have complex multi-layer views doing JOIN's and aggregations in order to distill the raw data into a form that's useful for downstream applications. In metabase, you have the ability to create dashboards and reports using the real-time data.
You have a lot of infrastructure running in docker containers, don't forget to run docker-compose down
to shut everything down!