This is a cache of https://www.elastic.co/docs/reference/scripting-languages/painless/painless. It is a snapshot of the page as it appeared on 2025-11-24T06:26:39.691+0000.
Painless | Reference
Loading

Painless

Painless is a simple, secure scripting language designed specifically for use with Elasticsearch. It is the default scripting language for Elasticsearch and can safely be used for inline and stored scripts. For a jump start into Painless, see A Brief Painless Walkthrough. For a detailed description of the Painless syntax and language features, see the Painless Language Specification.

You can use Painless anywhere scripts are used in Elasticsearch. Painless provides:

  • Fast performance: Painless scripts run several times faster than the alternatives.
  • Safety: Fine-grained allowlist with method call/field granularity.
  • Optional typing: Variables and parameters can use explicit types or the dynamic def type.
  • Syntax: Extends a subset of Java’s syntax to provide additional scripting language features.
  • Optimizations: Designed specifically for Elasticsearch scripting.