VictoriaMetrics/app/vmselect/Makefile

105 lines
2.9 KiB
Makefile
Raw Normal View History

2019-05-22 21:23:23 +00:00
# All these commands must run from repository root.
run-vmselect:
mkdir -p vmselect-cache
DOCKER_OPTS='-v $(shell pwd)/vmselect-cache:/cache' \
2019-05-22 21:23:23 +00:00
APP_NAME=vmselect \
ARGS='-storageNode=localhost -selectNode=localhost -cacheDataPath=/cache' \
2019-05-22 21:23:23 +00:00
$(MAKE) run-via-docker
vmselect:
APP_NAME=vmselect $(MAKE) app-local
2019-05-22 21:23:23 +00:00
vmselect-race:
APP_NAME=vmselect RACE=-race $(MAKE) app-local
2019-05-22 21:23:23 +00:00
vmselect-prod:
APP_NAME=vmselect $(MAKE) app-via-docker
2019-05-22 21:23:23 +00:00
vmselect-pure-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-pure
vmselect-linux-amd64-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-linux-amd64
vmselect-linux-arm-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-linux-arm
vmselect-linux-arm64-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-linux-arm64
vmselect-linux-ppc64le-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-linux-ppc64le
vmselect-linux-386-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-linux-386
vmselect-freebsd-amd64-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-freebsd-amd64
vmselect-openbsd-amd64-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-openbsd-amd64
all: add Windows build for VictoriaMetrics 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
2023-03-19 08:36:05 +00:00
vmselect-windows-amd64-prod:
APP_NAME=vmselect $(MAKE) app-via-docker-windows-amd64
2019-05-22 21:23:23 +00:00
vmselect-prod-race:
APP_NAME=vmselect RACE=-race $(MAKE) app-via-docker
2019-05-22 21:23:23 +00:00
package-vmselect:
APP_NAME=vmselect $(MAKE) package-via-docker
2019-05-22 21:23:23 +00:00
package-vmselect-race:
APP_NAME=vmselect RACE=-race $(MAKE) package-via-docker
2019-05-22 21:23:23 +00:00
package-vmselect-amd64:
APP_NAME=vmselect $(MAKE) package-via-docker-amd64
package-vmselect-arm:
APP_NAME=vmselect $(MAKE) package-via-docker-arm
package-vmselect-arm64:
APP_NAME=vmselect $(MAKE) package-via-docker-arm64
package-vmselect-ppc64le:
APP_NAME=vmselect $(MAKE) package-via-docker-ppc64le
package-vmselect-386:
APP_NAME=vmselect $(MAKE) package-via-docker-386
2019-05-22 21:23:23 +00:00
publish-vmselect:
APP_NAME=vmselect $(MAKE) publish-via-docker
2019-05-22 21:23:23 +00:00
publish-vmselect-race:
APP_NAME=vmselect RACE=-race $(MAKE) publish-via-docker
vmselect-linux-amd64:
APP_NAME=vmselect CGO_ENABLED=1 GOOS=linux GOARCH=amd64 $(MAKE) app-local-goos-goarch
vmselect-linux-arm:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=linux GOARCH=arm $(MAKE) app-local-goos-goarch
vmselect-linux-arm64:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=linux GOARCH=arm64 $(MAKE) app-local-goos-goarch
vmselect-linux-ppc64le:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=linux GOARCH=ppc64le $(MAKE) app-local-goos-goarch
vmselect-linux-s390x:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=linux GOARCH=s390x $(MAKE) app-local-goos-goarch
vmselect-linux-386:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=linux GOARCH=386 $(MAKE) app-local-goos-goarch
vmselect-freebsd-amd64:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=freebsd GOARCH=amd64 $(MAKE) app-local-goos-goarch
vmselect-openbsd-amd64:
APP_NAME=vmselect CGO_ENABLED=0 GOOS=openbsd GOARCH=amd64 $(MAKE) app-local-goos-goarch
all: add Windows build for VictoriaMetrics 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
2023-03-19 08:36:05 +00:00
vmselect-windows-amd64:
GOARCH=amd64 APP_NAME=vmselect $(MAKE) app-local-windows-goarch
vmselect-pure:
APP_NAME=vmselect $(MAKE) app-local-pure