feat(exhook): expose tcp some options for grpc client
This commit is contained in:
parent
2cdf95aaa3
commit
8d0e95cc6b
|
@ -58,5 +58,33 @@ When gRPC is not available, Exhook tries to request the gRPC service at that int
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
keepalive {
|
||||||
|
desc {
|
||||||
|
en: """Enables/disables periodic transmission on a connected socket when no other data is exchanged.
|
||||||
|
If the other end does not respond, the connection is considered broken and an error message is sent to the controlling process."""
|
||||||
|
zh: """当没有其他数据交换时,是否向连接的对端套接字定期的发送探测包。如果另一端没有响应,则认为连接断开,并向控制进程发送错误消息"""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nodelay {
|
||||||
|
desc {
|
||||||
|
en: """If true, option TCP_NODELAY is turned on for the socket,
|
||||||
|
which means that also small amounts of data are sent immediately"""
|
||||||
|
zh: "如果为 true,则为套接字设置 TCP_NODELAY 选项,这意味着会立即发送数据包"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
recbuf {
|
||||||
|
desc {
|
||||||
|
en: "The minimum size of the receive buffer to use for the socket"
|
||||||
|
zh: "套接字的最小接收缓冲区大小"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sndbuf {
|
||||||
|
desc {
|
||||||
|
en: "The minimum size of the send buffer to use for the socket"
|
||||||
|
zh: "套接字的最小发送缓冲区大小"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,10 @@ fields(server) ->
|
||||||
})},
|
})},
|
||||||
{failed_action, failed_action()},
|
{failed_action, failed_action()},
|
||||||
{ssl, ?HOCON(?R_REF(ssl_conf), #{})},
|
{ssl, ?HOCON(?R_REF(ssl_conf), #{})},
|
||||||
|
{socket_options,
|
||||||
|
?HOCON(?R_REF(socket_options), #{
|
||||||
|
default => #{<<"keepalive">> => true, <<"nodelay">> => true}
|
||||||
|
})},
|
||||||
{auto_reconnect,
|
{auto_reconnect,
|
||||||
?HOCON(hoconsc:union([false, emqx_schema:duration()]), #{
|
?HOCON(hoconsc:union([false, emqx_schema:duration()]), #{
|
||||||
default => "60s",
|
default => "60s",
|
||||||
|
@ -81,7 +85,20 @@ fields(server) ->
|
||||||
];
|
];
|
||||||
fields(ssl_conf) ->
|
fields(ssl_conf) ->
|
||||||
Schema = emqx_schema:client_ssl_opts_schema(#{}),
|
Schema = emqx_schema:client_ssl_opts_schema(#{}),
|
||||||
lists:keydelete("user_lookup_fun", 1, Schema).
|
lists:keydelete("user_lookup_fun", 1, Schema);
|
||||||
|
fields(socket_options) ->
|
||||||
|
[
|
||||||
|
{keepalive, ?HOCON(boolean(), #{default => true, desc => ?DESC(keepalive)})},
|
||||||
|
{nodelay, ?HOCON(boolean(), #{default => true, desc => ?DESC(nodelay)})},
|
||||||
|
{recbuf,
|
||||||
|
?HOCON(emqx_schema:bytesize(), #{
|
||||||
|
desc => ?DESC(recbuf), required => false, example => <<"64KB">>
|
||||||
|
})},
|
||||||
|
{sndbuf,
|
||||||
|
?HOCON(emqx_schema:bytesize(), #{
|
||||||
|
desc => ?DESC(sndbuf), required => false, example => <<"16KB">>
|
||||||
|
})}
|
||||||
|
].
|
||||||
|
|
||||||
desc(exhook) ->
|
desc(exhook) ->
|
||||||
"External hook (exhook) configuration.";
|
"External hook (exhook) configuration.";
|
||||||
|
|
|
@ -130,14 +130,19 @@ load(Name, #{request_timeout := Timeout, failed_action := FailedAction} = Opts)
|
||||||
end.
|
end.
|
||||||
|
|
||||||
%% @private
|
%% @private
|
||||||
channel_opts(Opts = #{url := URL}) ->
|
channel_opts(Opts = #{url := URL, socket_options := SockOptsT}) ->
|
||||||
ClientOpts = maps:merge(
|
ClientOpts = maps:merge(
|
||||||
#{pool_size => erlang:system_info(schedulers)},
|
#{pool_size => erlang:system_info(schedulers)},
|
||||||
Opts
|
Opts
|
||||||
),
|
),
|
||||||
|
SockOpts = maps:to_list(SockOptsT),
|
||||||
case uri_string:parse(URL) of
|
case uri_string:parse(URL) of
|
||||||
#{scheme := <<"http">>, host := Host, port := Port} ->
|
#{scheme := <<"http">>, host := Host, port := Port} ->
|
||||||
{ok, {format_http_uri("http", Host, Port), ClientOpts}};
|
NClientOpts = ClientOpts#{
|
||||||
|
gun_opts =>
|
||||||
|
#{transport_opts => SockOpts}
|
||||||
|
},
|
||||||
|
{ok, {format_http_uri("http", Host, Port), NClientOpts}};
|
||||||
#{scheme := <<"https">>, host := Host, port := Port} ->
|
#{scheme := <<"https">>, host := Host, port := Port} ->
|
||||||
SslOpts =
|
SslOpts =
|
||||||
case maps:get(ssl, Opts, undefined) of
|
case maps:get(ssl, Opts, undefined) of
|
||||||
|
@ -158,7 +163,7 @@ channel_opts(Opts = #{url := URL}) ->
|
||||||
gun_opts =>
|
gun_opts =>
|
||||||
#{
|
#{
|
||||||
transport => ssl,
|
transport => ssl,
|
||||||
transport_opts => SslOpts
|
transport_opts => SockOpts ++ SslOpts
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ok, {format_http_uri("https", Host, Port), NClientOpts}};
|
{ok, {format_http_uri("https", Host, Port), NClientOpts}};
|
||||||
|
|
Loading…
Reference in New Issue