-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
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
[Breaking Change] Remove H2 as storage option permanently. #12909
Conversation
Many H2 relative e2e will fail. Wait for fixing. |
Unless we totally remove all supports for SQL databases, it doesn't seem to reduce that much maintenance work by only removing H2, but I see it increases development workload, now you have to start a database first. |
As I am answering most of the community questions, and k8s is the most popular deployment platform, I am suffering that payload by H2 can't work in k8s and new users don't predict for that. By |
mysql and pg are being considered, I actually want to do that after some discussions. |
@@ -284,7 +284,7 @@ public static Span buildSpanFromRecord(ZipkinSpanRecord record) { | |||
//Build remoteEndpoint | |||
Endpoint.Builder remoteEndpoint = Endpoint.newBuilder(); | |||
remoteEndpoint.serviceName(record.getRemoteEndpointServiceName()); | |||
if (!StringUtil.isEmpty(record.getLocalEndpointIPV4())) { | |||
if (!StringUtil.isEmpty(record.getRemoteEndpointIPV4())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fyi @wankai123 This seems to be an existing bug.
@@ -37,7 +37,7 @@ cases: | |||
expected: expected/func-OP.yml | |||
|
|||
# topN-OP-service Global | |||
- query: swctl --display yaml --base-url=http://${oap_host}:${oap_12800}/graphql metrics exec --expression="top_n(service_sla,3,des)/100" | |||
- query: swctl --display yaml --base-url=http://${oap_host}:${oap_12800}/graphql metrics exec --expression="top_n(service_resp_time,3,des)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wankai123 sla e2e sorting is not predictable, so, we changed to another metric.
CHANGES
log.production-ready. Don't need H2 as default storage anymore.
FYI @apache/skywalking-committers I keep deceasing the extra maintenance payload of us. BanyanDB, elasticsearch/opensearch and mysql/postgresql are our main support now.