Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-12684

Show what config file a sysvar got a value from

Details

    Description

      Extend INFORMATION_SCHEMA.SYSTEM_VARIABLES to show what .cnf file the value was read from. Note that included files (with !include and !includedir) should be shown, not just the master /etc/my.cnf.

      Possible implementation, load_defaults() adds (may be on request only) special options in the argv list, like --file-name /my/cnf/path. And handle_options() uses that (comparing pointers, just like with --separator--).

      This could go into GLOBAL_VALUE_ORIGIN column or into a new column, say, GLOBAL_VALUE_ORIGIN_INFO
      which would have a file name for CONFIG, and, say, username for SQL.

      Original description:

      It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

      1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
      or
      2. Make separate command like SHOW DEFAULT VARIABLES
      or
      3. Adding columns to information_schema.global_variables to check details

      Attachments

        Activity

          niljoshi Nilnandan Joshi created issue -
          wfong Will Fong added a comment -

          It would be helpful to get the filepath on where each setting was modified. This is helpful when there are duplicated settings, e.g. /etc/my.cnf and /etc/my.cnf.d/server.cnf

          wfong Will Fong added a comment - It would be helpful to get the filepath on where each setting was modified. This is helpful when there are duplicated settings, e.g. /etc/my.cnf and /etc/my.cnf.d/server.cnf

          Did you check INFORMATION_SCHEMA.SYSTEM_VARIABLES table?
          https://mariadb.com/kb/en/mariadb/information-schema-system_variables-table/

          serg Sergei Golubchik added a comment - Did you check INFORMATION_SCHEMA.SYSTEM_VARIABLES table? https://mariadb.com/kb/en/mariadb/information-schema-system_variables-table/
          serg Sergei Golubchik made changes -
          Field Original Value New Value
          Fix Version/s 10.1.1 [ 16801 ]
          Resolution Fixed [ 1 ]
          Status Open [ 1 ] Closed [ 6 ]

          The I_S table should answer at least some of those questions. I do however agree that it would be extremely useful to be able to see which cnf files the server used upon startup (even better if it shows which value it took from where, but even just a list of config files would be a big help).

          elenst Elena Stepanova added a comment - The I_S table should answer at least some of those questions. I do however agree that it would be extremely useful to be able to see which cnf files the server used upon startup (even better if it shows which value it took from where, but even just a list of config files would be a big help).
          serg Sergei Golubchik added a comment - - edited

          Yes, this was part of the requests for the original I_S.SYSTEM_VARIABLES too. But it was quite difficult to implement.

          Anyway, let's keep this as a task for extending I_S table.

          serg Sergei Golubchik added a comment - - edited Yes, this was part of the requests for the original I_S.SYSTEM_VARIABLES too. But it was quite difficult to implement. Anyway, let's keep this as a task for extending I_S table.
          serg Sergei Golubchik made changes -
          Assignee Sergei Golubchik [ serg ]
          Resolution Fixed [ 1 ]
          Status Closed [ 6 ] Stalled [ 10000 ]
          serg Sergei Golubchik made changes -
          Issue Type Bug [ 1 ] Task [ 3 ]
          serg Sergei Golubchik made changes -
          Description It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details
          Extend {{INFORMATION_SCHEMA.SYSTEM_VARIABLES}} to show what {{.cnf}} file the value was read from.

          Possible implementation, {{load_defaults()}} adds (may be on request only) special options in the {{argv}} list, like {{\-\-file-name /my/cnf/path}}. And {{handle_options()}} uses that (comparing pointers, just like with {{\-\-separator--}}).

          Original description:
          {quote}
          It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details{quote}
          serg Sergei Golubchik made changes -
          Fix Version/s 10.3 [ 22126 ]
          Fix Version/s 10.1.1 [ 16801 ]
          serg Sergei Golubchik made changes -
          Description Extend {{INFORMATION_SCHEMA.SYSTEM_VARIABLES}} to show what {{.cnf}} file the value was read from.

          Possible implementation, {{load_defaults()}} adds (may be on request only) special options in the {{argv}} list, like {{\-\-file-name /my/cnf/path}}. And {{handle_options()}} uses that (comparing pointers, just like with {{\-\-separator--}}).

          Original description:
          {quote}
          It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details{quote}
          Extend {{INFORMATION_SCHEMA.SYSTEM_VARIABLES}} to show what {{.cnf}} file the value was read from. Note that included files (with {{!include}} and {{!includedir}}) should be shown, not just the master {{/etc/my.cnf}}.

          Possible implementation, {{load_defaults()}} adds (may be on request only) special options in the {{argv}} list, like {{\-\-file-name /my/cnf/path}}. And {{handle_options()}} uses that (comparing pointers, just like with {{\-\-separator--}}).

          Original description:
          {quote}
          It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details{quote}

          Maybe it would be simpler to implement a partial solution, like remembering which configs were read in which order, and storing it somewhere, be it in status, or in a variable, or in error log? Once a user has this list, it's fairly easy to find out manually which value is picked from which file. It won't be as shiny as reading it directly from I_S, but it will solve a lot of problems like "I've configured a variable but it isn't picked up".

          elenst Elena Stepanova added a comment - Maybe it would be simpler to implement a partial solution, like remembering which configs were read in which order, and storing it somewhere, be it in status, or in a variable, or in error log? Once a user has this list, it's fairly easy to find out manually which value is picked from which file. It won't be as shiny as reading it directly from I_S, but it will solve a lot of problems like "I've configured a variable but it isn't picked up".
          niljoshi Nilnandan Joshi added a comment - This seems added in mysql 8.0 http://lefred.be/content/where-does-my-mysql-configuration-variable-value-come-from/
          serg Sergei Golubchik made changes -
          Fix Version/s 10.3 [ 22126 ]

          I just had a look at the MySQL 8.0 implementation in P_S.VARIABLES_INFO,
          and it seems to have almost everything I ever wished for:

          • shows by what mechanism a variable has been set
          • in case of option files: which file it was actually read from (resolving !include and !includedir)
          • in case of SQL level SET: when it was last changed, and by whom

          The only thing missing from my wish list there would be an additional
          VARIABLES_INFO_HISTORY table, to allow for tracking past changes ...

          hholzgra Hartmut Holzgraefe added a comment - I just had a look at the MySQL 8.0 implementation in P_S.VARIABLES_INFO, and it seems to have almost everything I ever wished for: shows by what mechanism a variable has been set in case of option files: which file it was actually read from (resolving !include and !includedir) in case of SQL level SET: when it was last changed, and by whom The only thing missing from my wish list there would be an additional VARIABLES_INFO_HISTORY table, to allow for tracking past changes ...
          serg Sergei Golubchik made changes -
          Fix Version/s 10.5 [ 23123 ]
          serg Sergei Golubchik made changes -
          Description Extend {{INFORMATION_SCHEMA.SYSTEM_VARIABLES}} to show what {{.cnf}} file the value was read from. Note that included files (with {{!include}} and {{!includedir}}) should be shown, not just the master {{/etc/my.cnf}}.

          Possible implementation, {{load_defaults()}} adds (may be on request only) special options in the {{argv}} list, like {{\-\-file-name /my/cnf/path}}. And {{handle_options()}} uses that (comparing pointers, just like with {{\-\-separator--}}).

          Original description:
          {quote}
          It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details{quote}
          Extend {{INFORMATION_SCHEMA.SYSTEM_VARIABLES}} to show what {{.cnf}} file the value was read from. Note that included files (with {{!include}} and {{!includedir}}) should be shown, not just the master {{/etc/my.cnf}}.

          Possible implementation, {{load_defaults()}} adds (may be on request only) special options in the {{argv}} list, like {{\-\-file-name /my/cnf/path}}. And {{handle_options()}} uses that (comparing pointers, just like with {{\-\-separator--}}).

          This could go into {{GLOBAL_VALUE_ORIGIN}} column or into a new column, say, {{GLOBAL_VALUE_ORIGIN_INFO}}
          which would have a file name for {{CONFIG}}, and, say, username for {{SQL}}.

          Original description:
          {quote}
          It's really difficult to check that MySQL/MariaDB is using my.cnf or not. Also we can't check that what are the default values of variables through mysql client. It would be really helpful if we can do like

          1. Add 3rd column like "last updated by" (read cnf, set global, set session, default)
          or
          2. Make separate command like SHOW DEFAULT VARIABLES
          or
          3. Adding columns to information_schema.global_variables to check details{quote}
          ralf.gebhardt Ralf Gebhardt added a comment - - edited

          Hi serg in one comment you wrote that this request is complex but the estimate is 2 days. Is 2 days a good estimate? The task is currently for 10.5, but not on our roadmap. It could be a good one if in the backlog for 10.5 if the 2 days are correct.

          ralf.gebhardt Ralf Gebhardt added a comment - - edited Hi serg in one comment you wrote that this request is complex but the estimate is 2 days. Is 2 days a good estimate? The task is currently for 10.5, but not on our roadmap. It could be a good one if in the backlog for 10.5 if the 2 days are correct.

          I think 2 days is about right

          serg Sergei Golubchik added a comment - I think 2 days is about right
          serg Sergei Golubchik made changes -
          Priority Major [ 3 ] Critical [ 2 ]
          serg Sergei Golubchik made changes -
          Summary Feature request for getting details of default parameter values and if its using my.cnf Getting details of default parameter values and if its using my.cnf
          serg Sergei Golubchik made changes -
          Summary Getting details of default parameter values and if its using my.cnf Get details of default parameter values and if its using my.cnf
          serg Sergei Golubchik made changes -
          Summary Get details of default parameter values and if its using my.cnf Show what config file a sysvar got a value from
          serg Sergei Golubchik made changes -
          Assignee Sergei Golubchik [ serg ] Alexander Barkov [ bar ]
          Status Stalled [ 10000 ] In Review [ 10002 ]
          serg Sergei Golubchik added a comment - bar , please see https://github.com/MariaDB/server/compare/10.5...bb-10.5-serg

          Ok to push.

          A proposal for tests:

          Would be nice to run this query:

          select * from information_schema.system_variables
          where global_value_path is not null;
          

          both for super-user and for non-privileged user.

          bar Alexander Barkov added a comment - Ok to push. A proposal for tests: Would be nice to run this query: select * from information_schema.system_variables where global_value_path is not null ; both for super-user and for non-privileged user.
          bar Alexander Barkov made changes -
          Status In Review [ 10002 ] Stalled [ 10000 ]
          bar Alexander Barkov made changes -
          Assignee Alexander Barkov [ bar ] Sergei Golubchik [ serg ]
          serg Sergei Golubchik made changes -
          Fix Version/s 10.5.0 [ 23709 ]
          Fix Version/s 10.5 [ 23123 ]
          Resolution Fixed [ 1 ]
          Status Stalled [ 10000 ] Closed [ 6 ]
          serg Sergei Golubchik made changes -
          Workflow MariaDB v3 [ 80597 ] MariaDB v4 [ 133230 ]
          rob.schwyzer@mariadb.com Rob Schwyzer (Inactive) made changes -
          rob.schwyzer@mariadb.com Rob Schwyzer (Inactive) made changes -

          People

            serg Sergei Golubchik
            niljoshi Nilnandan Joshi
            Votes:
            1 Vote for this issue
            Watchers:
            9 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.