Typesense FacetSearch

Typesense FacetSearch

Certified

Search with facets in Typesense

Performs a search and computes facet counts on the specified fields.

yaml
type: io.kestra.plugin.typesense.FacetSearch

Search documents with facet

yaml
id: typesense_facet_search
namespace: company.team

tasks:
  - id: facet_search
    type: io.kestra.plugin.typesense.FacetSearch
    apiKey: "{{ secret('TYPESENSE_API_KEY') }}"
    port: 8108
    host: localhost
    collection: Countries
    query: Paris
    queryBy: capital
    filter: "countryName: [France, England]"
    sortBy: "gdp:desc"
    facetBy: gdp
Properties

Typesense API key

Admin or search key used for this request; must allow access to the target collection

Collection name

Name of the Typesense collection; value is rendered before each call

Facet fields

Comma-separated list passed to facet_by to compute facet counts.

Typesense host

Hostname or IP address of the Typesense cluster node or load balancer

Typesense port

TCP port for the Typesense HTTP API; 8108 is the Typesense default

Search query

Free-text query string sent as q to Typesense. Required.

Query fields

Comma-separated collection fields used for query_by. Order matters for tie-breaking.

Filter expression

Optional filter_by clause to pre-filter results.

Use HTTPS

Default false (HTTP). Set to true to call Typesense over HTTPS/TLS

Reference (ref) of the pluginDefaults to apply to this task.

Sort expression

Optional sort_by clause. Example: gdp: desc.

Hit count

Number of documents returned by Typesense for this search.

Formaturi

Results URI

Storage URI of the Amazon ION results file.