The Scale Up involves taking a brownfield project, fixing it, and scaling it for production. The brownfield project is named Keevahh, and is loosely based on the famous Kiva microlending platform.
The application is seeded with over a half million records.
Some performance improvements include:
- Fixing n+1 queries
- Fixing unused eager loading
- Adding pagination
- Fragment caching
- Data caching
The production site for the scaled up version of Keevahh can be found on Heroku at:
https://keevahh-scaled-up.herokuapp.com/
NOTE: The database on Heroku had to be reset due to the number of records exceeding Heroku's Hobby Dev allowances.
Specifications for the Scale Up can be found at:
https://github.com/turingschool/curriculum/blob/master/source/projects/the_scale_up.markdown
The following profiling tools were used:
You can load test the application with:
rake load_script:run
This project includes a rake task to load a pre-seeded DB dump with all the data you will need. It is currently stored on Turing's dropbox. To download and import it, use this rake task:
$ rake db:pg_restore
Once you've populated your local DB, you can also push those records to a heroku instance.
- Create heroku instance (heroku create)
- Use
heroku pg:push
to export your local data into the instance. For example:
$ heroku pg:push the_pivot_development DATABASE_URL
Image URLs were seeded in Rails Console using:
LoanRequest.find_each { |lr| lr.update_columns(image_url: DefaultImages.random)
}
Here is the information for the original Keevahh project developed by Markus Olsen, Trey Tomlinson, and Valentino Espinoza.
Keevahh is a micro-lending platform that allows both lenders and borrowers to interact. Borrowers are able to create a project or loan request and lenders are able to contribute to various projects.
The Original Keevahh on Heroku
The MIT License (MIT)
Copyright (c) [2015]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.