Bläddra i källkod

[8.19][DOCS] Highlight the subscription requirement for synthetic `_source` (#133444)

* Add a note about the subscription requirement for synthetic

* Apply suggestions from code review

Co-authored-by: Liam Thompson <leemthompo@gmail.com>

---------

Co-authored-by: Liam Thompson <leemthompo@gmail.com>
Visha Angelova 1 månad sedan
förälder
incheckning
e1c65594a4
1 ändrade filer med 3 tillägg och 1 borttagningar
  1. 3 1
      docs/reference/mapping/fields/synthetic-source.asciidoc

+ 3 - 1
docs/reference/mapping/fields/synthetic-source.asciidoc

@@ -1,10 +1,12 @@
 [[synthetic-source]]
 ==== Synthetic `_source`
 
+NOTE: This feature requires a https://www.elastic.co/subscriptions[subscription].
+
 Though very handy to have around, the source field takes up a significant amount
 of space on disk. Instead of storing source documents on disk exactly as you
 send them, Elasticsearch can reconstruct source content on the fly upon retrieval.
-To enable this https://www.elastic.co/subscriptions[subscription] feature, use the value `synthetic` for the index setting `index.mapping.source.mode`:
+To enable this feature, use the value `synthetic` for the index setting `index.mapping.source.mode`:
 
 [source,console,id=enable-synthetic-source-example]
 ----