We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flink-doris-connector-1.20-24.0.0
When I just specify fenodes I get
Failed to get response from Doris http://some-fe:8030/api/FLINKUSER/TABLE1/_schema, http code is 303
In case I specify some-fe:8050 (the https port), I obviously get:
some-fe:8050
Failed to connect to host:http://some-fe:8050 java.net.SocketException: Unexpected end of file from server
If I try set fenodes to https://some-fe:8050:
https://some-fe:8050
Failed to connect to host:http://https://some-fe:8050 java.net.UnknownHostException: https
There are several places in code, where plain http is hardcoded, e.g.:
doris-flink-connector/flink-doris-connector/src/main/java/org/apache/doris/flink/rest/RestService.java
Line 362 in c61342f
Support for https FE, either via explicit protocol specification via https://some-fe:port or by following redirect issued by FE.
https://some-fe:port
No response
The text was updated successfully, but these errors were encountered:
The format of fenodes is ip:port. https needs to configure the fe certificate https://doris.apache.org/zh-CN/docs/dev/admin-manual/auth/fe-certificate/. Currently, be does not support https
Sorry, something went wrong.
@JNSimba thank you. I opened merge request #494 to enable https connection to fe.
Successfully merging a pull request may close this issue.
Search before asking
Version
flink-doris-connector-1.20-24.0.0
What's Wrong?
When I just specify fenodes I get
In case I specify
some-fe:8050
(the https port), I obviously get:If I try set fenodes to
https://some-fe:8050
:There are several places in code, where plain http is hardcoded, e.g.:
doris-flink-connector/flink-doris-connector/src/main/java/org/apache/doris/flink/rest/RestService.java
Line 362 in c61342f
What You Expected?
Support for https FE, either via explicit protocol specification via
https://some-fe:port
or by following redirect issued by FE.How to Reproduce?
No response
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: