start-transform.asciidoc 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. [role="xpack"]
  2. [testenv="basic"]
  3. [[start-data-frame-transform]]
  4. === Start {dataframe-transforms} API
  5. [subs="attributes"]
  6. ++++
  7. <titleabbrev>Start {dataframe-transforms}</titleabbrev>
  8. ++++
  9. beta[]
  10. Starts one or more {dataframe-transforms}.
  11. [discrete]
  12. [[start-data-frame-transform-request]]
  13. ==== {api-request-title}
  14. `POST _data_frame/transforms/<data_frame_transform_id>/_start`
  15. [discrete]
  16. [[start-data-frame-transform-prereqs]]
  17. ==== {api-prereq-title}
  18. If the {es} {security-features} are enabled, you must have
  19. `manage_data_frame_transforms` cluster privileges to use this API. You must also
  20. have `view_index_metadata` privileges on the source index for the
  21. {dataframe-transform}. For more information, see
  22. {stack-ov}/security-privileges.html[Security privileges] and
  23. {stack-ov}/built-in-roles.html[Built-in roles].
  24. [discrete]
  25. [[start-data-frame-transform-path-parms]]
  26. ==== {api-path-parms-title}
  27. `<data_frame_transform_id>` (Required)::
  28. (string) Identifier for the {dataframe-transform}. This identifier can contain
  29. lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It
  30. must start and end with alphanumeric characters.
  31. [discrete]
  32. [[start-data-frame-transform-example]]
  33. ==== {api-examples-title}
  34. [source,js]
  35. --------------------------------------------------
  36. POST _data_frame/transforms/ecommerce_transform/_start
  37. --------------------------------------------------
  38. // CONSOLE
  39. // TEST[skip:set up kibana samples]
  40. When the {dataframe-transform} starts, you receive the following results:
  41. [source,js]
  42. ----
  43. {
  44. "acknowledged" : true
  45. }
  46. ----
  47. // TESTRESPONSE