| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2022-07-28 | renaming | chrislu | 16 | -1411/+0 | |
| 2022-05-30 | stop when in memory log is done | chrislu | 1 | -1/+1 | |
| 2022-05-30 | subscribe metadata between a range | chrislu | 1 | -1/+1 | |
| 2022-05-24 | reduce busy waiting when reading metadata logs | chrislu | 1 | -1/+0 | |
| 2021-12-26 | use streaming mode for long poll grpc calls | chrislu | 3 | -12/+12 | |
| streaming mode would create separate grpc connections for each call. this is to ensure the long poll connections are properly closed. | |||||
| 2021-12-05 | upgrade protoc to 3.17.3 | chrislu | 1 | -0/+2 | |
| $brew install protobuf $ protoc --version libprotoc 3.17.3 $ go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26 $ go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1 | |||||
| 2021-11-08 | use constants | Chris Lu | 1 | -1/+2 | |
| 2021-11-05 | Revert "master: rename grpc function KeepConnected() to ↵ | Chris Lu | 1 | -4/+4 | |
| SubscribeVolumeLocationUpdates()" This reverts commit af71ae11aa29350a60ed7d3b9a16276a06ba9dcc. | |||||
| 2021-11-03 | master: rename grpc function KeepConnected() to SubscribeVolumeLocationUpdates() | Chris Lu | 1 | -4/+4 | |
| 2021-11-02 | shell: optionally read filer address from master | Chris Lu | 1 | -2/+4 | |
| 2021-09-25 | avoid possible metadata subscription data loss | Chris Lu | 1 | -2/+4 | |
| Previous implementation append filer logs into one file. So one file is not always sorted, which can lead to miss reading some entries, especially when different filers have different write throughput. | |||||
| 2021-09-12 | change server address from string to a type | Chris Lu | 3 | -9/+13 | |
| 2021-09-06 | refactoring | Chris Lu | 1 | -1/+10 | |
| 2021-06-27 | logging changes to debug | Chris Lu | 2 | -2/+2 | |
| 2021-05-07 | add retry to assign volume | Chris Lu | 1 | -19/+26 | |
| fix https://github.com/chrislusf/seaweedfs/issues/2056 | |||||
| 2021-01-28 | add back AdjustedUrl() related code | Chris Lu | 1 | -0/+4 | |
| 2021-01-24 | mount: outsideContainerClusterMode proxy through filer | Chris Lu | 1 | -4/+0 | |
| Running mount outside of the cluster would not need to expose all the volume servers to outside of the cluster. The chunk read and write will go through the filer. | |||||
| 2021-01-24 | Revert "mount: when outside cluster network, use filer as proxy to access ↵ | Chris Lu | 1 | -0/+4 | |
| volume servers" This reverts commit 096e088d7bb2a5dce7573b24c2d3006d1cb6f9ec. | |||||
| 2021-01-24 | mount: when outside cluster network, use filer as proxy to access volume servers | Chris Lu | 1 | -4/+0 | |
| 2021-01-11 | filer: ensure seamless meta data updates | Chris Lu | 1 | -11/+15 | |
| 2020-10-11 | refactoring in order to adjust volume server url later | Chris Lu | 1 | -2/+2 | |
| 2020-09-09 | properly cancel context for streaming grpc | Chris Lu | 1 | -1/+3 | |
| 2020-09-09 | filer: cross cluster synchronization | Chris Lu | 2 | -7/+17 | |
| 2020-09-01 | rename filer2 to filer | Chris Lu | 4 | -10/+10 | |
| 2020-08-29 | use UTC for all time related folders | Chris Lu | 2 | -0/+2 | |
| 2020-08-29 | read meta logs by timestamp | Chris Lu | 1 | -1/+1 | |
| pass in event ts when moving logs meta aggregator reads in memory logs only | |||||
| 2020-08-28 | add signatures to messages to avoid double processing | Chris Lu | 1 | -1/+1 | |
| 2020-07-05 | refactoring | Chris Lu | 1 | -2/+2 | |
| 2020-06-30 | filer: support active<=>active filer replication | Chris Lu | 1 | -1/+1 | |
| 2020-06-05 | go fmt | Chris Lu | 2 | -4/+4 | |
| 2020-05-17 | add delete channel | Chris Lu | 3 | -0/+5 | |
| 2020-05-17 | reduc logs | Chris Lu | 1 | -1/+1 | |
| 2020-05-17 | fix looping | Chris Lu | 1 | -3/+3 | |
| 2020-05-17 | add DeleteTopic | Chris Lu | 1 | -0/+63 | |
| 2020-05-17 | sync subscribe() | Chris Lu | 1 | -1/+8 | |
| 2020-05-17 | subscribe support cancel | Chris Lu | 2 | -4/+26 | |
| 2020-05-17 | simplify disconnected stream detection | Chris Lu | 1 | -15/+2 | |
| 2020-05-16 | detect disconnected subscribers | Chris Lu | 2 | -20/+32 | |
| 2020-05-16 | able to detect disconnected subscribers | Chris Lu | 3 | -25/+40 | |
| 2020-05-15 | revert to one subscriber one thread | Chris Lu | 3 | -97/+15 | |
| 2020-05-12 | rename | Chris Lu | 1 | -14/+14 | |
| 2020-05-12 | rename | Chris Lu | 1 | -9/+9 | |
| 2020-05-12 | multiple subscriber with same subscriberId shares the topic manager | Chris Lu | 4 | -13/+95 | |
| rename topicControl to topicCursor | |||||
| 2020-05-12 | refactor | Chris Lu | 4 | -33/+33 | |
| 2020-05-10 | able to connect publisher | Chris Lu | 1 | -10/+7 | |
| 2020-05-10 | go fmt | Chris Lu | 7 | -8/+9 | |
| 2020-05-10 | async chan write read, no write for closed chan | Chris Lu | 4 | -2/+26 | |
| 2020-05-09 | add pub sub md5 | Chris Lu | 3 | -6/+27 | |
| 2020-05-09 | add deleteTopic, refactoring | Chris Lu | 4 | -56/+83 | |
| 2020-05-08 | able to read chan and write chan | Chris Lu | 12 | -41/+216 | |
