NashTech Blog

Data-Driven Risk Segmentation in Underwriting with Delta Lake

Table of Contents

In insurance underwriting, not all risks are created equal. For instance, two policyholders may appear similar on the surface, yet their claims behavior, loss patterns, and profitability can vary dramatically over time. The ability to identify, monitor, and act on these differences is what separates data-driven insurers from those relying on static rules and intuition. 

In our previous blog, Creating a Single Risk Profile for Underwriters with Delta Lake, we explored how Delta Lake helps consolidate policy, claims, customer, and third-party data into a unified underwriting view. Once insurers establish that single source of truth, the next challenge emerges: 

How can underwriters effectively segment portfolios into meaningful risk categories and continuously refine those segments as new data arrives?

This is where Delta Lake provide a significant advantage. By combining scalable analytics, historical data versioning, and real-time data processing, insurers can continuously measure underwriting performance across risk segments and make more informed decisions about pricing, appetite, and portfolio management.

Why Risk Segmentation Matters?

Risk segmentation is the practice of categorizing policies, customers, or exposures into groups based on their risk characteristics. These segments help insurers: 

  • Improve underwriting consistency
  • Identify profitable and unprofitable portfolios
  • Optimize pricing strategies
  • Monitor emerging risks
  • Allocate capital more effectively 

Traditionally, risk segmentation was often limited by data silos and periodic reporting cycles. Underwriters would review quarterly reports or rely on predefined risk scores that quickly became outdated.

Modern insurers require dynamic segmentation that adapts as policyholder behavior, market conditions, and claims experience evolve. Delta Lake enables exactly that by providing reliable, governed, and continuously updated underwriting datasets.

Building a Segmentation Foundation

Before meaningful segmentation can occur, insurance providers must bring together various sources of underwriting intelligence. These sources typically include:

  • Policy administration systems
  • Claims platforms
  • Credit and financial data
  • Telematics data
  • Property inspection records

Delta Lake acts as the unified storage layer where all these datasets can be ingested, standardized, and enriched. Also, Delta Lake supports ACID transactions and schema enforcement, underwriting teams can trust that the data used for segmentation is accurate and consistent.

Historical versions of data can also be preserved, allowing insurers to analyze how portfolio performance changes over time. This temporal capability becomes especially valuable when evaluating whether a particular risk segment has improved or deteriorated following underwriting rule changes.

Risk Tier Analysis

One of the most common segmentation approaches involves classifying policies into risk tiers such as: 

  • Low Risk
  • Medium Risk 
  • High Risk 

These tiers may be determined using underwriting scores, predictive models, claims history, industry classifications, or a combination of factors. With Delta Lake, insurers can continuously evaluate: 

  • New business volume by tier 
  • Loss frequency by tier 
  • Average claim severity 
  • Renewal rates 
  • Underwriting profitability 

For example, an auto insurer may discover that policies classified as “High Risk” account for only 15% of total written premiums but generate 35% of claims costs. Using Delta Lake analytics, underwriters can quickly drill into the underlying drivers: 

  • Previous accident history
  • Driver age groups
  • Geographic concentration
  • Vehicle categories
  • Driving behavior patterns

Rather than treating all high-risk policies equally, insurers can create more granular risk segments and make targeted underwriting decisions.

Loss Ratio Analytics

Loss ratio remains one of the most important performance indicators for insurance providers.

Loss Ratio = Claims Incurred ÷ Earned Premium 

While aggregate loss ratios provide a high-level view of performance, they often mask important trends within specific segments. Using Delta Lake, insurance providers can calculate loss ratios across multiple dimensions:

  • Product lines
  • Geography
  • Customer demographics
  • Policy tenure
  • Industry sectors

Because Delta Lake maintains historical snapshots of underwriting data, insurance providers can compare loss ratios over months, quarters, or years without managing separate reporting datasets. 

Consider a commercial property portfolio. Analysis may reveal:

Risk Segment Average Loss Ratio 
Low Exposure Properties48% 
Medium Exposure Properties 67% 
High Exposure Properties 98% 

Such insights allow underwriters to determine whether pricing adjustments, revised eligibility criteria, or additional inspections are needed for specific segments. Instead of reacting to portfolio-wide deterioration, insurance providers can proactively address emerging problem areas before they materially impact profitability.

Portfolio Segmentation at Scale

As insurance providers grow, managing risk at the individual policy level becomes increasingly difficult. Portfolio segmentation enables underwriting teams to understand risk exposure across large books of business.

Delta Lake makes it possible to analyze millions of policy records and identify patterns that would otherwise remain hidden. Some common segmentation dimensions include: 

By Industry

For commercial insurance providers: 

  • Manufacturing
  • Retail
  • Healthcare
  • Construction
  • Technology

By Geography 

For property and casualty insurance providers: 

  • Flood-prone regions
  • Wildfire zones
  • Urban/Rural locations 

By Customer Behavior 

For personal lines: 

  • Claim-free customers
  • Frequent claimants
  • High-mileage drivers 

These portfolio views help insurance providers balance growth objectives with risk management goals.

Practical Example: Creating Dynamic Risk Segments

In the previous blog, we created a unified underwriting risk profile by combining policy, claims, and credit data into a Gold-layer Delta table. The resulting dataset provided a risk score and underwriting risk grade for every customer.

Now we can take the next step and use that profile to perform portfolio segmentation and underwriting performance analysis.

Segmenting Customers by Underwriting Risk

Using the Gold-layer risk profile, underwriters can classify customers into portfolio segments and evaluate how claims experience differs across each group.

SELECT 
    underwriting_risk_grade, 
    COUNT(*) AS total_customers, 
    AVG(risk_score) AS avg_risk_score, 
    SUM(total_claim_amount) AS total_claims_cost, 
    AVG(avg_premium) AS avg_premium 
FROM gold.underwriting_risk_profile 
GROUP BY underwriting_risk_grade 
ORDER BY underwriting_risk_grade;
Underwriting Risk GradeTotal CustomersAvg Risk ScoreTotal Claims CostAvg Premium
HIGH651.77686,8001,683.333
LOW987.6870,7001,281.111
MEDIUM1572.19250,6001,895.017

Because the underlying risk profile already combines policy information, credit history, and claim activity, the query immediately provides a portfolio-wide view of risk concentration.

Calculating Segment-Level Loss Ratios

Once customers are segmented, insurers can analyze profitability by risk tier.

SELECT 
    underwriting_risk_grade, 
    SUM(total_claim_amount) AS claims_cost, 
    SUM(avg_premium) AS premium, 
    ROUND( 
        SUM(total_claim_amount) / 
        SUM(avg_premium), 
        2 
    ) AS loss_ratio 
FROM gold.underwriting_risk_profile 
GROUP BY underwriting_risk_grade 
ORDER BY loss_ratio DESC;
Underwriting Risk GradeClaims CostPremiumLoss Ratio
HIGH686,80010,10068
MEDIUM250,60028,425.258.82
LOW70,70011,5306.13

This analysis allows underwriting teams to identify whether HIGH risk segments are generating disproportionate losses and whether LOW risk customers are being priced competitively.

Example Findings 

Using the sample dataset from our implementation, we would expect customers with: 

  • declining credit scores, 
  • multiple claims, 
  • higher accumulated claim amounts, 

To migrate toward the HIGH underwriting risk segment. For instance, customer CUST027 exhibit a combination of deteriorating credit profiles and significant claims history, making it a strong candidate for closer underwriting review.

Conversely, customers with strong credit performance and limited claims activity naturally remain in lower-risk segments and may qualify for more favorable pricing or accelerated underwriting workflows.

Tracking Segment Movement Over Time

A particularly valuable capability in the solution is the implementation of a Slowly Changing Dimension (SCD Type 2) table named:

gold.underwriting_risk_profile_scd

This table preserves historical changes to customer risk profiles, allowing insurers to analyze how customers move between risk categories over time.

SELECT 
    customer_id,
    credit_score,
    underwriting_risk_grade, 
    effective_start_date, 
    effective_end_date 
FROM gold.underwriting_risk_profile_scd 
ORDER BY customer_id, effective_start_date;
Customer IDCredit ScoreUnderwriting Risk GradeEffective Start DateEffective End Date
CUST027625MEDIUM2026-07-13T19:09:49.9162026-07-13T19:35:24.275
CUST027525HIGH2026-07-13T19:35:36.440null

Using Delta Lake’s historical tracking capabilities, underwriters can answer questions such as: 

  • How many customers moved from LOW to HIGH risk during the last year? 
  • Did a pricing change improve performance within a specific segment? 
  • Which risk categories experience the highest migration rates? 
  • How does loss ratio evolve after a customer enters a high-risk segment? 

Rather than relying on static snapshots, insurers gain a longitudinal view of risk behavior across the portfolio.

Business Value

This approach transforms a unified risk profile into a continuously evolving segmentation framework.  By combining Delta Lake’s scalable storage, Databricks analytics, and historical SCD tracking, insurers can: 

  • Monitor segment-level profitability 
  • Identify emerging high-risk cohorts 
  • Measure risk migration trends 
  • Improve underwriting guidelines 
  • Support data-driven pricing strategies 

Most importantly, underwriting decisions become evidence-based rather than reactive, allowing insurers to continuously optimize portfolio performance as new claims and customer information arrive.

From Data to Better Underwriting Decisions

The insurance industry is increasingly shifting from broad risk classifications toward highly granular, data-driven underwriting strategies. However, sophisticated segmentation is only possible when data is consistent, accessible, and analyzable at scale. 

Delta Lake provide the foundation insurance providers need to: 

  • Unify underwriting and claims data 
  • Build dynamic risk segments 
  • Monitor loss ratio performance 
  • Detect emerging risk trends 
  • Measure underwriting outcomes over time 

By transforming raw underwriting data into actionable portfolio intelligence, insurers can improve profitability, enhance risk selection, and respond more effectively to changing market conditions.

As underwriting becomes increasingly data-centric, risk segmentation is no longer just an analytical exercise. It is becoming a core capability for insurers seeking to compete in a rapidly evolving risk landscape.

In-Summary

Modern underwriting requires more than a single view of risk. It requires the ability to understand how different risk segments perform, evolve, and contribute to portfolio outcomes over time.

Building on a unified risk profile, Delta Lake enables insurers to create dynamic segmentation models that reveal deeper insights into underwriting performance. Whether analyzing high-risk auto policies, commercial property portfolios, or cyber insurance exposures, insurers can use data-driven segmentation to make smarter, faster, and more profitable decisions.

In the next stage of underwriting transformation, the winners will not simply have more data. They will be the insurers that can continuously learn from it and translate those insights into better risk selection and portfolio management.

Picture of Himanshu Gupta

Himanshu Gupta

Himanshu is a Principal Architect at NashTech. He has worked with more than a dozen customers, helping them design and deliver mission critical systems built on modern architectures, platform engineering practices, and Cloud inspired operating models. Outside of work, he focuses on continuous learning and sharing knowledge with the tech community.

Suggested Article

Scroll to Top