src/dagster_ray/configs.py:100 writes ctx.use_polars = self.use_polars. Ray 2.55 warns on that setter and proxies to use_polars_sort; every apply() / apply_remote() emits a DeprecationWarning from ray.data.context.
Fix: rename the field and setattr target to use_polars_sort. If backward-compat matters, keep use_polars as a deprecated alias on RayDataExecutionOptions that forwards to use_polars_sort.
src/dagster_ray/configs.py:100writesctx.use_polars = self.use_polars. Ray 2.55 warns on that setter and proxies touse_polars_sort; everyapply()/apply_remote()emits a DeprecationWarning fromray.data.context.Fix: rename the field and setattr target to
use_polars_sort. If backward-compat matters, keepuse_polarsas a deprecated alias onRayDataExecutionOptionsthat forwards touse_polars_sort.