Skip to content

Commit

Permalink
Set up the length of source and dest IDs in relation entities of serv…
Browse files Browse the repository at this point in the history
…ice, instance, endpoint, and process to 250(was 200). (#11686)
  • Loading branch information
wu-sheng authored Dec 22, 2023
1 parent 1efff63 commit eb4cebf
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 27 deletions.
16 changes: 9 additions & 7 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

* 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`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eb4cebf

Please sign in to comment.