fix: duplicate key in example

This commit is contained in:
Kjell Winblad 2023-11-24 17:59:56 +01:00
parent fc7bedb81a
commit d03674a505
1 changed files with 6 additions and 15 deletions

View File

@ -176,15 +176,18 @@ values({put, PostgreSQLType}) ->
enable => true, enable => true,
connector => <<"my_pgsql_connector">>, connector => <<"my_pgsql_connector">>,
resource_opts => #{ resource_opts => #{
health_check_interval => "32s" batch_size => 1,
batch_time => <<"50ms">>,
inflight_window => 100,
max_buffer_bytes => <<"256MB">>,
request_ttl => <<"45s">>,
worker_pool_size => 16
} }
}, },
values({producer, PostgreSQLType}) values({producer, PostgreSQLType})
); );
values({producer, _PostgreSQLType}) -> values({producer, _PostgreSQLType}) ->
#{ #{
<<"enable">> => true,
<<"connector">> => <<"connector_pgsql_test">>,
<<"parameters">> => #{ <<"parameters">> => #{
<<"sql">> => <<"sql">> =>
<< <<
@ -195,18 +198,6 @@ values({producer, _PostgreSQLType}) ->
" TO_TIMESTAMP((${timestamp} :: bigint))\n" " TO_TIMESTAMP((${timestamp} :: bigint))\n"
")" ")"
>> >>
},
<<"resource_opts">> => #{
<<"batch_size">> => 1,
<<"batch_time">> => <<"0ms">>,
<<"health_check_interval">> => <<"15s">>,
<<"inflight_window">> => 100,
<<"max_buffer_bytes">> => <<"256MB">>,
<<"query_mode">> => <<"async">>,
<<"request_ttl">> => <<"45s">>,
<<"start_after_created">> => true,
<<"start_timeout">> => <<"5s">>,
<<"worker_pool_size">> => 16
} }
}. }.