aboutsummaryrefslogtreecommitdiff
path: root/weed/command
AgeCommit message (Collapse)AuthorFilesLines
2021-12-07audit logKonstantin Lebedev1-0/+1
2021-12-05avoid creating the same bucket with a different randomized namechrislu1-15/+19
related to https://github.com/chrislusf/seaweedfs/issues/2492
2021-12-05adjust randomized bucket namechrislu1-1/+1
2021-11-29redis3 supports sentinelChris Lu1-0/+8
2021-11-29add s3.clean.uploads -timeAgo=24hChris Lu1-0/+1
2021-11-28adjust error logChris Lu1-1/+3
2021-11-27add logs for writing to remote fileChris Lu1-3/+5
2021-11-25fix redis2 sentinel config examplelimd1-1/+1
2021-11-25Merge remote-tracking branch 'origin/master'limd3-16/+22
2021-11-25support redis sentinellimd1-0/+8
2021-11-22add retries when writing to remote s3Chris Lu2-13/+19
fix https://github.com/chrislusf/seaweedfs/issues/2465
2021-11-11filer: fix mysql2 SQL templateChris Lu1-1/+1
2021-11-11filer: fix mysql command to upsertChris Lu1-2/+2
2021-11-06filer: deprecate "-peers" optionChris Lu2-10/+0
2021-11-05Revert "master: rename grpc function KeepConnected() to ↵Chris Lu3-3/+3
SubscribeVolumeLocationUpdates()" This reverts commit af71ae11aa29350a60ed7d3b9a16276a06ba9dcc.
2021-11-03master: rename grpc function KeepConnected() to SubscribeVolumeLocationUpdates()Chris Lu3-3/+3
2021-11-02better printoutChris Lu1-2/+0
2021-11-02shell: optionally read filer address from masterChris Lu1-4/+5
2021-10-31filer.meta.tail: add example to send metadata to elastic searchChris Lu1-0/+2
2021-10-24volume vacuum: avoid timeout with streaming progress reportChris Lu2-2/+2
fix https://github.com/chrislusf/seaweedfs/issues/2396
2021-10-14refactor: move from io/ioutil to io and os packageEng Zer Jun3-15/+14
The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
2021-10-10removing tikv to resolve "go mod tidy" problemChris Lu2-9/+0
tikv is causing "go mod tidy" problem. Need to resolve this before adding tikv back. go mod tidy go: finding module for package github.com/coreos/etcd/clientv3/balancer/picker go: finding module for package cloud.google.com/go/kms/apiv1 go: finding module for package github.com/coreos/etcd/clientv3/balancer/resolver/endpoint go: finding module for package google.golang.org/grpc/naming go: finding module for package github.com/coreos/etcd/clientv3/credentials go: finding module for package github.com/coreos/etcd/clientv3/balancer go: finding module for package github.com/d4l3k/messagediff go: found github.com/coreos/etcd/clientv3/balancer in github.com/coreos/etcd v3.3.26+incompatible go: found github.com/coreos/etcd/clientv3/balancer/picker in github.com/coreos/etcd v3.3.26+incompatible go: found github.com/coreos/etcd/clientv3/balancer/resolver/endpoint in github.com/coreos/etcd v3.3.26+incompatible go: found github.com/coreos/etcd/clientv3/credentials in github.com/coreos/etcd v3.3.26+incompatible go: found cloud.google.com/go/kms/apiv1 in cloud.google.com/go/kms v1.0.0 go: found github.com/d4l3k/messagediff in github.com/d4l3k/messagediff v1.2.1 go: finding module for package google.golang.org/grpc/naming github.com/chrislusf/seaweedfs/weed/filer/tikv imports github.com/tikv/client-go/v2/tikv imports go.etcd.io/etcd/clientv3 tested by go.etcd.io/etcd/clientv3.test imports github.com/coreos/etcd/integration imports github.com/coreos/etcd/proxy/grpcproxy imports google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.41.0), but does not contain package google.golang.org/grpc/naming
2021-10-10removing etcd sequencerChris Lu1-4/+1
causing go mod tidy problem. If anyone wants this, please help to resolve this first. github.com/chrislusf/seaweedfs/weed/sequence imports go.etcd.io/etcd/client tested by go.etcd.io/etcd/client.test imports github.com/coreos/etcd/integration imports github.com/coreos/etcd/proxy/grpcproxy imports google.golang.org/grpc/naming: module google.golang.org/grpc@latest found (v1.41.0), but does not contain package google.golang.org/grpc/naming
2021-10-04server: remove peer check if not starting masterChris Lu1-3/+2
more fix https://github.com/chrislusf/seaweedfs/issues/2352
2021-10-04add back logic to check master peersChris Lu1-0/+6
fix https://github.com/chrislusf/seaweedfs/issues/2352
2021-10-04Merge pull request #2354 from chrislusf/bptreeChris Lu2-0/+23
Add Redis3
2021-10-04add redis3Chris Lu1-0/+22
2021-10-04add redis3Chris Lu1-0/+1
2021-10-01typoChris Lu1-1/+1
2021-10-01retry both assign volume and uploading dataChris Lu1-28/+34
fix https://github.com/chrislusf/seaweedfs/issues/2351
2021-09-26s3: default to allow empty folder for better performanceChris Lu3-3/+3
2021-09-25adjust metadata tail outputChris Lu1-3/+3
2021-09-20use default 10000 for grpc portChris Lu5-7/+21
2021-09-19go fmtChris Lu2-8/+7
2021-09-15filer.remote.gateway: add options to include or exclude new bucket names to ↵Chris Lu2-0/+15
mirror
2021-09-15adjust help messagesChris Lu2-15/+2
2021-09-15add command filre.remote.gatewayChris Lu1-0/+1
2021-09-15separate filer.remote.gateway command to avoid confusionChris Lu4-52/+127
2021-09-14go fmtChris Lu1-10/+10
2021-09-12change server address from string to a typeChris Lu24-188/+142
2021-09-12custom grpc port: filerChris Lu2-1/+4
2021-09-12custom grpc port: volume serverChris Lu2-1/+4
2021-09-12custom grpc port: master followerChris Lu1-1/+2
2021-09-12custom grpc port: masterChris Lu2-1/+4
2021-09-08mysql table DDL: minor, not necessary, but a little more strictChris Lu1-2/+2
the directory is already hashed into dirhash. So this change is not strictly required.
2021-09-07better IP v6 supportChris Lu5-18/+14
2021-09-07handle ipv6 addressesChris Lu3-3/+3
2021-09-06refactoringChris Lu1-5/+30
2021-09-06update help messageChris Lu1-6/+8
2021-09-06filer.remote.sync: createBucketWithRandomSuffix defaults to trueChris Lu1-1/+1