docs: add changelog for PR 13191

This commit is contained in:
zmstone 2024-06-17 09:44:04 +02:00
parent 8daaf7b727
commit 735245977b
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
Upgrade EMQX Docker images to run on Erlang/OTP 26.
EMQX had been running on Erlang/OTP 26 since 5.5 except for docker images which were on Erlang/OTP 25.
Now all releases are on Erlang/OTP 26.
A known issue:
When an older version EMQX joins cluster with newer version nodes.
The older version node's schema registry may encounter an issue which emits logs like below:
```
Error loading module '$schema_parser___CiYAWBja87PleCyKZ58h__SparkPlug_B_BUILT-IN':,
This BEAM file was compiled for a later version of the runtime system than the current (Erlang/OTP 25).
```
This issue is fixed in newer version, however for older versions, a manual step is required.
Execute this in one of the clustered nodes before the older version EMQX joins the cluster.
```shell
emqx eval 'lists:foreach(fun(Key) -> mnesia:dirty_delete(emqx_ee_schema_registry_protobuf_cache_tab, Key) end, mnesia:dirty_all_keys(emqx_ee_schema_registry_protobuf_cache_tab)).'
```
Or if the older version EMQX is already in the cluster, execute the above command, and restart this node.