Closed Bug 1363550 Opened 7 years ago Closed 7 years ago

squash filesystem crashstorage classes

Categories

(Socorro :: General, task)

task
Not set
normal

Tracking

(Not tracked)

RESOLVED WONTFIX

People

(Reporter: willkg, Assigned: willkg)

Details

Attachments

(1 file)

In Socorro, there are 7 filesystem crash storage classes, two of which are just renamed versions of other classes.

They're predominantly used by the collector and crashmover and FetchTransformSave apps of which the processor is one.

Between the Mozilla Socorro configuration and the codebase, the following classes are used:

* FSTemporaryStorage: collector and crashmover
* FSPermanentStorage (alias of FSLegacyRadixTreeStorage): FetchTransformSave apps
* FSLegacyRadixTreeStorage: middleware
* FSDatedPermanentStorage (alias of FSLegacyDatedRadixTreeStorage): Processor

We no longer use the collector and crashmover, so those uses will get removed in bug #1361832.

We no longer use the middleware, so that use will get removed in bug #1353371.

When I extracted the collector/crashmover code for the socorro-collector project, I squashed this family of classes down to two: FSRadixTreeStorage and FSTemporaryStorage.

I want to pull in the socorro-collector squashings and then change the Socorro users of filesystem crashstorage to use FSRadixTreeStorage and FSTemporaryStorage.

Why? There's about 2,000 lines of filesystem crashstorage code and tests. There are some 60 tests. I claim that the bulk of the work for this bug is already done, so this should be like a half day of work and save us a bunch of time as we dockerize, deprecate, rewrite, etc.

This bug covers doing that.
Grabbing this to work on this week. It'll make dockerizing easier.
Assignee: nobody → willkg
Status: NEW → ASSIGNED
My notes.

All the instances of "external.fs.crashstorage" in the Socorro codebase except what's in unittest, config, and docs:

./socorro/app/fetch_transform_save_app.py:
  104 :             'socorro.external.fs.crashstorage.FSPermanentStorage',
  106 :             'socorro.external.fs.crashstorage.FSPermanentStorage',
./socorro/collector/collector_app.py:
  100 :         default='socorro.external.fs.crashstorage.FSLegacyDatedRadixTreeStorage',
./socorro/collector/crashmover_app.py:
   53 :                 'socorro.external.fs.crashstorage.TarFileCrashStore',
./socorro/collector/wsgi_generic_collector.py:
  147 :         default='socorro.external.fs.crashstorage.FSLegacyDatedRadixTreeStorage'
./socorro/external/fs/fs_new_crash_source.py:
   19 :         default='socorro.external.fs.crashstorage.FSLegacyDatedRadixTreeStorage'
./socorro/middleware/middleware_app.py:
  140 :         default='socorro.external.fs.crashstorage.FSLegacyRadixTreeStorage',
./socorro/processor/processor_app.py:
   22 : from socorro.external.fs.crashstorage import FSDatedPermanentStorage


All the instances of "external.fs.crashstorage" in the Socorro configuration:

Prod:
    7 : socorro/collector/storage.crashstorage_class	socorro.external.fs.crashstorage.FSTemporaryStorage
   65 : socorro/crashmover/source.crashstorage_class	socorro.external.fs.crashstorage.FSTemporaryStorage

Stage:
    8 : socorro/collector/storage.crashstorage_class	socorro.external.fs.crashstorage.FSTemporaryStorage
   53 : socorro/crashmover/source.crashstorage_class	socorro.external.fs.crashstorage.FSTemporaryStorage
Attached file pr 3767
I nixed that PR for now. It'd need review time and it's probably not worth that investment right now. If we decide to do it later, we can resurrect the PR.

Given that, I think I'm going to close this out as WONTFIX.
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
Resolution: --- → WONTFIX
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: