Closed
Bug 866960
Opened 12 years ago
Closed 12 years ago
PostgresCrashStorage - implement save_raw_crash()
Categories
(Socorro :: Backend, task)
Tracking
(Not tracked)
RESOLVED
FIXED
45
People
(Reporter: selenamarie, Assigned: selenamarie)
References
Details
To support putting raw crashes into Postgres from the processors, implement this function!
Assignee | ||
Updated•12 years ago
|
Target Milestone: --- → 45
Assignee | ||
Comment 2•12 years ago
|
||
Also implementing blocking HBase save_raw_crash()
Comment 3•12 years ago
|
||
Commits pushed to master at https://github.com/mozilla/socorro
https://github.com/mozilla/socorro/commit/a59fee7029f927945cb5a9d18e27ccb925b04106
bug 866960 - implement save_raw_and_processed
* Add save_raw_and_processed() to processor_app.transform()
* Add overridden save_raw_and_processed() to HBase
* Update processor_app test for new call
* Add integration test fixes and raw_and_processed to our new crashstorage classes
* Extreme documentation pre-queuing solution
https://github.com/mozilla/socorro/commit/766c332c71f2819c4ccc86f5ec5138556683b6a4
Merge pull request #1210 from selenamarie/bug866960-save-raw-crash
bug 866960 - implement save_raw_and_processed
Assignee | ||
Updated•12 years ago
|
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 4•12 years ago
|
||
To test: look in the database for JSON crashes in raw_crashes on stage.
Assignee | ||
Updated•12 years ago
|
Target Milestone: 45 → 46
Assignee | ||
Comment 6•12 years ago
|
||
Verified!
breakpad=# select count(*) from raw_crashes;
count|8098
breakpad=# select * from raw_crashes limit 1;
uuid|05d9fa45-6269-4c01-9e66-4964e2130506
raw_crash|{"submitted_timestamp": "2013-05-06T22:36:02.782119+00:00", "Vendor": "Mozilla", "InstallTime": "1362909785", "EMCheckCompatibility": "true", "Add-ons": "feedback@mobile.mozilla.org:1.0.0", "BuildID": "20101221205132", "timestamp": 1367879762.7821529, "ProductName": "Fennec", "legacy_processing": 0, "Theme": "classic/1.0", "Version": "4.0b3", "CrashTime": "1367879739", "ReleaseChannel": "beta", "JavaStackTrace": null, "ProcessType": "content", "uuid": "05d9fa45-6269-4c01-9e66-4964e2130506"}
date_processed|2013-05-06 22:36:02.782119+00
breakpad=#
You need to log in
before you can comment on or make changes to this bug.
Description
•