mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
43b24164ef
This commit changes background merge algorithm, so it becomes compatible with Windows file semantics. The previous algorithm for background merge: 1. Merge source parts into a destination part inside tmp directory. 2. Create a file in txn directory with instructions on how to atomically swap source parts with the destination part. 3. Perform instructions from the file. 4. Delete the file with instructions. This algorithm guarantees that either source parts or destination part is visible in the partition after unclean shutdown at any step above, since the remaining files with instructions is replayed on the next restart, after that the remaining contents of the tmp directory is deleted. Unfortunately this algorithm doesn't work under Windows because it disallows removing and moving files, which are in use. So the new algorithm for background merge has been implemented: 1. Merge source parts into a destination part inside the partition directory itself. E.g. now the partition directory may contain both complete and incomplete parts. 2. Atomically update the parts.json file with the new list of parts after the merge, e.g. remove the source parts from the list and add the destination part to the list before storing it to parts.json file. 3. Remove the source parts from disk when they are no longer used. This algorithm guarantees that either source parts or destination part is visible in the partition after unclean shutdown at any step above, since incomplete partitions from step 1 or old source parts from step 3 are removed on the next startup by inspecting parts.json file. This algorithm should work under Windows, since it doesn't remove or move files in use. This algorithm has also the following benefits: - It should work better for NFS. - It fits object storage semantics. The new algorithm changes data storage format, so it is impossible to downgrade to the previous versions of VictoriaMetrics after upgrading to this algorithm. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3236 Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3821 Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/70
434 lines
12 KiB
Makefile
434 lines
12 KiB
Makefile
PKG_PREFIX := github.com/VictoriaMetrics/VictoriaMetrics
|
|
|
|
DATEINFO_TAG ?= $(shell date -u +'%Y%m%d-%H%M%S')
|
|
BUILDINFO_TAG ?= $(shell echo $$(git describe --long --all | tr '/' '-')$$( \
|
|
git diff-index --quiet HEAD -- || echo '-dirty-'$$(git diff-index -u HEAD | openssl sha1 | cut -d' ' -f2 | cut -c 1-8)))
|
|
LATEST_TAG ?= latest
|
|
|
|
PKG_TAG ?= $(shell git tag -l --points-at HEAD)
|
|
ifeq ($(PKG_TAG),)
|
|
PKG_TAG := $(BUILDINFO_TAG)
|
|
endif
|
|
|
|
GO_BUILDINFO = -X '$(PKG_PREFIX)/lib/buildinfo.Version=$(APP_NAME)-$(DATEINFO_TAG)-$(BUILDINFO_TAG)'
|
|
|
|
.PHONY: $(MAKECMDGOALS)
|
|
|
|
include app/*/Makefile
|
|
include deployment/*/Makefile
|
|
include snap/local/Makefile
|
|
include package/release/Makefile
|
|
|
|
all: \
|
|
victoria-metrics-prod \
|
|
vmagent-prod \
|
|
vmalert-prod \
|
|
vmauth-prod \
|
|
vmbackup-prod \
|
|
vmrestore-prod \
|
|
vmctl-prod
|
|
|
|
clean:
|
|
rm -rf bin/*
|
|
|
|
publish: docker-scan \
|
|
publish-victoria-metrics \
|
|
publish-vmagent \
|
|
publish-vmalert \
|
|
publish-vmauth \
|
|
publish-vmbackup \
|
|
publish-vmrestore \
|
|
publish-vmctl
|
|
|
|
package: \
|
|
package-victoria-metrics \
|
|
package-vmagent \
|
|
package-vmalert \
|
|
package-vmauth \
|
|
package-vmbackup \
|
|
package-vmrestore \
|
|
package-vmctl
|
|
|
|
vmutils: \
|
|
vmagent \
|
|
vmalert \
|
|
vmauth \
|
|
vmbackup \
|
|
vmrestore \
|
|
vmctl
|
|
|
|
vmutils-pure: \
|
|
vmagent-pure \
|
|
vmalert-pure \
|
|
vmauth-pure \
|
|
vmbackup-pure \
|
|
vmrestore-pure \
|
|
vmctl-pure
|
|
|
|
vmutils-linux-amd64: \
|
|
vmagent-linux-amd64 \
|
|
vmalert-linux-amd64 \
|
|
vmauth-linux-amd64 \
|
|
vmbackup-linux-amd64 \
|
|
vmrestore-linux-amd64 \
|
|
vmctl-linux-amd64
|
|
|
|
vmutils-linux-arm64: \
|
|
vmagent-linux-arm64 \
|
|
vmalert-linux-arm64 \
|
|
vmauth-linux-arm64 \
|
|
vmbackup-linux-arm64 \
|
|
vmrestore-linux-arm64 \
|
|
vmctl-linux-arm64
|
|
|
|
vmutils-linux-arm: \
|
|
vmagent-linux-arm \
|
|
vmalert-linux-arm \
|
|
vmauth-linux-arm \
|
|
vmbackup-linux-arm \
|
|
vmrestore-linux-arm \
|
|
vmctl-linux-arm
|
|
|
|
vmutils-linux-386: \
|
|
vmagent-linux-386 \
|
|
vmalert-linux-386 \
|
|
vmauth-linux-386 \
|
|
vmbackup-linux-386 \
|
|
vmrestore-linux-386 \
|
|
vmctl-linux-386
|
|
|
|
vmutils-linux-ppc64le: \
|
|
vmagent-linux-ppc64le \
|
|
vmalert-linux-ppc64le \
|
|
vmauth-linux-ppc64le \
|
|
vmbackup-linux-ppc64le \
|
|
vmrestore-linux-ppc64le \
|
|
vmctl-linux-ppc64le
|
|
|
|
vmutils-darwin-amd64: \
|
|
vmagent-darwin-amd64 \
|
|
vmalert-darwin-amd64 \
|
|
vmauth-darwin-amd64 \
|
|
vmbackup-darwin-amd64 \
|
|
vmrestore-darwin-amd64 \
|
|
vmctl-darwin-amd64
|
|
|
|
vmutils-darwin-arm64: \
|
|
vmagent-darwin-arm64 \
|
|
vmalert-darwin-arm64 \
|
|
vmauth-darwin-arm64 \
|
|
vmbackup-darwin-arm64 \
|
|
vmrestore-darwin-arm64 \
|
|
vmctl-darwin-arm64
|
|
|
|
vmutils-freebsd-amd64: \
|
|
vmagent-freebsd-amd64 \
|
|
vmalert-freebsd-amd64 \
|
|
vmauth-freebsd-amd64 \
|
|
vmbackup-freebsd-amd64 \
|
|
vmrestore-freebsd-amd64 \
|
|
vmctl-freebsd-amd64
|
|
|
|
vmutils-openbsd-amd64: \
|
|
vmagent-openbsd-amd64 \
|
|
vmalert-openbsd-amd64 \
|
|
vmauth-openbsd-amd64 \
|
|
vmbackup-openbsd-amd64 \
|
|
vmrestore-openbsd-amd64 \
|
|
vmctl-openbsd-amd64
|
|
|
|
vmutils-windows-amd64: \
|
|
vmagent-windows-amd64 \
|
|
vmalert-windows-amd64 \
|
|
vmauth-windows-amd64 \
|
|
vmctl-windows-amd64
|
|
|
|
victoria-metrics-crossbuild: \
|
|
victoria-metrics-linux-386 \
|
|
victoria-metrics-linux-amd64 \
|
|
victoria-metrics-linux-arm64 \
|
|
victoria-metrics-linux-arm \
|
|
victoria-metrics-linux-386 \
|
|
victoria-metrics-linux-ppc64le \
|
|
victoria-metrics-darwin-amd64 \
|
|
victoria-metrics-darwin-arm64 \
|
|
victoria-metrics-freebsd-amd64 \
|
|
victoria-metrics-openbsd-amd64
|
|
|
|
vmutils-crossbuild: \
|
|
vmutils-linux-386 \
|
|
vmutils-linux-amd64 \
|
|
vmutils-linux-arm64 \
|
|
vmutils-linux-arm \
|
|
vmutils-linux-386 \
|
|
vmutils-linux-ppc64le \
|
|
vmutils-darwin-amd64 \
|
|
vmutils-darwin-arm64 \
|
|
vmutils-freebsd-amd64 \
|
|
vmutils-openbsd-amd64 \
|
|
vmutils-windows-amd64
|
|
|
|
publish-release:
|
|
git checkout $(TAG) && LATEST_TAG=stable $(MAKE) release publish && \
|
|
git checkout $(TAG)-cluster && LATEST_TAG=cluster-stable $(MAKE) release publish && \
|
|
git checkout $(TAG)-enterprise && LATEST_TAG=enterprise-stable $(MAKE) release publish && \
|
|
git checkout $(TAG)-enterprise-cluster && LATEST_TAG=enterprise-cluster-stable $(MAKE) release publish
|
|
|
|
release: \
|
|
release-victoria-metrics \
|
|
release-vmutils
|
|
|
|
release-victoria-metrics: \
|
|
release-victoria-metrics-linux-386 \
|
|
release-victoria-metrics-linux-amd64 \
|
|
release-victoria-metrics-linux-arm \
|
|
release-victoria-metrics-linux-arm64 \
|
|
release-victoria-metrics-darwin-amd64 \
|
|
release-victoria-metrics-darwin-arm64 \
|
|
release-victoria-metrics-freebsd-amd64 \
|
|
release-victoria-metrics-openbsd-amd64 \
|
|
release-victoria-metrics-windows-amd64
|
|
|
|
# adds i386 arch
|
|
release-victoria-metrics-linux-386:
|
|
GOOS=linux GOARCH=386 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-linux-amd64:
|
|
GOOS=linux GOARCH=amd64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-linux-arm:
|
|
GOOS=linux GOARCH=arm $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-linux-arm64:
|
|
GOOS=linux GOARCH=arm64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-darwin-amd64:
|
|
GOOS=darwin GOARCH=amd64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-darwin-arm64:
|
|
GOOS=darwin GOARCH=arm64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-freebsd-amd64:
|
|
GOOS=freebsd GOARCH=amd64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-openbsd-amd64:
|
|
GOOS=openbsd GOARCH=amd64 $(MAKE) release-victoria-metrics-goos-goarch
|
|
|
|
release-victoria-metrics-windows-amd64:
|
|
GOARCH=amd64 $(MAKE) release-victoria-metrics-windows-goarch
|
|
|
|
release-victoria-metrics-goos-goarch: victoria-metrics-$(GOOS)-$(GOARCH)-prod
|
|
cd bin && \
|
|
tar --transform="flags=r;s|-$(GOOS)-$(GOARCH)||" -czf victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
victoria-metrics-$(GOOS)-$(GOARCH)-prod \
|
|
&& sha256sum victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
victoria-metrics-$(GOOS)-$(GOARCH)-prod \
|
|
| sed s/-$(GOOS)-$(GOARCH)-prod/-prod/ > victoria-metrics-$(GOOS)-$(GOARCH)-$(PKG_TAG)_checksums.txt
|
|
cd bin && rm -rf victoria-metrics-$(GOOS)-$(GOARCH)-prod
|
|
|
|
release-victoria-metrics-windows-goarch: victoria-metrics-windows-$(GOARCH)-prod
|
|
cd bin && \
|
|
zip victoria-metrics-windows-$(GOARCH)-$(PKG_TAG).zip \
|
|
victoria-metrics-windows-$(GOARCH)-prod.exe \
|
|
&& sha256sum victoria-metrics-windows-$(GOARCH)-$(PKG_TAG).zip \
|
|
victoria-metrics-windows-$(GOARCH)-prod.exe \
|
|
> victoria-metrics-windows-$(GOARCH)-$(PKG_TAG)_checksums.txt
|
|
cd bin && rm -rf \
|
|
victoria-metrics-windows-$(GOARCH)-prod.exe
|
|
|
|
release-vmutils: \
|
|
release-vmutils-linux-386 \
|
|
release-vmutils-linux-amd64 \
|
|
release-vmutils-linux-arm64 \
|
|
release-vmutils-linux-arm \
|
|
release-vmutils-darwin-amd64 \
|
|
release-vmutils-darwin-arm64 \
|
|
release-vmutils-freebsd-amd64 \
|
|
release-vmutils-openbsd-amd64 \
|
|
release-vmutils-windows-amd64
|
|
|
|
release-vmutils-linux-386:
|
|
GOOS=linux GOARCH=386 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-linux-amd64:
|
|
GOOS=linux GOARCH=amd64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-linux-arm64:
|
|
GOOS=linux GOARCH=arm64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-linux-arm:
|
|
GOOS=linux GOARCH=arm $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-darwin-amd64:
|
|
GOOS=darwin GOARCH=amd64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-darwin-arm64:
|
|
GOOS=darwin GOARCH=arm64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-freebsd-amd64:
|
|
GOOS=freebsd GOARCH=amd64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-openbsd-amd64:
|
|
GOOS=openbsd GOARCH=amd64 $(MAKE) release-vmutils-goos-goarch
|
|
|
|
release-vmutils-windows-amd64:
|
|
GOARCH=amd64 $(MAKE) release-vmutils-windows-goarch
|
|
|
|
release-vmutils-goos-goarch: \
|
|
vmagent-$(GOOS)-$(GOARCH)-prod \
|
|
vmalert-$(GOOS)-$(GOARCH)-prod \
|
|
vmauth-$(GOOS)-$(GOARCH)-prod \
|
|
vmbackup-$(GOOS)-$(GOARCH)-prod \
|
|
vmrestore-$(GOOS)-$(GOARCH)-prod \
|
|
vmctl-$(GOOS)-$(GOARCH)-prod
|
|
cd bin && \
|
|
tar --transform="flags=r;s|-$(GOOS)-$(GOARCH)||" -czf vmutils-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
vmagent-$(GOOS)-$(GOARCH)-prod \
|
|
vmalert-$(GOOS)-$(GOARCH)-prod \
|
|
vmauth-$(GOOS)-$(GOARCH)-prod \
|
|
vmbackup-$(GOOS)-$(GOARCH)-prod \
|
|
vmrestore-$(GOOS)-$(GOARCH)-prod \
|
|
vmctl-$(GOOS)-$(GOARCH)-prod \
|
|
&& sha256sum vmutils-$(GOOS)-$(GOARCH)-$(PKG_TAG).tar.gz \
|
|
vmagent-$(GOOS)-$(GOARCH)-prod \
|
|
vmalert-$(GOOS)-$(GOARCH)-prod \
|
|
vmauth-$(GOOS)-$(GOARCH)-prod \
|
|
vmbackup-$(GOOS)-$(GOARCH)-prod \
|
|
vmrestore-$(GOOS)-$(GOARCH)-prod \
|
|
vmctl-$(GOOS)-$(GOARCH)-prod \
|
|
| sed s/-$(GOOS)-$(GOARCH)-prod/-prod/ > vmutils-$(GOOS)-$(GOARCH)-$(PKG_TAG)_checksums.txt
|
|
cd bin && rm -rf \
|
|
vmagent-$(GOOS)-$(GOARCH)-prod \
|
|
vmalert-$(GOOS)-$(GOARCH)-prod \
|
|
vmauth-$(GOOS)-$(GOARCH)-prod \
|
|
vmbackup-$(GOOS)-$(GOARCH)-prod \
|
|
vmrestore-$(GOOS)-$(GOARCH)-prod \
|
|
vmctl-$(GOOS)-$(GOARCH)-prod
|
|
|
|
release-vmutils-windows-goarch: \
|
|
vmagent-windows-$(GOARCH)-prod \
|
|
vmalert-windows-$(GOARCH)-prod \
|
|
vmauth-windows-$(GOARCH)-prod \
|
|
vmctl-windows-$(GOARCH)-prod
|
|
cd bin && \
|
|
zip vmutils-windows-$(GOARCH)-$(PKG_TAG).zip \
|
|
vmagent-windows-$(GOARCH)-prod.exe \
|
|
vmalert-windows-$(GOARCH)-prod.exe \
|
|
vmauth-windows-$(GOARCH)-prod.exe \
|
|
vmctl-windows-$(GOARCH)-prod.exe \
|
|
&& sha256sum vmutils-windows-$(GOARCH)-$(PKG_TAG).zip \
|
|
vmagent-windows-$(GOARCH)-prod.exe \
|
|
vmalert-windows-$(GOARCH)-prod.exe \
|
|
vmauth-windows-$(GOARCH)-prod.exe \
|
|
vmctl-windows-$(GOARCH)-prod.exe \
|
|
> vmutils-windows-$(GOARCH)-$(PKG_TAG)_checksums.txt
|
|
cd bin && rm -rf \
|
|
vmagent-windows-$(GOARCH)-prod.exe \
|
|
vmalert-windows-$(GOARCH)-prod.exe \
|
|
vmauth-windows-$(GOARCH)-prod.exe \
|
|
vmctl-windows-$(GOARCH)-prod.exe
|
|
|
|
pprof-cpu:
|
|
go tool pprof -trim_path=github.com/VictoriaMetrics/VictoriaMetrics@ $(PPROF_FILE)
|
|
|
|
fmt:
|
|
gofmt -l -w -s ./lib
|
|
gofmt -l -w -s ./app
|
|
|
|
vet:
|
|
go vet ./lib/...
|
|
go vet ./app/...
|
|
|
|
check-all: fmt vet golangci-lint govulncheck
|
|
|
|
test:
|
|
go test ./lib/... ./app/...
|
|
|
|
test-race:
|
|
go test -race ./lib/... ./app/...
|
|
|
|
test-pure:
|
|
CGO_ENABLED=0 go test ./lib/... ./app/...
|
|
|
|
test-full:
|
|
go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/...
|
|
|
|
test-full-386:
|
|
GOARCH=386 go test -coverprofile=coverage.txt -covermode=atomic ./lib/... ./app/...
|
|
|
|
benchmark:
|
|
go test -bench=. ./lib/...
|
|
go test -bench=. ./app/...
|
|
|
|
benchmark-pure:
|
|
CGO_ENABLED=0 go test -bench=. ./lib/...
|
|
CGO_ENABLED=0 go test -bench=. ./app/...
|
|
|
|
vendor-update:
|
|
go get -u -d ./lib/...
|
|
go get -u -d ./app/...
|
|
go mod tidy -compat=1.19
|
|
go mod vendor
|
|
|
|
app-local:
|
|
CGO_ENABLED=1 go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
|
|
|
app-local-pure:
|
|
CGO_ENABLED=0 go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-pure$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
|
|
|
app-local-goos-goarch:
|
|
CGO_ENABLED=$(CGO_ENABLED) GOOS=$(GOOS) GOARCH=$(GOARCH) go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-$(GOOS)-$(GOARCH)$(RACE) $(PKG_PREFIX)/app/$(APP_NAME)
|
|
|
|
app-local-windows-goarch:
|
|
CGO_ENABLED=0 GOOS=windows GOARCH=$(GOARCH) go build $(RACE) -ldflags "$(GO_BUILDINFO)" -o bin/$(APP_NAME)-windows-$(GOARCH)$(RACE).exe $(PKG_PREFIX)/app/$(APP_NAME)
|
|
|
|
quicktemplate-gen: install-qtc
|
|
qtc
|
|
|
|
install-qtc:
|
|
which qtc || go install github.com/valyala/quicktemplate/qtc@latest
|
|
|
|
|
|
golangci-lint: install-golangci-lint
|
|
golangci-lint run
|
|
|
|
install-golangci-lint:
|
|
which golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell go env GOPATH)/bin v1.51.2
|
|
|
|
govulncheck: install-govulncheck
|
|
govulncheck ./...
|
|
|
|
install-govulncheck:
|
|
which govulncheck || go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
|
|
install-wwhrd:
|
|
which wwhrd || go install github.com/frapposelli/wwhrd@latest
|
|
|
|
check-licenses: install-wwhrd
|
|
wwhrd check -f .wwhrd.yml
|
|
|
|
copy-docs:
|
|
echo '' > ${DST}
|
|
@if [ ${ORDER} -ne 0 ]; then \
|
|
echo "---\nsort: ${ORDER}\n---\n" > ${DST}; \
|
|
fi
|
|
cat ${SRC} >> ${DST}
|
|
sed -i='.tmp' 's/<img src=\"docs\//<img src=\"/' ${DST}
|
|
rm -rf docs/*.tmp
|
|
|
|
# Copies docs for all components and adds the order tag.
|
|
# For ORDER=0 it adds no order tag.
|
|
# Images starting with <img src="docs/ are replaced with <img src="
|
|
# Cluster docs are supposed to be ordered as 9th.
|
|
# The rest of docs is ordered manually.
|
|
docs-sync:
|
|
SRC=README.md DST=docs/README.md ORDER=0 $(MAKE) copy-docs
|
|
SRC=README.md DST=docs/Single-server-VictoriaMetrics.md ORDER=1 $(MAKE) copy-docs
|
|
SRC=app/vmagent/README.md DST=docs/vmagent.md ORDER=3 $(MAKE) copy-docs
|
|
SRC=app/vmalert/README.md DST=docs/vmalert.md ORDER=4 $(MAKE) copy-docs
|
|
SRC=app/vmauth/README.md DST=docs/vmauth.md ORDER=5 $(MAKE) copy-docs
|
|
SRC=app/vmbackup/README.md DST=docs/vmbackup.md ORDER=6 $(MAKE) copy-docs
|
|
SRC=app/vmrestore/README.md DST=docs/vmrestore.md ORDER=7 $(MAKE) copy-docs
|
|
SRC=app/vmctl/README.md DST=docs/vmctl.md ORDER=8 $(MAKE) copy-docs
|
|
SRC=app/vmgateway/README.md DST=docs/vmgateway.md ORDER=9 $(MAKE) copy-docs
|
|
SRC=app/vmbackupmanager/README.md DST=docs/vmbackupmanager.md ORDER=10 $(MAKE) copy-docs
|