Method: Elasticsearch::API::Actions#create

Defined in:
lib/elasticsearch/api/actions/create.rb

#create(arguments = {}) ⇒ Object

Creates a new document in the index.

Returns a 409 response when a document with a same ID already exists in the index.

Parameters:

  • arguments (Hash) (defaults to: {})

    a customizable set of options

Options Hash (arguments):

  • :id (String)

    Document ID

  • :index (String)

    The name of the index

  • :wait_for_active_shards (String)

    Sets the number of shard copies that must be active before proceeding with the index operation. Defaults to 1, meaning the primary shard only. Set to ‘all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)

  • :refresh (String)

    If ‘true` then refresh the affected shards to make this operation visible to search, if `wait_for` then wait for a refresh to make this operation visible to search, if `false` (the default) then do nothing with refreshes. (options: true, false, wait_for)

  • :routing (String)

    Specific routing value

  • :timeout (Time)

    Explicit operation timeout

  • :version (Number)

    Explicit version number for concurrency control

  • :version_type (String)

    Specific version type (options: internal, external, external_gte)

  • :pipeline (String)

    The pipeline id to preprocess incoming documents with

  • :headers (Hash)

    Custom HTTP headers

  • :body (Hash)

    The document (Required)

See Also:



42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/elasticsearch/api/actions/create.rb', line 42

def create(arguments = {})
  request_opts = { endpoint: arguments[:endpoint] || 'create' }

  defined_params = %i[index id].each_with_object({}) do |variable, set_variables|
    set_variables[variable] = arguments[variable] if arguments.key?(variable)
  end
  request_opts[:defined_params] = defined_params unless defined_params.empty?

  if arguments[:id]
    index arguments.update op_type: 'create'
  else
    index arguments
  end
end