2016-02-18 17:16:41 -08:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
GOPATH := $(shell go env GOPATH)
|
2017-06-26 18:07:06 -07:00
|
|
|
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
|
2017-06-02 14:05:51 -07:00
|
|
|
|
2019-09-11 16:27:59 -07:00
|
|
|
GOARCH := $(shell go env GOARCH)
|
2019-06-04 00:59:40 -07:00
|
|
|
GOOS := $(shell go env GOOS)
|
|
|
|
|
2019-09-20 16:19:56 -07:00
|
|
|
VERSION ?= $(shell git describe --tags)
|
2023-09-30 03:13:56 -07:00
|
|
|
TAG ?= "quay.io/minio/minio:$(VERSION)"
|
2019-09-20 16:19:56 -07:00
|
|
|
|
2023-03-05 05:57:35 +01:00
|
|
|
GOLANGCI_DIR = .bin/golangci/$(GOLANGCI_VERSION)
|
|
|
|
GOLANGCI = $(GOLANGCI_DIR)/golangci-lint
|
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
all: build
|
2014-11-30 13:55:10 -08:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
checks: ## check dependencies
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Checking dependencies"
|
2015-02-21 21:38:04 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
2015-02-01 21:18:46 -08:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
help: ## print this help
|
2022-08-02 23:10:22 -07:00
|
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
|
2021-10-01 11:53:06 -07:00
|
|
|
|
|
|
|
getdeps: ## fetch necessary dependencies
|
2019-03-28 00:16:17 +01:00
|
|
|
@mkdir -p ${GOPATH}/bin
|
2023-12-06 18:17:03 -08:00
|
|
|
@echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOLANGCI_DIR)
|
perf: websocket grid connectivity for all internode communication (#18461)
This PR adds a WebSocket grid feature that allows servers to communicate via
a single two-way connection.
There are two request types:
* Single requests, which are `[]byte => ([]byte, error)`. This is for efficient small
roundtrips with small payloads.
* Streaming requests which are `[]byte, chan []byte => chan []byte (and error)`,
which allows for different combinations of full two-way streams with an initial payload.
Only a single stream is created between two machines - and there is, as such, no
server/client relation since both sides can initiate and handle requests. Which server
initiates the request is decided deterministically on the server names.
Requests are made through a mux client and server, which handles message
passing, congestion, cancelation, timeouts, etc.
If a connection is lost, all requests are canceled, and the calling server will try
to reconnect. Registered handlers can operate directly on byte
slices or use a higher-level generics abstraction.
There is no versioning of handlers/clients, and incompatible changes should
be handled by adding new handlers.
The request path can be changed to a new one for any protocol changes.
First, all servers create a "Manager." The manager must know its address
as well as all remote addresses. This will manage all connections.
To get a connection to any remote, ask the manager to provide it given
the remote address using.
```
func (m *Manager) Connection(host string) *Connection
```
All serverside handlers must also be registered on the manager. This will
make sure that all incoming requests are served. The number of in-flight
requests and responses must also be given for streaming requests.
The "Connection" returned manages the mux-clients. Requests issued
to the connection will be sent to the remote.
* `func (c *Connection) Request(ctx context.Context, h HandlerID, req []byte) ([]byte, error)`
performs a single request and returns the result. Any deadline provided on the request is
forwarded to the server, and canceling the context will make the function return at once.
* `func (c *Connection) NewStream(ctx context.Context, h HandlerID, payload []byte) (st *Stream, err error)`
will initiate a remote call and send the initial payload.
```Go
// A Stream is a two-way stream.
// All responses *must* be read by the caller.
// If the call is canceled through the context,
//The appropriate error will be returned.
type Stream struct {
// Responses from the remote server.
// Channel will be closed after an error or when the remote closes.
// All responses *must* be read by the caller until either an error is returned or the channel is closed.
// Canceling the context will cause the context cancellation error to be returned.
Responses <-chan Response
// Requests sent to the server.
// If the handler is defined with 0 incoming capacity this will be nil.
// Channel *must* be closed to signal the end of the stream.
// If the request context is canceled, the stream will no longer process requests.
Requests chan<- []byte
}
type Response struct {
Msg []byte
Err error
}
```
There are generic versions of the server/client handlers that allow the use of type
safe implementations for data types that support msgpack marshal/unmarshal.
2023-11-20 17:09:35 -08:00
|
|
|
@echo "Installing msgp" && go install -v github.com/tinylib/msgp@6ac204f0b4d48d17ab4fa442134c7fba13127a4e
|
2021-11-05 12:20:08 -07:00
|
|
|
@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
|
2015-03-09 16:15:06 -07:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
crosscompile: ## cross compile minio
|
2019-01-22 09:27:23 +05:30
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2023-03-09 15:15:30 -08:00
|
|
|
verifiers: lint check-gen
|
2020-09-28 21:33:34 +01:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
check-gen: ## check for updated autogenerated files
|
2020-09-28 21:33:34 +01:00
|
|
|
@go generate ./... >/dev/null
|
2020-10-02 19:10:39 +01:00
|
|
|
@(! git diff --name-only | grep '_gen.go$$') || (echo "Non-committed changes in auto-generated code is detected, please commit them to proceed." && false)
|
2015-08-22 18:34:00 -07:00
|
|
|
|
2023-03-09 15:15:30 -08:00
|
|
|
lint: getdeps ## runs golangci-lint suite of linters
|
2023-04-07 16:51:31 +02:00
|
|
|
@echo "Running $@ check"
|
|
|
|
@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
|
|
|
|
|
|
|
|
lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
|
2019-09-11 16:27:59 -07:00
|
|
|
@echo "Running $@ check"
|
2023-03-09 15:15:30 -08:00
|
|
|
@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml --fix
|
2020-08-24 12:11:20 -07:00
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
check: test
|
2023-09-19 03:19:26 -07:00
|
|
|
test: verifiers build build-debugging ## builds minio, runs linters, tests
|
2017-09-12 16:56:33 -07:00
|
|
|
@echo "Running unit tests"
|
2022-07-21 01:24:03 -07:00
|
|
|
@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue ./...
|
2018-08-28 01:27:01 -07:00
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-root-disable: install-race
|
2023-04-28 12:24:14 -07:00
|
|
|
@echo "Running minio root lockdown tests"
|
|
|
|
@env bash $(PWD)/buildscripts/disable-root.sh
|
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-decom: install-race
|
2022-07-04 14:02:54 -07:00
|
|
|
@echo "Running minio decom tests"
|
|
|
|
@env bash $(PWD)/docs/distributed/decom.sh
|
2022-07-16 19:35:24 -07:00
|
|
|
@env bash $(PWD)/docs/distributed/decom-encrypted.sh
|
|
|
|
@env bash $(PWD)/docs/distributed/decom-encrypted-sse-s3.sh
|
2022-07-17 08:43:14 -07:00
|
|
|
@env bash $(PWD)/docs/distributed/decom-compressed-sse-s3.sh
|
2022-07-04 14:02:54 -07:00
|
|
|
|
2023-12-08 12:04:54 -08:00
|
|
|
test-configfile: install-race
|
|
|
|
@env bash $(PWD)/docs/distributed/distributed-from-config-file.sh
|
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-upgrade: install-race
|
2021-11-21 10:41:30 -08:00
|
|
|
@echo "Running minio upgrade tests"
|
|
|
|
@(env bash $(PWD)/buildscripts/minio-upgrade.sh)
|
|
|
|
|
2021-11-10 18:18:09 -08:00
|
|
|
test-race: verifiers build ## builds minio, runs linters, tests (race)
|
2020-01-10 02:35:06 -08:00
|
|
|
@echo "Running unit tests under -race"
|
|
|
|
@(env bash $(PWD)/buildscripts/race.sh)
|
|
|
|
|
2021-11-10 18:18:09 -08:00
|
|
|
test-iam: build ## verify IAM (external IDP, etcd backends)
|
2021-11-09 09:25:13 -08:00
|
|
|
@echo "Running tests for IAM (external IDP, etcd backends)"
|
2022-07-21 01:24:03 -07:00
|
|
|
@MINIO_API_REQUESTS_MAX=10000 CGO_ENABLED=0 go test -tags kqueue -v -run TestIAM* ./cmd
|
2021-11-09 09:25:13 -08:00
|
|
|
@echo "Running tests for IAM (external IDP, etcd backends) with -race"
|
2022-07-21 01:24:03 -07:00
|
|
|
@MINIO_API_REQUESTS_MAX=10000 GORACE=history_size=7 CGO_ENABLED=1 go test -race -tags kqueue -v -run TestIAM* ./cmd
|
2021-11-04 08:16:30 -07:00
|
|
|
|
2023-06-15 12:43:26 -07:00
|
|
|
test-sio-error:
|
|
|
|
@(env bash $(PWD)/docs/bucket/replication/sio-error.sh)
|
|
|
|
|
2023-01-25 05:16:33 +05:30
|
|
|
test-replication-2site:
|
2022-06-06 02:54:39 -07:00
|
|
|
@(env bash $(PWD)/docs/bucket/replication/setup_2site_existing_replication.sh)
|
2023-01-25 05:16:33 +05:30
|
|
|
|
|
|
|
test-replication-3site:
|
|
|
|
@(env bash $(PWD)/docs/bucket/replication/setup_3site_replication.sh)
|
|
|
|
|
|
|
|
test-delete-replication:
|
2022-12-28 22:48:33 -08:00
|
|
|
@(env bash $(PWD)/docs/bucket/replication/delete-replication.sh)
|
2021-11-10 18:18:09 -08:00
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-replication: install-race test-replication-2site test-replication-3site test-delete-replication test-sio-error ## verify multi site replication
|
2023-01-25 05:16:33 +05:30
|
|
|
@echo "Running tests for replicating three sites"
|
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-site-replication-ldap: install-race ## verify automatic site replication
|
2022-01-07 17:41:43 -08:00
|
|
|
@echo "Running tests for automatic site replication of IAM (with LDAP)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-ldap.sh)
|
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-site-replication-oidc: install-race ## verify automatic site replication
|
2022-01-07 17:41:43 -08:00
|
|
|
@echo "Running tests for automatic site replication of IAM (with OIDC)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-oidc.sh)
|
2021-12-08 11:50:15 -08:00
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
test-site-replication-minio: install-race ## verify automatic site replication
|
2022-01-07 19:11:54 -08:00
|
|
|
@echo "Running tests for automatic site replication of IAM (with MinIO IDP)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-minio-idp.sh)
|
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
verify: ## verify minio various setups
|
2019-12-02 15:54:26 -08:00
|
|
|
@echo "Verifying build with race"
|
2022-05-30 10:58:37 -07:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2017-09-12 16:56:33 -07:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-build.sh)
|
2015-01-21 00:50:23 -08:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
verify-healing: ## verify healing and replacing disks with minio binary
|
2020-01-10 02:35:06 -08:00
|
|
|
@echo "Verify healing build with race"
|
2022-05-30 10:58:37 -07:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2020-01-10 02:35:06 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing.sh)
|
2021-12-21 10:08:26 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/unaligned-healing.sh)
|
2022-09-07 07:25:39 -07:00
|
|
|
@(env bash $(PWD)/buildscripts/heal-inconsistent-versions.sh)
|
2016-08-04 16:48:50 -07:00
|
|
|
|
2022-08-02 23:10:22 -07:00
|
|
|
verify-healing-with-root-disks: ## verify healing root disks
|
2022-08-04 16:10:08 -07:00
|
|
|
@echo "Verify healing with root drives"
|
2022-07-14 00:29:44 +01:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing-with-root-disks.sh)
|
|
|
|
|
2022-08-02 23:10:22 -07:00
|
|
|
verify-healing-with-rewrite: ## verify healing to rewrite old xl.meta -> new xl.meta
|
|
|
|
@echo "Verify healing with rewrite"
|
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
|
|
|
@(env bash $(PWD)/buildscripts/rewrite-old-new.sh)
|
|
|
|
|
2022-04-20 12:49:05 -07:00
|
|
|
verify-healing-inconsistent-versions: ## verify resolving inconsistent versions
|
|
|
|
@echo "Verify resolving inconsistent versions build with race"
|
2022-05-30 10:58:37 -07:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2022-04-20 12:49:05 -07:00
|
|
|
@(env bash $(PWD)/buildscripts/resolve-right-versions.sh)
|
|
|
|
|
2023-09-19 03:19:26 -07:00
|
|
|
build-debugging:
|
|
|
|
@(env bash $(PWD)/docs/debugging/build.sh)
|
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
build: checks ## builds minio to $(PWD)
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Building minio binary to './minio'"
|
2022-01-02 09:15:06 -08:00
|
|
|
@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2021-02-09 22:59:43 +05:30
|
|
|
hotfix-vars:
|
|
|
|
$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
|
|
|
|
sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
|
2021-12-02 17:33:37 -08:00
|
|
|
$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
|
|
|
|
$(eval TAG := "minio/minio:$(VERSION)")
|
|
|
|
|
2023-11-30 15:25:51 -08:00
|
|
|
hotfix: hotfix-vars clean install ## builds minio binary with hotfix tags
|
|
|
|
@wget -q -c https://github.com/minio/pkger/releases/download/v2.2.0/pkger_2.2.0_linux_amd64.deb
|
|
|
|
@wget -q -c https://raw.githubusercontent.com/minio/minio-service/v1.0.0/linux-systemd/distributed/minio.service
|
|
|
|
@sudo apt install ./pkger_2.2.0_linux_amd64.deb --yes
|
|
|
|
@mkdir -p minio-release/$(GOOS)-$(GOARCH)/archive
|
|
|
|
@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio
|
|
|
|
@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION)
|
|
|
|
@minisign -qQSm minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION) -s "${CRED_DIR}/minisign.key" < "${CRED_DIR}/minisign-passphrase"
|
|
|
|
@sha256sum < minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION) | sed 's, -,minio.$(VERSION),g' > minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION).sha256sum
|
|
|
|
@cp -af minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION)* minio-release/$(GOOS)-$(GOARCH)/archive/
|
|
|
|
@pkger -r $(VERSION) --ignore
|
2021-12-02 17:33:37 -08:00
|
|
|
|
|
|
|
hotfix-push: hotfix
|
2023-11-30 15:25:51 -08:00
|
|
|
@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-0.minio.io:~/releases/server/minio/hotfixes/linux-amd64/
|
|
|
|
@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-0.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive
|
|
|
|
@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-1.minio.io:~/releases/server/minio/hotfixes/linux-amd64/
|
|
|
|
@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* minio@dl-1.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive
|
2022-02-03 15:40:32 -08:00
|
|
|
@echo "Published new hotfix binaries at https://dl.min.io/server/minio/hotfixes/linux-amd64/archive/minio.$(VERSION)"
|
2021-12-02 17:33:37 -08:00
|
|
|
|
|
|
|
docker-hotfix-push: docker-hotfix
|
2022-02-03 15:40:32 -08:00
|
|
|
@docker push -q $(TAG) && echo "Published new container $(TAG)"
|
2020-12-08 17:12:13 +01:00
|
|
|
|
2021-12-02 17:33:37 -08:00
|
|
|
docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
|
2021-01-28 15:54:41 -08:00
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
2022-02-03 15:40:32 -08:00
|
|
|
@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
|
2021-01-28 15:54:41 -08:00
|
|
|
|
2023-01-12 01:39:12 -08:00
|
|
|
docker: build ## builds minio docker container
|
2020-06-28 08:15:15 -07:00
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
2022-02-03 15:40:32 -08:00
|
|
|
@docker build -q --no-cache -t $(TAG) . -f Dockerfile
|
2018-09-25 10:33:25 -07:00
|
|
|
|
2023-09-16 02:28:06 -07:00
|
|
|
install-race: checks ## builds minio to $(PWD)
|
|
|
|
@echo "Building minio binary to './minio'"
|
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -tags kqueue -race -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
|
|
|
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
|
|
|
|
@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/minio $(GOPATH)/bin/minio
|
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
install: build ## builds minio and installs it to $GOPATH/bin.
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
|
2019-05-07 10:39:26 -07:00
|
|
|
@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/minio $(GOPATH)/bin/minio
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Installation successful. To learn more, try \"minio --help\"."
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2021-10-01 11:53:06 -07:00
|
|
|
clean: ## cleanup all generated assets
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Cleaning up all the generated files"
|
2016-02-10 16:40:09 -08:00
|
|
|
@find . -name '*.test' | xargs rm -fv
|
2019-02-13 04:59:36 -08:00
|
|
|
@find . -name '*~' | xargs rm -fv
|
2022-07-21 07:25:54 -07:00
|
|
|
@find . -name '.#*#' | xargs rm -fv
|
|
|
|
@find . -name '#*#' | xargs rm -fv
|
2018-02-13 20:59:19 -08:00
|
|
|
@rm -rvf minio
|
|
|
|
@rm -rvf build
|
|
|
|
@rm -rvf release
|
2020-04-01 00:04:25 -07:00
|
|
|
@rm -rvf .verify*
|
2023-11-30 15:25:51 -08:00
|
|
|
@rm -rvf minio-release
|
|
|
|
@rm -rvf minio.RELEASE*.hotfix.*
|
|
|
|
@rm -rvf pkger_*.deb
|