Environment types for data publishing in Fiddler. This enum defines the two primary environment types used when publishing inference data to Fiddler. The environment type determines how Fiddler processes, stores, and monitors the data.Documentation Index
Fetch the complete documentation index at: https://handbook.fiddler.ai/llms.txt
Use this file to discover all available pages before exploring further.
PRODUCTION
Live inference data from production model deploymentsPRE_PRODUCTION
Static baseline datasets for drift detection referenceExamples
Publishing pre-production baseline data:Environment types cannot be changed after data publication. Choose the appropriate environment based on your data’s intended use case.
PRODUCTION = ‘PRODUCTION’
Production environment for live inference data. Used for time-series inference data from live model deployments. This data:- Gets monitored continuously for drift and performance issues
- Is compared against baseline datasets for anomaly detection
- Supports real-time streaming and batch publishing
- Is subject to data retention policies (typically 90 days)
- Enables alert rule evaluation and dashboard visualization
- Live model inference results
- Real-time prediction streaming
- Batch inference job outputs
- A/B testing data
- Production model monitoring
- Time-series with timestamps
- Continuous data flow
- Variable data volumes
- Monitored for drift patterns
PRE_PRODUCTION = ‘PRE_PRODUCTION’
Pre-production environment for baseline datasets. Used for static datasets that serve as reference points for monitoring. This data:- Remains immutable after publication
- Serves as baseline for drift detection calculations
- Represents expected model behavior and data distributions
- Is retained indefinitely for comparison purposes
- Does not appear in time-series monitoring charts
- Training dataset baselines
- Validation dataset references
- Historical “golden” datasets
- Model performance benchmarks
- Data distribution references
- Static, unchanging datasets
- Representative of expected distributions
- Used for statistical comparisons
- No time-series component