changes.md 6.4 KB
Newer Older
1
## 9.4.0
2

3
#### Project
4

5
* Bump up Zipkin and Zipkin lens UI dependency to 2.24.0.
wu-sheng's avatar
wu-sheng 已提交
6
* Bump up Apache parent pom version to 29.
7

8
#### OAP Server
9

10
* Add `ServerStatusService` in the core module to provide a new way to expose booting status to other modules.
11
* Adds Micrometer as a new component.(ID=141)
12
* Refactor session cache in MetricsPersistentWorker.
13
* Cache enhancement - don't read new metrics from database in minute dimensionality.
wu-sheng's avatar
wu-sheng 已提交
14

15 16 17 18 19
```
    // When
    // (1) the time bucket of the server's latest stability status is provided
    //     1.1 the OAP has booted successfully
    //     1.2 the current dimensionality is in minute.
20
    //     1.3 the OAP cluster is rebalanced due to scaling
21 22 23 24 25 26 27 28
    // (2) the metrics are from the time after the timeOfLatestStabilitySts
    // (3) the metrics don't exist in the cache
    // the kernel should NOT try to load it from the database.
    //
    // Notice, about condition (2),
    // for the specific minute of booted successfully, the metrics are expected to load from database when
    // it doesn't exist in the cache.
```
wu-sheng's avatar
wu-sheng 已提交
29

30 31 32 33
* Remove the offset of metric session timeout according to worker creation sequence.
* Correct `MetricsExtension` annotations declarations in manual entities.
* Support component IDs' priority in process relation metrics.
* Remove abandon logic in MergableBufferedData, which caused unexpected no-update.
34
* Fix miss set `LastUpdateTimestamp` that caused the metrics session to expire.
wu-sheng's avatar
wu-sheng 已提交
35
* Rename MAL rule `spring-sleuth.yaml` to `spring-micrometer.yaml`.
36
* Fix memory leak in Zipkin API.
37 38
* Remove the dependency of `refresh_interval` of ElasticSearch indices from `elasticsearch/flushInterval` config. Now,
  it uses `core/persistentPeriod` + 5s as `refresh_interval` for all indices instead.
39
* Change `elasticsearch/flushInterval` to 5s(was 15s).
K
kezhenxu94 已提交
40
* Optimize `flushInterval` of ElasticSearch BulkProcessor to avoid extra periodical flush in the continuous bulk streams.
wu-sheng's avatar
wu-sheng 已提交
41
* An unexpected dot is added when exp is a pure metric name and expPrefix != null.
42
* Support monitoring MariaDB.
43 44 45 46
* Remove measure/stream specific interval settings in BanyanDB.
* Add global-specific settings used to override global configurations (e.g `segmentIntervalDays`, `blockIntervalHours`) in BanyanDB.
* Use TTL-driven interval settings for the `measure-default` group in BanyanDB.
* Fix wrong group of non time-relative metadata in BanyanDB.
47
* Refactor `StorageData#id` to the new StorageID object from a String type.
48 49 50
* Support multiple component IDs in the service topology level.
* Add `ElasticSearch.Keyword` annotation to declare the target field type as `keyword`.
* [Breaking Change] Column `component_id` of `service_relation_client_side` and `service_relation_server_side` have been replaced by `component_ids`.
51
* Support `priority` definition in the `component-libraries.yml`.
52 53
* Enhance service topology query. When there are multiple components detected from the server side,
  the component type of the node would be determined by the priority, which was random in the previous release.
54
* Remove `component_id` from `service_instance_relation_client_side` and `service_instance_relation_server_side`.
55
* Make the satellite E2E test more stable.
56
* Add Istio 1.16 to test matrix.
J
Jiajing LU 已提交
57
* Register ValueColumn as Tag for Record in BanyanDB storage plugin.
K
kezhenxu94 已提交
58
* Bump up Netty to 4.1.86.
59
* Remove unnecessary additional columns when storage is in logical sharding mode.
60
* The cluster coordinator support watch mechanism for notifying `RemoteClientManager` and `ServerStatusService`.
61
* Fix ServiceMeshServiceDispatcher overwrite ServiceDispatcher debug file when open SW_OAL_ENGINE_DEBUG.
62
* Use `groupBy` and `in` operators to optimize topology query for BanyanDB storage plugin.
63
* Support server status watcher for `MetricsPersistentWorker` to check the metrics whether required initialization.
64
* Fix the meter value are not correct when using `sumPerMinLabeld` or `sumHistogramPercentile` MAL function.
65
* Fix cannot display attached events when using Zipkin Lens UI query traces.
66
* Remove `time_bucket` for both Stream and Measure kinds in BanyanDB plugin.
67
* Merge `TIME_BUCKET` of `Metrics` and `Record` into `StorageData`.
68
* Support no `layer` in the `listServices` query.
69 70 71
* Fix `time_bucket` of `ServiceTraffic` not set correctly in `slowSql` of MAL.
* Correct the TopN record query DAO of BanyanDB.
* Tweak interval settings of BanyanDB.
72
* Support monitoring AWS Cloud EKS.
73 74 75 76
* Bump BanyanDB Java client to 0.3.0-rc1.
* Remove `id` tag from measures.
* Add `Banyandb.MeasureField` to mark a column as a BanyanDB Measure field.
* Add `BanyanDB.StoreIDTag` to store a process's id for searching.
77
* [**Breaking Change**] The supported version of ShardingSphere-Proxy is upgraded from 5.1.2 to 5.3.1. Due to the changes of ShardingSphere's API, versions before 5.3.1 are not compatible.
78
* Add the eBPF network profiling E2E Test in the per storage.
79
* Fix TCP service instances are lack of instance properties like `pod` and `namespace`, which causes Pod log not to work for TCP workloads.
80
* Add Python HBase happybase module component ID(94).
81
* Fix gRPC alarm cannot update settings from dynamic configuration source.
82
* Add Python Websocket module component ID(7018).
wu-sheng's avatar
wu-sheng 已提交
83
* [Optional] Optimize single trace query performance by customizing routing in ElasticSearch. SkyWalking trace segments and Zipkin spans are using trace ID for routing. This is OFF by default, controlled by `storage/elasticsearch/enableCustomRouting`.
84
* Enhance OAP HTTP server to support HTTPS
85

F
Fine0830 已提交
86 87
#### UI

K
kezhenxu94 已提交
88
* Add Zipkin Lens UI to webapp, and proxy it to context path `/zipkin`.
89 90
* Migrate the build tool from vue cli to Vite4.
* Fix Instance Relation and Endpoint Relation dashboards show up.
91 92 93
* Add Micrometer icon
* Update MySQL UI to support MariaDB
* Add AWS menu for supporting AWS monitoring
W
wuwen 已提交
94 95
* Add missing FastAPI logo
* Update the log details page to support the formatted display of JSON content
K
kezhenxu94 已提交
96

wu-sheng's avatar
wu-sheng 已提交
97
#### Documentation
98

wu-sheng's avatar
wu-sheng 已提交
99 100
* Remove Spring Sleuth docs, and add `Spring MicroMeter Observations Analysis` with the latest Java agent side
  enhancement.
101
* Update `monitoring MySQL document` to add the `MariaDB` part.
wu-sheng's avatar
wu-sheng 已提交
102
* Reorganize the protocols docs to a more clear API docs.
103
* Add documentation about replacing Zipkin server with SkyWalking OAP.
104
* Add Lens UI relative docs in Zipkin trace section.
105
* Add Profiling APIs.
wu-sheng's avatar
wu-sheng 已提交
106
* Fix backend telemetry doc and so11y dashboard doc as the OAP Prometheus fetcher was removed since 9.3.0
wu-sheng's avatar
wu-sheng 已提交
107

108
All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/160?closed=1)