Page MenuHomePhabricator

Modernize file storage engine selection
ClosedPublic

Authored by epriestley on Mar 12 2015, 7:39 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 9, 9:51 AM
Unknown Object (File)
Sun, Apr 7, 8:31 PM
Unknown Object (File)
Fri, Apr 5, 8:26 PM
Unknown Object (File)
Sat, Mar 30, 3:08 PM
Unknown Object (File)
Mar 13 2024, 8:39 PM
Unknown Object (File)
Mar 13 2024, 8:39 PM
Unknown Object (File)
Feb 17 2024, 4:55 PM
Unknown Object (File)
Jan 29 2024, 11:24 PM
Subscribers

Details

Summary

Fixes T5843. File storage engines use a very old "selector" mechanism which makes them difficult to extend.

This mechanism predates widespread use of PhutilSymbolLoader to discover available implementations at runtime. Runtime discovery has generally proven more flexible and easier to use than explicit selection (although it sometimes needs more UI to support it in cases where order or enabled/disabled flags can not be directly determined).

Use a modern runtime discovery mechanism instead of an explicit selector. This might break any installs which subclassed the Selector, but I believe almost no such installs exist, and they'll receive a meaningful exception upon upgrading (any custom engines will no longer implement all of the required methods).

Looking forward, this modernizes infrastructure to prepare for new "virtual" chunked-storage engines, with the eventual goal of supporting very large file uploads and data import into the Phacility cluster.

This uses D12051 to add UI to make it easier to understand the state of storage engines.

Test Plan

Used new UI panel to assess storage engines:

Screen_Shot_2015-03-12_at_12.28.29_PM.png (195×1 px, 37 KB)

  • Uploaded a small file, saw it go to MySQL engine.
  • Uploaded a larger file, saw it go to S3 engine.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Modernize file storage engine selection.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: btrahan.
  • Better error message if no engines are avialable.

I'd like to move all the storage.blah config keys into this UI panel eventually, too, but don't plan to do that anytime soon.

btrahan edited edge metadata.
This revision is now accepted and ready to land.Mar 12 2015, 8:03 PM
This revision was automatically updated to reflect the committed changes.