shackle

High-Performance Erlang Network Client Framework

Build Status

Requirements

Features

Framework goals

How-to

Implementing a client

-behavior(shackle_client).
-export([
    init/0,
    setup/2,
    handle_request/2,
    handle_data/2,
    terminate/1
]).

-record(state, {
    buffer =       <<>> :: binary(),
    request_counter = 0 :: non_neg_integer()
}).

-spec init(Options :: term()) ->
    {ok, State :: term()} |
    {error, Reason :: term()}.

init(_Options) ->
    {ok, #state {}}.

-spec setup(Socket :: inet:socket(), State :: term()) ->
    {ok, State :: term()} |
    {error, Reason :: term(), State :: term()}.

setup(Socket, State) ->
    case gen_tcp:send(Socket, <<"INIT">>) of
        ok ->
            case gen_tcp:recv(Socket, 0) of
                {ok, <<"OK">>} ->
                    {ok, State};
                {error, Reason} ->
                    {error, Reason, State}
            end;
        {error, Reason} ->
            {error, Reason, State}
    end.

-spec handle_request(Request :: term(), State :: term()) ->
    {ok, RequestId :: external_request_id(), Data :: iodata(), State :: term()}.

handle_request(noop,  State) ->
    Data = arithmetic_protocol:request(0, noop, 0, 0),

    {ok, undefined, Data, State};
handle_request({Operation, A, B}, #state {
        request_counter = RequestCounter
    } = State) ->

    RequestId = request_id(RequestCounter),
    Data = request(RequestId, Operation, A, B),

    {ok, RequestId, Data, State#state {
        request_counter = RequestCounter + 1
    }}.

-spec handle_data(Data :: binary(), State :: term()) ->
    {ok, [{RequestId :: external_request_id(), Reply :: term()}], State :: term()}.

handle_data(Data, #state {
        buffer = Buffer
    } = State) ->

    Data2 = <<Buffer/binary, Data/binary>>,
    {Replies, Buffer2} = parse_replies(Data2, []),

    {ok, Replies, State#state {
        buffer = Buffer2
    }}.

-spec terminate(State :: term()) -> ok.

terminate(_State) -> ok.

Starting client pool

shackle_pool:start(shackle_pool:name(), client(), client_options(), pool_options())
client_options:
NameTypeDefaultDescription
addressinet:ip_address() | inet:hostname()"127.0.0.1"server address (formerly ip)
portinet:port_number()undefinedserver port
protocolshackle_tcp | shackle_udp | shackle_sslshackle_tcpserver protocol
reconnectboolean()truereconnect closed connections
reconnect_time_maxpos_integer() | infinity120000maximum reconnect time in milliseconds
reconnect_time_minpos_integer()1000minimum reconnect time in milliseconds
socket_options[gen_tcp:connect_option() | gen_udp:option()][]options passed to the socket
pool_options:
NameTypeDefaultDescription
backlog_sizepos_integer() | infinity1024maximum number of concurrent requests per connection
max_retriesnon_neg_integer()3maximum number of tries to find an active server
pool_sizepos_integer()16number of connections
pool_strategyrandom | round_robinrandomconnection selection strategy

Calling / Casting client

1> shackle:call(pool_name, {get, <<"test">>}).
{ok, <<"bar">>}

2> {ok, ReqId} = shackle:cast(pool_name, {get, <<"foo">>}, 500).
{ok, {anchor, anchor_client, #Ref<0.0.0.2407>}}

3> shackle:receive_response(ReqId).
{ok, <<"bar">>}

Telemetry

Shackle integrates with the backend-agnostic telemetry library. All events carry #{client => Client} as metadata, where Client is the client module name.

EventMeasurementsMeaning
[shackle, backlog_full]#{count => 1}Request rejected because the per-server backlog is full
[shackle, disabled]#{count => 1}Request rejected because the selected server is disabled
[shackle, found]#{count => 1}An active server was found for a request
[shackle, no_server]#{count => 1}No server is available for the pool
[shackle, not_found]#{count => 1}A reply arrived for a request that is no longer tracked
[shackle, handle_timeout]#{count => 1}The client's handle_timeout/2 callback fired
[shackle, timeout]#{count => 1}A request timed out before a reply arrived
[shackle, recv]#{count => 1, bytes => N}Bytes received from the socket
[shackle, send]#{count => 1, bytes => N}Bytes sent to the socket
[shackle, replies]#{count => 1}A batch of replies was decoded
[shackle, reply]#{duration => Microseconds}A reply was delivered to the caller, with measured latency

Tests

make dialyzer
make eunit
make xref

Performance testing

To run performance testing targets you must first start the server:

./bin/server.sh

Then you can run the bench or profile target:

make bench
make profile

Clients

NameDescription
anchorMemcached Client
aspike-nodeAerospike Client
buoyHTTP 1.1 Client
flareKafka Producer
marinaCassandra CQL Client
statsderlStatsD Client

License

The MIT License (MIT)

Copyright (c) 2015-2026 Louis-Philippe Gauthier

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.