@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use --single-transaction in `bin/storage dump`

Summary: See <https://github.com/phacility/phabricator/issues/665>. From reading documentation, this seems dramatically better for InnoDB tables than the default behavior.

Test Plan: Ran `bin/storage dump`, got a reasonable-looking dump.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Differential Revision: https://secure.phabricator.com/D10606

+1 -3
+1 -3
src/infrastructure/storage/management/workflow/PhabricatorStorageManagementDumpWorkflow.php
··· 43 43 : ''; 44 44 45 45 return phutil_passthru( 46 - 47 - 'mysqldump --default-character-set=utf8 '. 46 + 'mysqldump --single-transaction --default-character-set=utf8 '. 48 47 '-u %s %C -h %s %C --databases %Ls', 49 - 50 48 $api->getUser(), 51 49 $flag_password, 52 50 $host,