Orca Known Issues¶
Estimator Issues¶
Orca Context Issues¶
Exception: Failed to read dashbord log: [Errno 2] No such file or directory: ‘/tmp/ray/…/dashboard.log’¶
This error occurs when initialize an orca context with init_ray_on_spark=True. We have not locate the root cause of this problem, but it might be caused by an atypical python environment.
You could follow below steps to workaround:
If you only need to use functions in ray (e.g.
bigdl.orca.learnwithbackend="ray",bigdl.orca.automlfor pytorch/tensorflow model,bigdl.chronos.autotsfor time series model’s auto-tunning), we may use ray as the first-class.Start a ray cluster by
ray start --head. if you already have a ray cluster started, please direcetly jump to step 2.Initialize an orca context with
runtime="ray"andinit_ray_on_spark=False, please refer to detailed information here.If you are using
bigdl.orca.automlorbigdl.chronos.autotson a single node, please set:ray_ctx = OrcaContext.get_ray_context() ray_ctx.is_local=True
If you really need to use ray on spark, please install bigdl-orca under a conda environment. Detailed information please refer to here.