Abdon Pijpelink
f93a94009f
[DOCS] Documentation update for creating plugins ( #93413 )
...
* [DOCS] Documentation for the stable plugin API
* Removed references to rivers
* Add link to Cloud docs for managing plugins
* Add caveat about needing to update plugins
* Remove reference to site plugins
* Wording and clarifications
* Fix test
* Add link to text analysis docs
* Text analysis API dependencies
* Remove reference to REST endpoints and fix list
* Move plugin descriptor file to its own page
* Typos
* Review feedback
* Delete unused properties file
* Changed into
* Changed 'elasticsearchVersion' into 'pluginApiVersion'
* Swap 'The analysis plugin API' and 'Plugin file structure' sections
* Update docs/plugins/authors.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-non-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-non-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-non-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/example-text-analysis-plugin.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/plugin-descriptor-file.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/plugin-script.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-non-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Update docs/plugins/development/creating-non-text-analysis-plugins.asciidoc
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
* Rewording
* Add modulename and extended.plugins descriptions for descriptor file
* Add link to existing plugins in Github
* Review feedback
* Use 'stable' and 'classic' plugin naming
* Fix capitalization
* Review feedback
---------
Co-authored-by: Arianna Laudazzi <46651782+alaudazzi@users.noreply.github.com>
Co-authored-by: William Brafford <william.brafford@elastic.co>
2023-02-13 14:15:12 +01:00
James Rodewig
56c778235c
[DOCS] Fix metadata field refs ( #60764 )
2020-08-05 13:21:00 -04:00
James Rodewig
2774cd6938
[DOCS] Swap `[float]` for `[discrete]` ( #60124 )
...
Changes instances of `[float]` in our docs for `[discrete]`.
Asciidoctor prefers the `[discrete]` tag for floating headings:
https://asciidoctor.org/docs/asciidoc-asciidoctor-diffs/#blocks
2020-07-23 11:48:22 -04:00
James Rodewig
2be9db01c8
[DOCS] Replace `datatype` with `data type` ( #58972 )
2020-07-07 13:52:10 -04:00
markharwood
2fa09f062e
New plugin - Annotated_text field type ( #30364 )
...
New plugin for annotated_text field type.
Largely a copy of `text` field type but adds ability to include markdown-like syntax in the text.
The “AnnotatedText” class parses text+markup and converts into plain text and AnnotationTokens.
The annotation token values are injected unchanged alongside the regular text tokens to provide a
form of additional indexed overlay useful in positional searches and highlighting.
Annotated_text fields do not support fielddata as we want to phase this out.
Also includes a new "annotated" highlighter type that retains annotations and merges in search
hits as additional annotation markup.
Closes #29467
2018-09-18 10:25:27 +01:00
David Pilato
dfd1eebdd0
Remove mapper attachments plugin
...
We now have in 5.0.0 `ingest-attachment` plugin.
We can remove `mapper-attachments` plugin for 6.0.
Closes #18837 .
2016-09-19 09:01:16 +02:00
Clinton Gormley
5bb744bfde
Changed v3.0.0 to v5.0.0 in plugin docs
2016-03-02 11:57:42 +01:00
David Pilato
55d9b6878b
Deprecate Mapper Attachment Plugin
...
Now that we have the ingest-attachment plugin (https://github.com/elastic/elasticsearch/pull/16490 ) we should deprecate the mapper-attachment plugin.
Closes #16650 .
2016-02-15 16:40:12 +01:00
David Pilato
e993c6a862
Migrate mapper attachements plugin to asciidoc
...
Followup for #14605
2015-11-09 15:35:06 +01:00
David Pilato
44e6d1aac6
[doc] Move mapper attachment plugin to mapper page
2015-08-18 13:02:18 +02:00
Adrien Grand
a91b3fcbb9
Move the `murmur3` field to a plugin and fix defaults.
...
This move the `murmur3` field to the `mapper-murmur3` plugin and fixes its
defaults so that values will not be indexed by default, as the only purpose
of this field is to speed up `cardinality` aggregations on high-cardinality
string fields, which only requires doc values.
I also removed the `rehash` option from the `cardinality` aggregation as it
doesn't bring much value (rehashing is cheap) and allowed to remove the
coupling between the `cardinality` aggregation and the `murmur3` field.
Close #12874
2015-08-18 11:41:52 +02:00
Clinton Gormley
e143c6e460
Docs: Prepare plugin and integration docs for 2.0
...
* Centralised plugin docs in docs/plugins/
* Moved integrations into same docs
* Moved community clients into the clients section of the docs
* Removed docs/community
Closes #11734
Closes #11724
Closes #11636
Closes #11635
Closes #11632
Closes #11630
Closes #12046
Closes #12438
Closes #12579
2015-08-15 18:02:43 +02:00