xorbitsai / xorbits

Scalable Python DS & ML, in an API compatible & lightning fast way.
https://xorbits.readthedocs.io
Apache License 2.0
1.1k stars 67 forks source link

BUG: Unable to successfully start the generated xorbits web service #664

Closed YELineee closed 1 year ago

YELineee commented 1 year ago

Describe the bug

I'm having trouble creating a web service using the ' xorbits.init(init_local=True ,web=True) ' and can't successfully open the resulting web service. (This page isn’t working HTTP ERROR 502)

import xorbits
import xorbits.numpy as np

xorbits.init(init_local=True ,web=True)
print(np.random.rand(100, 100).mean())

To Reproduce

To help us to reproduce this bug, please provide information below:

  1. Your Python version ----> 3.11.4
  2. The version of Xorbits you use ----->0.5.1

Expected behavior

A clear and concise description of what you expected to happen.

Additional context

Add any other context about the problem here.

ChengjieLi28 commented 1 year ago

Hi, @YELineee . I have tried your code on Python 3.11.

image

And I can open the web UI according to the log.

Please check your network setting (maybe you have some VPN settings) or provide more specific information for us to debug. Thanks.

YELineee commented 1 year ago

Thanks