diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5de5e5aae..73447c7cb 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,8 @@ sort: 15 ## tip +BUGFIX: vmstorage: fix `unaligned 64-bit atomic operation` panic on 32-bit architectures (arm and 386). The panic has been introduced in v1.67.0 + ## [v1.67.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.67.0) diff --git a/lib/storage/storage.go b/lib/storage/storage.go index 6b9f6d4d2..68f64558c 100644 --- a/lib/storage/storage.go +++ b/lib/storage/storage.go @@ -57,8 +57,6 @@ type Storage struct { hourlySeriesLimitRowsDropped uint64 dailySeriesLimitRowsDropped uint64 - isReadOnly uint32 - path string cachePath string retentionMsecs int64 @@ -137,6 +135,8 @@ type Storage struct { // metricIDs, since it usually requires 1 bit per deleted metricID. deletedMetricIDs atomic.Value deletedMetricIDsUpdateLock sync.Mutex + + isReadOnly uint32 } // OpenStorage opens storage on the given path with the given retentionMsecs.