You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered a compatibility problem when using snowflake-ml-python within a Snowflake Native App environment. The issue stems from the internal use of snowpark.DataFrame.save_as_table within the library (e.g., in OrdinalEncoder).
This method appears to create a temporary table under the hood:
However, Snowflake Native Apps have a restriction that prevents the creation of temporary tables. This incompatibility renders certain parts of snowflake-ml-python unusable within Native Apps.
Suggested Resolution:
I'd like to request that the team consider a modification to address this limitation.
The text was updated successfully, but these errors were encountered:
I've encountered a compatibility problem when using snowflake-ml-python within a Snowflake Native App environment. The issue stems from the internal use of snowpark.DataFrame.save_as_table within the library (e.g., in OrdinalEncoder).
This method appears to create a temporary table under the hood:
snowflake-ml-python/snowflake/ml/modeling/preprocessing/ordinal_encoder.py
Lines 250 to 258 in 2932445
However, Snowflake Native Apps have a restriction that prevents the creation of temporary tables. This incompatibility renders certain parts of snowflake-ml-python unusable within Native Apps.
Suggested Resolution:
I'd like to request that the team consider a modification to address this limitation.
The text was updated successfully, but these errors were encountered: