Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was 200). (#11686)

This commit is contained in:
吴晟 Wu Sheng 2023-12-22 09:12:50 +08:00 committed by GitHub
parent 1efff6381c
commit eb4cebf9ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 29 additions and 27 deletions

View File

@ -2,24 +2,26 @@
#### Project
#### OAP Server
* Add `layer` parameter to the global topology graphQL query.
* Add `is_present` function in MQE for check if the list metrics has a value or not.
* Remove unreasonable default configurations for gRPC thread executor.
* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)`
configuration.
* Allow excluding ServiceEntries in some namespaces when looking up
ServiceEntries as a final resolution method of service metadata.
* Remove `gRPCThreadPoolQueueSize (SW_RECEIVER_GRPC_POOL_QUEUE_SIZE)` configuration.
* Allow excluding ServiceEntries in some namespaces when looking up ServiceEntries as a final resolution method of
service metadata.
* Set up the length of source and dest IDs in relation entities of service, instance, endpoint, and process to 250(was
200).
#### UI
* Fix the mismatch between the unit and calculation of the "Network Bandwidth Usage" widget in Linux-Service Dashboard.
#### Documentation
* Update the release doc to remove the announcement as the tests are through e2e rather than manually.
* Update the release notification mail a little.
* Polish docs structure. Move customization docs separately from the introduction docs.
* Polish docs structure. Move customization docs separately from the introduction docs.
* Add webhook/gRPC hooks settings example for `backend-alarm.md`.
* Begin the process of `SWIP - SkyWalking Improvement Proposal`.
* Add `SWIP-1 Create and detect Service Hierarchy Relationship`.

View File

@ -49,11 +49,11 @@ public class EndpointRelationServerSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SOURCE_ENDPOINT)
@Column(name = SOURCE_ENDPOINT, length = 250)
private String sourceEndpoint;
@Setter
@Getter
@Column(name = DEST_ENDPOINT)
@Column(name = DEST_ENDPOINT, length = 250)
private String destEndpoint;
@Setter
@Getter

View File

@ -50,19 +50,19 @@ public class ServiceInstanceRelationClientSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SOURCE_SERVICE_ID)
@Column(name = SOURCE_SERVICE_ID, length = 250)
private String sourceServiceId;
@Setter
@Getter
@Column(name = SOURCE_SERVICE_INSTANCE_ID)
@Column(name = SOURCE_SERVICE_INSTANCE_ID, length = 250)
private String sourceServiceInstanceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_ID)
@Column(name = DEST_SERVICE_ID, length = 250)
private String destServiceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_INSTANCE_ID)
@Column(name = DEST_SERVICE_INSTANCE_ID, length = 250)
private String destServiceInstanceId;
@Setter
@Getter

View File

@ -50,19 +50,19 @@ public class ServiceInstanceRelationServerSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SOURCE_SERVICE_ID)
@Column(name = SOURCE_SERVICE_ID, length = 250)
private String sourceServiceId;
@Setter
@Getter
@Column(name = SOURCE_SERVICE_INSTANCE_ID)
@Column(name = SOURCE_SERVICE_INSTANCE_ID, length = 250)
private String sourceServiceInstanceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_ID)
@Column(name = DEST_SERVICE_ID, length = 250)
private String destServiceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_INSTANCE_ID)
@Column(name = DEST_SERVICE_INSTANCE_ID, length = 250)
private String destServiceInstanceId;
@Setter
@Getter

View File

@ -52,15 +52,15 @@ public class ProcessRelationClientSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SERVICE_INSTANCE_ID)
@Column(name = SERVICE_INSTANCE_ID, length = 250)
private String serviceInstanceId;
@Setter
@Getter
@Column(name = SOURCE_PROCESS_ID)
@Column(name = SOURCE_PROCESS_ID, length = 250)
private String sourceProcessId;
@Setter
@Getter
@Column(name = DEST_PROCESS_ID)
@Column(name = DEST_PROCESS_ID, length = 250)
private String destProcessId;
@Setter
@Getter

View File

@ -51,15 +51,15 @@ public class ProcessRelationServerSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SERVICE_INSTANCE_ID)
@Column(name = SERVICE_INSTANCE_ID, length = 250)
private String serviceInstanceId;
@Setter
@Getter
@Column(name = SOURCE_PROCESS_ID)
@Column(name = SOURCE_PROCESS_ID, length = 250)
private String sourceProcessId;
@Setter
@Getter
@Column(name = DEST_PROCESS_ID)
@Column(name = DEST_PROCESS_ID, length = 250)
private String destProcessId;
@Setter
@Getter

View File

@ -49,11 +49,11 @@ public class ServiceRelationClientSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SOURCE_SERVICE_ID)
@Column(name = SOURCE_SERVICE_ID, length = 250)
private String sourceServiceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_ID)
@Column(name = DEST_SERVICE_ID, length = 250)
private String destServiceId;
@Setter
@Getter

View File

@ -51,11 +51,11 @@ public class ServiceRelationServerSideMetrics extends Metrics {
@Setter
@Getter
@Column(name = SOURCE_SERVICE_ID)
@Column(name = SOURCE_SERVICE_ID, length = 250)
private String sourceServiceId;
@Setter
@Getter
@Column(name = DEST_SERVICE_ID)
@Column(name = DEST_SERVICE_ID, length = 250)
private String destServiceId;
@Setter
@Getter