changes.md 6.3 KB
Newer Older
1
## 9.3.0
2

3
#### Project
4

5 6
* Bump up the embedded `swctl` version in OAP Docker image.

7
#### OAP Server
8

9
* Add component ID(133) for impala JDBC Java agent plugin and component ID(134) for impala server.
10
* Use prepareStatement in H2SQLExecutor#getByIDs.(No function change).
K
kezhenxu94 已提交
11
* Bump up snakeyaml to 1.32 for fixing CVE.
12
* Fix `DurationUtils.convertToTimeBucket` missed verify date format.
13
* Enhance LAL to support converting LogData to DatabaseSlowStatement.
14
* [**Breaking Change**] Change the LAL script format(Add layer property).
15
* Adapt ElasticSearch 8.1+, migrate from removed APIs to recommended APIs.
16
* Support monitoring MySQL slow SQLs.
17
* Support analyzing cache related spans to provide metrics and slow commands for cache services from client side
18
* Optimize virtual database, fix dynamic config watcher NPE when default value is null
19 20 21
* Remove physical index existing check and keep template existing check only to avoid meaningless `retry wait`
  in `no-init` mode.
* Make sure instance list ordered in TTL processor to avoid TTL timer never runs.
22
* Support monitoring PostgreSQL slow SQLs.
23 24 25 26
* [**Breaking Change**] Support sharding MySQL database instances and tables
  by [Shardingsphere-Proxy](https://shardingsphere.apache.org/document/current/en/overview/#shardingsphere-proxy).
  SQL-Database requires removing tables `log_tag/segment_tag/zipkin_query` before OAP starts, if bump up from previous
  releases.
wu-sheng's avatar
wu-sheng 已提交
27
* Fix meter functions `avgHistogram`, `avgHistogramPercentile`, `avgLabeled`, `sumHistogram` having data conflict when
wu-sheng's avatar
wu-sheng 已提交
28
  downsampling.
wu-sheng's avatar
wu-sheng 已提交
29
* Do sorting `readLabeledMetricsValues` result forcedly in case the storage(database) doesn't return data consistent
wu-sheng's avatar
wu-sheng 已提交
30
  with the parameter list.
31 32
* Fix the wrong watch semantics in Kubernetes watchers, which causes heavy traffic to API server in some Kubernetes
  clusters,
33
  we should use `Get State and Start at Most Recent` semantic instead of `Start at Exact`
34 35
  because we don't need the changing history events,
  see https://kubernetes.io/docs/reference/using-api/api-concepts/#semantics-for-watch.
36
* Unify query services and DAOs codes time range condition to `Duration`.
37 38 39 40 41 42 43 44
* [**Breaking Change**]: Remove prometheus-fetcher plugin, please use OpenTelemetry to scrape Prometheus metrics and
  set up SkyWalking OpenTelemetry receiver instead.
* BugFix: histogram metrics sent to MAL should be treated as OpenTelemetry style, not Prometheus style:
  ```
  (-infinity, explicit_bounds[i]] for i == 0
  (explicit_bounds[i-1], explicit_bounds[i]] for 0 < i < size(explicit_bounds)
  (explicit_bounds[i-1], +infinity) for i == size(explicit_bounds)
  ```
45
* Support Golang runtime metrics analysis.
P
pg.yang 已提交
46
* Add APISIX metrics monitoring
47 48 49
* Support skywalking-client-js report empty `service version` and `page path` , set default version as `latest` and
  default page path as `/`(root). Fix the
  error `fetching data (/browser_app_page_pv0) : Can't split endpoint id into 2 parts`.
50 51 52
* [**Breaking Change**] Limit the max length of trace/log/alarm tag's `key=value`, set the max length of column `tags`
  in tables`log_tag/segment_tag/alarm_record_tag` and column `query` in `zipkin_query` and column `tag_value` in `tag_autocomplete` to 256.
  SQL-Database requires altering these columns' length or removing these tables before OAP starts, if bump up from previous releases.
53 54 55 56 57 58 59 60 61 62
* Optimize the creation conditions of profiling task.
* Lazy load the Kubernetes metadata and switch from event-driven to polling.
  Previously we set up watchers to watch the Kubernetes metadata changes, this is perfect when there are deployments changes and
  SkyWalking can react to the changes in real time. However when the cluster has many events (such as in large cluster
  or some special Kubernetes engine like OpenShift), the requests sent from SkyWalking becomes unpredictable, i.e. SkyWalking might
  send massive requests to Kubernetes API server, causing heavy load to the API server.
  This PR switches from the watcher mechanism to polling mechanism, SkyWalking polls the metadata in a specified interval,
  so that the requests sent to API server is predictable (~10 requests every `interval`, 3 minutes), and the requests count is constant
  regardless of the cluster's changes. However with this change SkyWalking can't react to the cluster changes in time, but the delay
  is acceptable in our case.
63
* Optimize the query time of tasks in ProfileTaskCache.
64
* Fix metrics was put into wrong slot of the window in the alarting kernel.
65

F
Fine0830 已提交
66 67
#### UI

68
* Fix: tab active incorrectly, when click tab space
69
* Add impala icon for impala JDBC Java agent plugin.
70
* (Webapp)Bump up snakeyaml to 1.31 for fixing CVE-2022-25857
71 72 73 74
* [Breaking Change]: migrate from Spring Web to Armeria, now you should use the environment variable
  name `SW_OAP_ADDRESS`
  to change the OAP backend service addresses, like `SW_OAP_ADDRESS=localhost:12800,localhost:12801`, and use
  environment
75
  variable `SW_SERVER_PORT` to change the port. Other Spring-related configurations don't take effect anymore.
F
Fine0830 已提交
76 77 78 79
* Polish the endpoint list graph.
* Fix styles for an adaptive height.
* Fix setting up a new time range after clicking the refresh button.
* Enhance the process topology graph to support dragging nodes.
80
* UI-template: Fix metrics calculation in `general-service/mesh-service/faas-function` top-list dashboard.
81
* Update MySQL dashboard to visualize collected slow SQLs.
82
* Add virtual cache dashboard
83
* Remove `responseCode` fields of all OAL sources, as well as examples to avoid user's confusion.
84 85
* Remove All from the endpoints selector.
* Enhance menu configurations to make it easier to change.
86
* Update PostgreSQL dashboard to visualize collected slow SQLs.
87
* Add Golang runtime metrics and cpu/memory used rate panels in General-Instance dashboard
P
pg.yang 已提交
88 89 90
* Add gateway apisix menu
* Query logs with the specific service ID
* Bump d3-color from 3.0.1 to 3.1.0
91

wu-sheng's avatar
wu-sheng 已提交
92
#### Documentation
93

94
* Add `metadata-uid` setup doc about Kubernetes coordinator in the cluster management.
95
* Add a doc for adding menus to booster UI.
wu-sheng's avatar
wu-sheng 已提交
96 97 98
* Move general good read blogs from `Agent Introduction` to `Academy`.
* Add re-post for blog `Scaling with Apache SkyWalking` in the academy list.
* Add re-post for blog `Diagnose Service Mesh Network Performance with eBPF` in the academy list.
99
* Add **Security Notice** doc.
100

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