Mastodon usage - counting toots with DuckDB
 
 
 
Go to file
Simon Aubury e69cb9da89 add gifs 2023-02-24 14:22:24 +11:00
avro Incremental dev 2023-02-14 16:02:54 +11:00
config cleanup 2023-02-21 18:07:26 +11:00
docs add gifs 2023-02-24 14:22:24 +11:00
kafka-connect further cleanup 2023-02-17 11:17:29 +11:00
notebooks cleanup folders 2023-02-21 18:04:56 +11:00
.env Incremental dev 2023-02-14 16:02:54 +11:00
.gitignore Incremental dev 2023-02-14 16:02:54 +11:00
README.md Add docker commands 2023-02-23 16:26:44 +11:00
docker-compose.yml Remove unused containers 2023-02-23 16:29:47 +11:00
kafkaproducer.py cleanup 2023-02-21 18:07:26 +11:00
mastodonlisten.py Resiliance fixes 2023-02-06 06:51:22 +11:00
requirements.txt update 2023-02-21 16:50:57 +11:00

README.md

Mastodon usage - counting toots with DuckDB

Mastodon is a decentralized social networking platform. Mastodon users are members of a specific Mastodon server, and servers are capable of joining other servers to form a global (or at least federated) social network.

I wanted to start exploring Mastodon usage, and perform some exploratory data analysis of user activity, server popularity and language usage. You may want to jump straight to the data analysis

Tools used

  • Mastodon.py - Python library for interacting with the Mastodon API
  • Apache Kafka - distributed event streaming platform
  • DuckDB - in-process SQL OLAP database and the HTTPFS DuckDB extension for reading remote/writing remote files of object storage using the S3 API
  • MinIO - S3 compatible server
  • Seaborn - visualization library

mastodon architecture

Data processing

We will us Kafka as distributed stream processing platform to collect data from multiple instances. To run Kafka, Kafka Connect (with the S3 sink connector) and schema registry (to support AVRO serialisation) and MinIO setup containers with this command

 docker-compose up -d

Data collection

Setup virtual python environment

Create a virtual python environment to keep dependencies separate. The venv module is the preferred way to create and manage virtual environments.

python3 -m venv env

Before you can start installing or using packages in your virtual environment youll need to activate it.

source env/bin/activate
pip install --upgrade pip
pip install -r requirements.txt

Federated timeline

These are the most recent public posts from people on this and other servers of the decentralized network that this server knows about.

Mastodon listener

The python mastodonlisten application listens for public posts to the specified server, and sends each toot to Kafka. You can run multiple Mastodon listeners, each listening to the activity of different servers

python mastodonlisten.py --baseURL https://mastodon.social --enableKafka

Testing producer (optional)

As an optional step, you can check that AVRO messages are being written to kafka

kafka-avro-console-consumer --bootstrap-server localhost:9092 --topic mastodon-topic --from-beginning

Kafka Connect

To load the Kafka Connect config file run the following

curl -X PUT -H  "Content-Type:application/json" localhost:8083/connectors/mastodon-sink-s3/config -d '@./config/mastodon-sink-s3-minio.json'

Open s3 browser

Go to the MinIO web browser http://localhost:9001/

  • username minio
  • password minio123

Data analysis

Now we have collected a week of Mastodon activity, let's have a look at some data. These steps are detailed in the notebook

Query parquet files directly from s3 using DuckDB

Load the HTTPFS DuckDB extension for reading remote/writing remote files of object storage using the S3 API

INSTALL httpfs;
LOAD httpfs;

set s3_endpoint='localhost:9000';
set s3_access_key_id='minio';
set s3_secret_access_key='minio123';
set s3_use_ssl=false;
set s3_url_style='path';

And you can now query the parquet files directly from s3

select *
from read_parquet('s3://mastodon/topics/mastodon-topic/partition=0/*');

SQL

Daily Mastodon usage

We can query the mastodon_toot table directly to see the number of toots, users each day by counting and grouping the activity by the day

We can use the mode aggregate function to find the most frequent "bot" and "not-bot" users to find the most active Mastodon users

The Mastodon app landscape

What clients are used to access mastodon instances. We take the query the mastodon_toot table, excluding "bots" and load query results into the mastodon_app_df Panda dataframe. Seaborn is a visualization library for statistical graphics in Python, built on the top of matplotlib. It also works really well with Panda data structures.

App usage

Time of day Mastodon usage

Let's see when Mastodon is used throughout the day and night. I want to get a raw hourly cound of toots each hour of each day. We can load the results of this query into the mastodon_usage_df dataframe

hour of day

Language usage

A wildly inaccurate investigation of language tags

language usage

Language density

A wildly inaccurate investigation of language tags

language density

Optional steps

Cleanup of virtual environment

If you want to switch projects or otherwise leave your virtual environment, simply run:

deactivate

If you want to re-enter the virtual environment just follow the same instructions above about activating a virtual environment. Theres no need to re-create the virtual environment.