Liking cljdoc? Tell your friends :D

Franklin

A friendly turtle-y companion to harness the power of DynamoDB.

Clojars Project cljdoc badge

Usage

Leiningen and Boot

[ctorrisi/franklin "0.0.1-alpha8"]

deps

ctorrisi/franklin {:mvn/version "0.0.1-alpha8"}

Friendly?

  • minimal dependencies (only depends on aws-api)
  • idiomatic clojure
  • table-centric query and persistence operations
  • sensible defaults
  • simple and easy

Non-goals

  • Supporting legacy operations
  • Coverage of all operations

Use aws-api for legacy operations and operations not related to queries or persistence.

Operations

All operations are centred around being executed on a single table (table-centric).

(ns franklin.example (:require [franklin.core :as f]))

In order to demonstrate these operations, assume the following table named user_location exists with a String typed partition key named username and a Number typed sort key named tstamp.

make-table-context

The minimum to create a table context for a table named user_location.

(def user-location-ctx (f/make-table-context "user_location"))

The definition above is fine if your program is using a single table with default AWS connection/credential options.

make-client

make-client is a convenience function that wraps cognitect.aws.client.api/client with {:api :dynamodb}.

(def ddb-client (f/make-client {:region "ap-southeast-2"}))
(def ctx (f/make-table-context "user_location" {:client ddb-client}))
(def other-ctx (f/make-table-context "user_details" {:client ddb-client}))

put-item

(f/put-item ctx {:item {:username "corey"
                        :tstamp 100
                        :latitude -37.813629
                        :longitude 144.963058}})

update-item

(f/update-item ctx {:key {:username "corey"
                          :tstamp 100}
                    :update-expr "set latitude = :lat"
                    :expr-attr-vals {:lat -37.809010}})

get-item

(f/get-item ctx {:key {:username "corey"
                       :tstamp 100}})

=> {:Item {:username "corey"
           :tstamp 100
           :latitude -37.80901
           :longitude 144.963058}}

query

(f/query ctx {:partition-key "corey"
              :sort-key      100})

=> {:Items [{:tstamp 100 :username "corey" :latitude -37.813629 :longitude 144.963058}]
    :Count 1
    :ScannedCount 1}

(f/query ctx {:partition-key "corey"
              :sort-key      {:between [99 101]}
              :projections   [:latitude "longitude"]})

=> {:Items [{:latitude -37.813629 :longitude 144.963058}]
    :Count 1
    :ScannedCount 1}

sort-key options

Supports all of the comparison operators available in DynamoDB's Query Key Condition Expression.

{:sort-key {:= x}}
{:sort-key x} ; equals is implicit, same as above.
{:sort-key {:< x}}
{:sort-key {:<= x}}
{:sort-key {:> x}}
{:sort-key {:>= x}}
{:sort-key {:between [x y]}}
{:sort-key {:begins-with x}}
; also supports a string variant for the comparison operator, i.e.
{:sort-key {"=" x}}
{:sort-key {"between" [x y]}}

scan

(f/scan ctx)

=> {:Items [{:username "corey" :latitude -37.80901 :longitude 144.963058 :tstamp 100}]
    :Count 1
    :ScannedCount 1}

batch-write-item

To delete an item, assoc the :delete? key with a truthy value in the item's map.

(f/batch-write-item ctx {:items [{:username "alice"
                                  :tstamp 100}
                                 {:username "bob"
                                  :tstamp 100}
                                 {:username "corey"
                                  :tstamp 200}
                                 {:username "corey"
                                  :tstamp 300}
                                 {:username "corey"
                                  :tstamp 100 
                                  :delete? true}]}
                         :throttled-wait-ms 1000) ; optional, default is 1000 ms

(f/scan ctx)

=> {:Items [{:tstamp 100 :username "alice"}
            {:tstamp 100 :username "bob"}
            {:tstamp 200 :username "corey"}
            {:tstamp 300 :username "corey"}]
    :Count 3
    :ScannedCount 3}

batch-get-item

(f/batch-get-item ctx {:keys [{:username  "alice"
                               :tstamp 100}
                              {:username  "bob"
                               :tstamp 100}]})

=> {:Responses {:user_location [{:tstamp 100 :username "alice"}
                                {:tstamp 100 :username "bob"}]}
    :UnprocessedKeys {}}

query-first-item

(f/query-first-item ctx {:partition-key "corey"})

=> {:tstamp 200 :username "corey"}

query-last-item

(f/query-last-item ctx {:partition-key "corey"})

=> {:tstamp 300 :username "corey"}

Credits

Thanks to:

Licence

Distributed under the Eclipse Public License - v 2.0

Copyright © 2019 Corey Torrisi

Can you improve this documentation?Edit on GitHub

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close