(bulk-create-doc conn docs opts)
(bulk-create-doc {:keys [version] :as conn} docs opts max-size)
Inputs: ([conn :- ESConn docs :- [s/Any] opts :- CRUDOptions] [{:keys [version], :as conn} :- ESConn docs :- [s/Any] opts :- CRUDOptions max-size :- (s/maybe s/Int)])
create multiple documents on ES and return the created documents
Inputs: ([conn :- ESConn docs :- [s/Any] opts :- CRUDOptions] [{:keys [version], :as conn} :- ESConn docs :- [s/Any] opts :- CRUDOptions max-size :- (s/maybe s/Int)]) create multiple documents on ES and return the created documents
(bulk-index documents)
generates the content for a bulk insert operation
generates the content for a bulk insert operation
(bulk-uri uri)
make an uri for bulk action
make an uri for bulk action
(byte-size s)
Count the size of the given string in bytes.
Count the size of the given string in bytes.
(count-docs es-conn index-name)
(count-docs {:keys [uri cm]} index-name query)
Inputs: ([{:keys [uri cm]} :- ESConn index-name :- s/Str query :- (s/maybe ESQuery)] [es-conn :- ESConn index-name :- s/Str])
Count documents on ES matching given query.
Inputs: ([{:keys [uri cm]} :- ESConn index-name :- s/Str query :- (s/maybe ESQuery)] [es-conn :- ESConn index-name :- s/Str]) Count documents on ES matching given query.
(count-uri uri index-name)
make an uri for search action
make an uri for search action
(create-doc es-conn index-name doc opts)
(create-doc es-conn index-name doc-type doc opts)
Inputs: ([es-conn :- ESConn index-name :- s/Str doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) doc :- s/Any opts :- CRUDOptions])
create a document on es return the created document
Inputs: ([es-conn :- ESConn index-name :- s/Str doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) doc :- s/Any opts :- CRUDOptions]) create a document on es return the created document
(delete-by-query {:keys [uri cm]} index-names q opts)
Inputs: [{:keys [uri cm]} :- ESConn index-names :- [s/Str] q :- ESQuery opts :- CRUDOptions]
delete all documents that match a query in an index
Inputs: [{:keys [uri cm]} :- ESConn index-names :- [s/Str] q :- ESQuery opts :- CRUDOptions] delete all documents that match a query in an index
(delete-by-query-uri uri index-names)
Inputs: [uri index-names]
Inputs: [uri index-names]
(delete-doc conn index-name id opts)
(delete-doc {:keys [uri cm version]} index-name doc-type id opts)
Inputs: ([conn :- ESConn index-name :- s/Str id :- s/Str opts :- CRUDOptions] [{:keys [uri cm version]} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str opts :- CRUDOptions])
delete a document on es, returns boolean
Inputs: ([conn :- ESConn index-name :- s/Str id :- s/Str opts :- CRUDOptions] [{:keys [uri cm version]} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str opts :- CRUDOptions]) delete a document on es, returns boolean
(get-doc conn index-name id opts)
(get-doc {:keys [uri cm version] :as conn} index-name doc-type id opts)
Inputs: ([{:keys [uri cm version], :as conn} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str opts :- CRUDOptions] [conn :- ESConn index-name :- s/Str id :- s/Str opts :- CRUDOptions])
get a document on es and return only the source
Inputs: ([{:keys [uri cm version], :as conn} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str opts :- CRUDOptions] [conn :- ESConn index-name :- s/Str id :- s/Str opts :- CRUDOptions]) get a document on es and return only the source
(index-doc es-conn index-name doc opts)
(index-doc es-conn index-name doc-type doc opts)
Inputs: ([es-conn :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str doc :- s/Any opts :- CRUDOptions])
index a document on es return the indexed document
Inputs: ([es-conn :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str doc :- s/Any opts :- CRUDOptions]) index a document on es return the indexed document
(index-doc-uri uri index-name doc-type id)
make an uri for document index
make an uri for document index
(index-operation doc)
helper to prepare a bulk insert operation
helper to prepare a bulk insert operation
(params->pagination {:keys [sort_by sort_order offset limit search_after]
:or {sort_order :asc limit pagination/default-limit}})
(partition-json-ops json-ops max-size)
Return a lazy sequence of lists of ops whose size is less than max-size. If a json-op exceeds the max size, it is included in a list of one element.
Return a lazy sequence of lists of ops whose size is less than max-size. If a json-op exceeds the max size, it is included in a list of one element.
(query es-conn index-name q params)
(query {:keys [uri cm]} index-name q aggs {:keys [full-hits?] :as params})
Inputs: ([{:keys [uri cm]} :- ESConn index-name :- (s/maybe s/Str) q :- (s/maybe ESQuery) aggs :- (s/maybe ESAggs) {:keys [full-hits?], :as params} :- s/Any] [es-conn index-name q params])
Search for documents on ES using any query. Performs aggregations when specified.
Inputs: ([{:keys [uri cm]} :- ESConn index-name :- (s/maybe s/Str) q :- (s/maybe ESQuery) aggs :- (s/maybe ESAggs) {:keys [full-hits?], :as params} :- s/Any] [es-conn index-name q params]) Search for documents on ES using any query. Performs aggregations when specified.
(search-docs es-conn index-name es-query all-of params)
Inputs: [es-conn :- ESConn index-name :- (s/maybe s/Str) es-query :- (s/maybe ESQuery) all-of :- (s/maybe #:s{Any s/Any}) params :- s/Any]
Search for documents on ES using a query string search. Also applies a filter map, converting the values in the all-of into must match terms.
Inputs: [es-conn :- ESConn index-name :- (s/maybe s/Str) es-query :- (s/maybe ESQuery) all-of :- (s/maybe #:s{Any s/Any}) params :- s/Any] Search for documents on ES using a query string search. Also applies a filter map, converting the values in the all-of into must match terms.
(search-uri uri index-name)
make an uri for search action
make an uri for search action
(update-doc es-conn index-name id doc opts)
(update-doc {:keys [uri cm version]} index-name doc-type id doc opts)
Inputs: ([{:keys [uri cm version]} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str id :- s/Str doc :- s/Any opts :- CRUDOptions])
update a document on es return the updated document
Inputs: ([{:keys [uri cm version]} :- ESConn index-name :- s/Str doc-type :- (s/maybe s/Str) id :- s/Str doc :- s/Any opts :- CRUDOptions] [es-conn :- ESConn index-name :- s/Str id :- s/Str doc :- s/Any opts :- CRUDOptions]) update a document on es return the updated document
(update-doc-uri uri index-name id)
(update-doc-uri uri index-name doc-type id)
make an uri for document update
make an uri for document update
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close