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
> docker container logs 3dbc59e5619d
Starting Python Closure container
Connecting to Clipper with default port: 7000
Traceback (most recent call last):
File "/container/python_closure_container.py", line 56, in <module>
rpc_service.get_input_type())
File "/container/python_closure_container.py", line 28, in __init__
self.predict_func = load_predict_func(predict_path)
File "/container/python_closure_container.py", line 17, in load_predict_func
return cloudpickle.load(serialized_func_file)
File "/usr/local/lib/python3.6/site-packages/cloudpickle/cloudpickle.py", line 1060, in _make_skel_func
base_globals['__builtins__'] = __builtins__
TypeError: 'str' object does not support item assignment
Encountered error not related to missing packages. Please refer to the container log to diagnose.
Any advice on how to proceed?
The text was updated successfully, but these errors were encountered:
The quick fix is to pip install cloudpickle==0.5.3 the reason is that your local cloudpickle version is higher than the one used in docker container, making them incompatible.
Following the steps for XGBoost deployment, I run into an issue with the command
The same behavior occurs with the quickstart guide, running
It seems this
while
loop in docker_container_manager.py will loop infinitely with no error if the container creation fails.I checked the log of the container to see this
Any advice on how to proceed?
The text was updated successfully, but these errors were encountered: