You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@metron.apache.org by "Michael Miklavcic (JIRA)" <ji...@apache.org> on 2019/05/13 23:05:00 UTC

[jira] [Updated] (METRON-1989) Tooltip for ES mpack path_data is incorrect

     [ https://issues.apache.org/jira/browse/METRON-1989?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael Miklavcic updated METRON-1989:
--------------------------------------
    Fix Version/s: Next + 1

> Tooltip for ES mpack path_data is incorrect
> -------------------------------------------
>
>                 Key: METRON-1989
>                 URL: https://issues.apache.org/jira/browse/METRON-1989
>             Project: Metron
>          Issue Type: Bug
>            Reporter: Jon Zeolla
>            Assignee: Jon Zeolla
>            Priority: Major
>             Fix For: Next + 1
>
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Currently the tooltip for the ES mpack path_data is incorrect.  It says:
> 'Comma-separated list of directories where to store index data allocated for each node: "/mnt/first","/mnt/second".'
> This is incorrect, as the way the elasticsearch.yml gets updated results in invalid yaml.  Specifically:
> ```
> path:
>   data: "/mnt/first","/mnt/second"
> ```
> Two valid yaml options are either of the following (I'm excluding any multiline solutions here):
> ```
> path:
>   data:"/mnt/first","/mnt/second"
> ```
> or
> ```
> path:
>   data: [ "/mnt/first", "/mnt/second" ]
> ```
> We can either remove the space after `data:` or use the [ ] notation.  Since we use the [ ] notation elsewhere, I suggest we move in that direction with the tooltip.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)