Skip to content

Instantly share code, notes, and snippets.

@jwaiswa7
Last active August 2, 2024 10:13
Show Gist options
  • Save jwaiswa7/b71974ef4aeb1bcc4089977980124610 to your computer and use it in GitHub Desktop.
Save jwaiswa7/b71974ef4aeb1bcc4089977980124610 to your computer and use it in GitHub Desktop.
Project list response
{
"projects": [
{
"id": 12,
"name": "aute775bbf1-7540-4bb2-a9cf-6d6826cef02d",
"city": "Toymouth",
"state": "South Carolina",
"zipcode": "29078-0143",
"is_active": false,
"latitude": null,
"longitude": null,
"street_address": null,
"project_users_count": null,
"banner_url": null,
"banner": null,
"is_owner": true,
"is_admin": true,
"type": {
"id": 28,
"name": "estc7d5fe88-e963-46f5-950e-1fffc8a27f42"
},
"phase": {
"id": 19,
"name": "quibusdam76d66cf3-72db-45ef-aa1d-b1b335bfbdfd",
"color": "#000000"
},
"owner": {
"id": 12,
"user_uuid": "eeaaa479-358e-4163-b862-89bc33c7dcac",
"email": "[email protected]",
"first_name": "Margeret",
"last_name": "Crona",
"phone_number": "2494017237",
"profile": {
"company": "Sole Proprietor",
"avatar_attachment": null
}
},
"users": [],
"conversation": {
"id": 8,
"name": "67aaf124-35c3-4b1b-81a3-b8a54118d2be",
"channel_type": "group_channel",
"channel_url": "439385e6-ed0f-4b15-aa98-fb33a3ebe8af",
"last_message": null,
"unread_message_count": null,
"participants": [],
"message_tags": []
},
"created_at_formatted": "2023/11/21 173216 CST",
"updated_at_formatted": "2023/11/21 173216 CST"
},
{
"id": 13,
"name": "iure5a29bcc7-e420-488a-897b-8b8dcb7f4465",
"city": "Kochport",
"state": "Arizona",
"zipcode": "91731",
"is_active": false,
"latitude": null,
"longitude": null,
"street_address": null,
"project_users_count": 1,
"banner_url": null,
"banner": null,
"is_owner": false,
"is_admin": false,
"type": null,
"phase": null,
"owner": {
"id": 13,
"user_uuid": "9717be63-4cd5-4358-89af-5479b04d0b95",
"email": "[email protected]",
"first_name": "Todd",
"last_name": "Ritchie",
"phone_number": "9415058110",
"profile": {
"company": "Sole Proprietor",
"avatar_attachment": null
}
},
"users": [
{
"id": 12,
"user_uuid": "eeaaa479-358e-4163-b862-89bc33c7dcac",
"email": "[email protected]",
"first_name": "Margeret",
"last_name": "Crona",
"phone_number": "2494017237",
"profile": {
"company": "Sole Proprietor",
"avatar_attachment": null
},
"role": "member"
}
],
"conversation": {
"id": 9,
"name": "8350b0ed-8225-4642-bfa8-4c4945d06298",
"channel_type": "project_channel",
"channel_url": "eefd1977-f856-4b96-b764-9680455333e6",
"last_message": null,
"unread_message_count": null,
"participants": [],
"message_tags": []
},
"created_at_formatted": "2023/11/21 173216 CST",
"updated_at_formatted": "2023/11/21 173216 CST"
}
],
"pagination": {
"prev_url": "/api/v1/projects?q[is_active_eq]=&q[search_cont]=&q[s]=&page=",
"next_url": "/api/v1/projects?q[is_active_eq]=&q[search_cont]=&q[s]=&page=",
"count": 2,
"page": 1,
"pages": 1,
"next": null,
"last": 1
}
}

Proposal to Optimize the Project List Query

Introduction

This proposal outlines the necessary changes to optimize the project list endpoint. By refining the query made to the database, we aim to reduce the amount of information returned, enabling the application server to respond faster and reducing the load on the backend.

Background

The current project list endpoint (/api/v1/projects) returns a comprehensive list of projects, including more information than needed to populate the mobile project list view. This excess data is causing the backend application to crash due to high resource consumption when executing the SQL query and rendering the results.

Objective

The objective is to minimize the number of attributes returned by the endpoint, thereby simplifying the SQL query. This reduction in complexity will prevent server crashes when the endpoint is accessed and improve overall performance.

Proposed Solution

  1. Reduce the attributes being returned: Limit the attributes returned by the endpoint to only those required by the mobile view.
  2. Re-write the database query: Modify the query to return only the necessary fields for the mobile view.

Implementation Plan

  1. Update the project model: Add a count of the project participants to the project model to simplify participant counting in the query.
  2. Update Views: Change the response to include only the fields required by the frontend.
  3. Testing: Write and run tests to ensure the changes are functioning correctly.
  4. Documentation: Update the documentation to reflect the changes.

Project model changes

Implement a counter cache attribute for the project users on the project model. Whenever a new user is associated with the project, this attribute will automatically get incremented, and whenever a user is deleted, it will get decremented automatically.

class Project < ApplicationRecord
  has_many :project_users, counter_cache: true, dependent: :destroy
end

Project List Response Changes

  1. Return essential project attributes such as name, banner, created_at, etc.
  2. Return a count of the number of project participants instead of a list of all participants.
  3. Remove all users from the response, thus, not returning user avatars
  4. Remove all information related to project conversations.
  5. Remove the project phase attribute.
  6. Remove the project type attribute.
  7. Exclude attachments from the response.

Query Request Changes

  1. Remove all requests for conversations.
  2. Maintain a counter of project participants in the projects table.
  3. Exclude the project users from the request.
  4. Exclude the project phase request.
  5. Exclude the project type request.
  6. Exclude attachments from the query.

Impact Analysis

Benefits:

  • Improves the response time of the endpoint.
  • Enhances resource utilization, preventing application crashes.

Potential Risks:

  • Requires careful testing to ensure the functionality is implemented as expected.

Conclusion

Optimizing the project list query will significantly improve the performance and stability of the backend application by reducing the data load and simplifying the SQL query.

Appendices

Response payloads

{
"projects": [
{
"id": 12,
"name": "aute775bbf1-7540-4bb2-a9cf-6d6826cef02d",
"city": "Toymouth",
"state": "South Carolina",
"zipcode": "29078-0143",
"is_active": false,
"latitude": null,
"longitude": null,
"street_address": null,
"project_users_count": 10,
"banner_url": "https://robohash.org/eaquenonvoluptatem.png?size=300x300",
"is_owner": true,
"is_admin": true,
"created_at_formatted": "2023/11/21 173216 CST",
"updated_at_formatted": "2023/11/21 173216 CST"
},
{
"id": 13,
"name": "iure5a29bcc7-e420-488a-897b-8b8dcb7f4465",
"city": "Kochport",
"state": "Arizona",
"zipcode": "91731",
"is_active": false,
"latitude": null,
"longitude": null,
"street_address": null,
"project_users_count": 12,
"banner_url": "https://robohash.org/eaquenonvoluptatem.png?size=300x300",
"is_owner": false,
"is_admin": false,
"type": null,
"phase": null,
"created_at_formatted": "2023/11/21 173216 CST",
"updated_at_formatted": "2023/11/21 173216 CST"
}
],
"pagination": {
"prev_url": "/api/v1/projects?q[is_active_eq]=&q[search_cont]=&q[s]=&page=",
"next_url": "/api/v1/projects?q[is_active_eq]=&q[search_cont]=&q[s]=&page=",
"count": 2,
"page": 1,
"pages": 1,
"next": null,
"last": 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment