Polaris Benchmarks
January 7, 2026 · View on GitHub
Benchmarks for the Polaris service using Gatling.
Available Benchmarks
org.apache.polaris.benchmarks.simulations.CreateTreeDataset: Creates a test dataset with a specific structure. It is a write-only workload designed to populate the system for subsequent benchmarks.org.apache.polaris.benchmarks.simulations.ReadTreeDataset: Performs read-only operations to fetch namespaces, tables, and views. Some attributes of the objects are also fetched. This benchmark is intended to be used against a Polaris instance with a pre-existing tree dataset. It has no side effects on the dataset and can be executed multiple times without any issues.org.apache.polaris.benchmarks.simulations.ReadUpdateTreeDataset: Performs read and update operations against a Polaris instance populated with a test dataset. It is a read/write workload that can be used to test the system's ability to handle concurrent read and update operations. It is not destructive and does not prevent subsequent executions ofReadTreeDatasetorReadUpdateTreeDataset.org.apache.polaris.benchmarks.simulations.CreateCommits: Creates table and view commits at configurable rates. This benchmark is useful for testing the system's ability to handle table and view commits and can be used to generate a history of thousands of commits for both tables and views.org.apache.polaris.benchmarks.simulations.WeightedWorkloadOnTreeDataset: Performs reads and writes against tables in accordance with the configured distributions. This is useful for testing performance when clients conflict.
Parameters
All parameters are configured through the benchmark-defaults.conf file located in src/gatling/resources/. The configuration uses the Typesafe Config format. The reference configuration file contains default values as well as documentation for each parameter.
Dataset Structure Parameters
These parameters must be consistent across all benchmarks and are configured under dataset.tree:
dataset.tree {
num-catalogs = 1 # Number of catalogs to create
namespace-width = 2 # Width of the namespace tree
namespace-depth = 4 # Depth of the namespace tree
tables-per-namespace = 5 # Tables per namespace
views-per-namespace = 3 # Views per namespace
columns-per-table = 10 # Columns per table
columns-per-view = 10 # Columns per view
default-base-location = "file:///tmp/polaris" # Base location for datasets
namespace-properties = 10 # Number of properties to add to each namespace
table-properties = 10 # Number of properties to add to each table
view-properties = 10 # Number of properties to add to each view
max-tables = -1 # Cap on total tables (-1 for no cap). Must be less than N^(D-1) * tables-per-namespace
max-views = -1 # Cap on total views (-1 for no cap). Must be less than N^(D-1) * views-per-namespace
mangle-names = false # Whether to replace entity names with MD5 hashes (default: false uses NS_0, T_0, V_0 patterns)
}
Connection Parameters
Connection settings are configured under http:
http {
base-url = "http://localhost:8181" # Service URL
}
Authentication Parameters
Authentication settings are configured under auth:
auth {
client-id = null # Required: OAuth2 client ID
client-secret = null # Required: OAuth2 client secret
max-retries = 10 # Maximum number of retry attempts for authentication failures
retryable-http-codes = [500] # HTTP status codes that should trigger a retry
refresh-interval-seconds = 60 # Refresh interval for the authentication token in seconds
}
Workload Parameters
Workload settings are configured under workload:
workload {
read-update-tree-dataset {
read-write-ratio = 0.8 # Ratio of reads (0.0-1.0)
}
}
Configuring the Benchmarks
The benchmark uses typesafe-config for configuration management. Default settings are in src/gatling/resources/benchmark-defaults.conf. This file should not be modified directly.
To customize the benchmark settings, create your own application.conf file and specify it using the -Dconfig.file parameter. Your settings will override the default values.
Example application.conf:
auth {
client-id = "your-client-id"
client-secret = "your-client-secret"
}
http {
base-url = "http://your-polaris-instance:8181"
}
workload {
read-update-tree-dataset {
read-write-ratio = 0.8 # Ratio of reads (0.0-1.0)
}
}
Example of configuration for using AWS S3 as a catalog store
dataset.tree {
default-base-location = "s3://polaris-demo/benchmarks"
storage-config-info = "{\"storageType\": \"S3\", \"roleArn\": \"arn:aws:iam::123456789012:role/polaris-demo-role\", \"allowedLocations\": [\"s3://polaris-demo/benchmarks\"], \"region\": \"eu-central-1\"}"
}
Running the Benchmarks
Run benchmarks with your configuration:
# Dataset creation
make create-dataset-simulation
# Read/Update operations
make read-update-simulation
# Read-only operations
make read-simulation
# Commits creation
make create-commits-simulation
# Weighted workload
make weighted-workload-simulation
A message will show the location of the Gatling report:
Reports generated in: ./benchmarks/build/reports/gatling/<simulation-name>/index.html

Example Polaris server startup
For repeated testing and benchmarking purposes it's convenient to have fixed client-ID + client-secret combinations. The following example is ONLY for testing and benchmarking against an airgapped Polaris instance
# Start Polaris with the fixed client-ID/secret admin/admin
# DO NEVER EVER USE THE FOLLOWING FOR ANY NON-AIRGAPPED POLARIS INSTANCE !!
./gradlew :polaris-server:assemble :polaris-server:quarkusAppPartsBuild && java \
-Dpolaris.bootstrap.credentials=POLARIS,admin,admin \
-Djava.security.manager=allow \
-jar runtime/server/build/quarkus-app/quarkus-run.jar
With the above you can run the benchmarks using a configuration file with client-id = "admin" and client-secret = "admin" - meant only for convenience in a fully airgapped system.
Benchmarks results
- List all reports
make reports-list
Ex. output:
readtreedataset | 2025-12-04 12:54:33.540 | build/reports/gatling/readtreedataset-20251204125433540/index.html
- Open the report in browser
open build/reports/gatling/readtreedataset-20251204125433540/index.html
- Clean all reports
make reports-clean
Test Dataset
The benchmarks use synthetic procedural datasets that are generated deterministically at runtime. This means that given the same input parameters, the exact same dataset structure will always be generated. This approach allows generating large volumes of test data without having to store it, while ensuring reproducible benchmark results across different runs.
The diagrams below describe the data sets that are used in benchmarks. Note that the benchmark dataset may not cover all Polaris features.
Generation rules
The dataset has a tree shape. At the root of the tree is a Polaris realm that must exist before the dataset is created.
An arbitrary number of catalogs can be created under the realm. However, only the first catalog (C_0) is used for the rest of the dataset.
The namespaces part of the dataset is a complete N-ary tree. That is, it starts with a root namespace (by default named NS_0) and then, each namespace contains exactly 0 or N children namespaces. The width as well as the depth of the namespaces tree are configurable. The total number of namespaces can easily be calculated with the following formulae, where N is the tree width and D is the total tree depth, including the root: