-
Notifications
You must be signed in to change notification settings - Fork 359
Closed
Labels
Description
The timeouts for RPC do not seem to be configurable. From rpc.go
:
var (
connectTimeout = 1 * time.Second
namenodeTimeout = 3 * time.Second
datanodeTimeout = 3 * time.Second
)
These values are rather low (especially the connection timeout), and I have been experiencing quite a lot of timeouts.
Being able to configure these would be very helpful. This does not have to be per client -- a global setting would be fine too.
arthrarnld, bfzamperetti, Itfly and systm32