Grigoriy Ovechkin
My feedback
11 results found
-
1 vote
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.—
IGGrigoriy Ovechkin shared this idea · -
57 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin supported this idea · -
22 votes
Thank you for your input! We will consider this functionality for the upcoming releases if it becomes popular enough.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea · -
24 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea · -
87 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
— AY
Grigoriy Ovechkin shared this idea · -
10 votes
An error occurred while saving the comment An error occurred while saving the comment Grigoriy Ovechkin commentedAdd possibility to Backup mysql databases with "--skip-lock-tables" option.
Grigoriy Ovechkin supported this idea · -
196 votes
Thank you for your input! We are planning to implement this functionality in upcoming releases. The request is registered as: PPM-2517
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea · -
20 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGAn error occurred while saving the comment Grigoriy Ovechkin commentedPlease change DNS to DSN.
Grigoriy Ovechkin shared this idea · -
183 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea · -
89 votesGrigoriy Ovechkin supported this idea ·
-
40 votesGrigoriy Ovechkin supported this idea ·
There is a workaround:
# cat /usr/local/psa/PMM/agents/shared/Db/MysqlShellBackend.pm
...
$cmd .= " --socket='$self->{socket}'" if $self->{socket};
$cmd .= " -h '$self->{host}'" if $self->{host};
$cmd .= " -u '$self->{user}'";
$cmd .= " -P '$self->{port}'" if $self->{port};
if (index($cmd, AgentConfig::mysqldumpBin()) != -1) {
$cmd .= " --skip-lock-tables";
}
$cmd .= " $additionalOptions" if $additionalOptions;
...