Configure Egress Cost Optimizer¶
If you’re a provider, you can use Cross-Cloud Auto-Fulfillment (auto-fulfillment) for a listing to automatically replicate your data product to other Snowflake regions without having to manually replicate data.
This section describes how to authorize multi-region sharing and enable and disable Egress Cost Optimizer (ECO) for your account or database.
Enabling Egress Cost Optimizer¶
You can enable ECO at the account or database level.
Where an auto-fulfillment schedule is set on the account level, rather than on the database level, the egress cost optimizer will be enabled on all the listings that follow the account schedule.
Enable or disable ECO for an entire account¶
In the navigation menu, select Data Products » Provider Studio.
Select the Settings tab.
Click Get Started.
Click Authorize.
You can enable egress cost optimization by executing the ALTER ACCOUNT command to set the ENABLE_EGRESS_COST_OPTIMIZER parameter to TRUE:
ALTER ACCOUNT SET ENABLE_EGRESS_COST_OPTIMIZER=TRUE;
To disable egress cost optimization, set the ENABLE_EGRESS_COST_OPTIMIZER parameter to FALSE:
ALTER ACCOUNT SET ENABLE_EGRESS_COST_OPTIMIZER=FALSE;
For more information see ALTER ACCOUNT.