1

鉴于 prestosql 集群已启动并收听localhost:8080,我发现它将请求重定向到http://localhost:8080/ui/

> curl -v http://localhost:8080/
*   Trying 127.0.0.1:8080...
* Connected to localhost (127.0.0.1) port 8080 (#0)
> GET / HTTP/1.1
> Host: localhost:8080
> User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0
> Accept: */*
> Referer: 
> 
* Mark bundle as not supporting multiuse
< HTTP/1.1 303 See Other
< Date: Thu, 02 Jul 2020 14:07:10 GMT
< Location: http://localhost:8080/ui/
< Content-Length: 0

反正有没有支持这样的前缀,/prestosql以便它可以将请求从/prestosqlto/prestosql/ui而不是重定向/ui/

该场景是关于在 prestosql 前面使用网关,然后通过 URL 重写路由请求。例如,Nginx/HAProxy 或 Istio 虚拟服务。

4

1 回答 1

1

这是不可能的,并且需要相当多的工作,因为 Presto 的 UI HTML 和 javascript 代码并期望/ui/...路径上提供各种资源。

请参阅https://github.com/prestosql/presto/issues/3706上的先前讨论

于 2020-07-02T18:25:23.987 回答