Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: decrease transport_ack_timeout #251

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/google/uuid v1.6.0
github.com/longhorn/backupstore v0.0.0-20241130163459-2b482603a2c6
github.com/longhorn/go-common-libs v0.0.0-20241128023039-4d6c3a880dbc
github.com/longhorn/go-spdk-helper v0.0.0-20241130163407-e912304fab8b
github.com/longhorn/go-spdk-helper v0.0.0-20241202131855-7d9a097456b2
github.com/longhorn/types v0.0.0-20241123075624-48c550af4eab
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ github.com/longhorn/backupstore v0.0.0-20241130163459-2b482603a2c6 h1:hcIAm6c92I
github.com/longhorn/backupstore v0.0.0-20241130163459-2b482603a2c6/go.mod h1:cQXypqB6WonN0aIxWZWtUBPCOKlNNoi0hqkfYFsZlkI=
github.com/longhorn/go-common-libs v0.0.0-20241128023039-4d6c3a880dbc h1:Ok7qdNu2038Oj7tQNaKjFqP20NqokR31a3RVMV7ulms=
github.com/longhorn/go-common-libs v0.0.0-20241128023039-4d6c3a880dbc/go.mod h1:gSa+qB058kcNlCaOOwIFPHb3tvqMTmKcxtL7HPTS4o4=
github.com/longhorn/go-spdk-helper v0.0.0-20241130163407-e912304fab8b h1:FtYxFNC/HfjT3tq6te2unDzEroJNm6pG1UNnoKfApWk=
github.com/longhorn/go-spdk-helper v0.0.0-20241130163407-e912304fab8b/go.mod h1:siQvee7KIyFESzr5iQUVQavHCcSlzw2AjbdjchpDm4o=
github.com/longhorn/go-spdk-helper v0.0.0-20241202131855-7d9a097456b2 h1:r55x3FfMPn5mj2aXLvJT6ijfa9BkWQSL+qNZK1CKsb4=
github.com/longhorn/go-spdk-helper v0.0.0-20241202131855-7d9a097456b2/go.mod h1:siQvee7KIyFESzr5iQUVQavHCcSlzw2AjbdjchpDm4o=
github.com/longhorn/types v0.0.0-20241123075624-48c550af4eab h1:vW/sSHB0U/GPnornD1cdoKSEe9bdBwVKP68cZUs1Xh0=
github.com/longhorn/types v0.0.0-20241123075624-48c550af4eab/go.mod h1:dIPa2yMBPOa514bn3pohT7kbVAQcZbZSWItpgxunuPs=
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
Expand Down
2 changes: 1 addition & 1 deletion pkg/spdk/disk/nvme/nvme.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const (
diskCtrlrLossTimeoutSec = 30
diskReconnectDelaySec = 2
diskFastIOFailTimeoutSec = 15
diskTransportAckTimeout = 14
diskTransportAckTimeout = 10
diskKeepAliveTimeoutMs = 10000
diskMultipath = "disable"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/spdk/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const (
replicaCtrlrLossTimeoutSec = 15
replicaReconnectDelaySec = 2
replicaFastIOFailTimeoutSec = 10
replicaTransportAckTimeout = 14
replicaTransportAckTimeout = 10
replicaKeepAliveTimeoutMs = 10000
replicaMultipath = "disable"
)
Expand Down
24 changes: 20 additions & 4 deletions vendor/github.com/longhorn/go-spdk-helper/pkg/types/types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ github.com/longhorn/go-common-libs/sync
github.com/longhorn/go-common-libs/sys
github.com/longhorn/go-common-libs/types
github.com/longhorn/go-common-libs/utils
# github.com/longhorn/go-spdk-helper v0.0.0-20241130163407-e912304fab8b
# github.com/longhorn/go-spdk-helper v0.0.0-20241202131855-7d9a097456b2
## explicit; go 1.22.7
github.com/longhorn/go-spdk-helper/pkg/jsonrpc
github.com/longhorn/go-spdk-helper/pkg/nvme
Expand Down
Loading