|
40 | 40 |
|
41 | 41 | @WritesAttributes({ |
42 | 42 | @WritesAttribute(attribute = "mime.type", description = "application/json"), |
43 | | - @WritesAttribute(attribute = "aggregation.name", description = "The name of the aggregation whose results are in the output flowfile"), |
44 | | - @WritesAttribute(attribute = "aggregation.number", description = "The number of the aggregation whose results are in the output flowfile"), |
45 | | - @WritesAttribute(attribute = "hit.count", description = "The number of hits that are in the output flowfile"), |
| 43 | + @WritesAttribute(attribute = "aggregation.name", description = "The name of the aggregation whose results are in the output FlowFile"), |
| 44 | + @WritesAttribute(attribute = "aggregation.number", description = "The number of the aggregation whose results are in the output FlowFile"), |
| 45 | + @WritesAttribute(attribute = "hit.count", description = "The number of hits that are in the output FlowFile"), |
46 | 46 | @WritesAttribute(attribute = "elasticsearch.query.error", description = "The error message provided by Elasticsearch if there is an error querying the index.") |
47 | 47 | }) |
48 | 48 | @InputRequirement(InputRequirement.Requirement.INPUT_ALLOWED) |
49 | 49 | @SupportsBatching |
50 | 50 | @Tags({"elasticsearch", "elasticsearch7", "elasticsearch8", "elasticsearch9", "query", "read", "get", "json"}) |
51 | 51 | @CapabilityDescription("A processor that allows the user to run a query (with aggregations) written with the " + |
52 | 52 | "Elasticsearch JSON DSL. It does not automatically paginate queries for the user. If an incoming relationship is added to this " + |
53 | | - "processor, it will use the flowfile's content for the query. Care should be taken on the size of the query because the entire response " + |
| 53 | + "processor, it will use the FlowFile's content for the query. Care should be taken on the size of the query because the entire response " + |
54 | 54 | "from Elasticsearch will be loaded into memory all at once and converted into the resulting FlowFiles.") |
55 | 55 | @SeeAlso(PaginatedJsonQueryElasticsearch.class) |
56 | 56 | @DynamicProperties({ |
|
0 commit comments