Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cache templates data #33439

Merged
merged 27 commits into from
Jun 5, 2024
Merged

chore: cache templates data #33439

merged 27 commits into from
Jun 5, 2024

Conversation

AnaghHegde
Copy link
Member

@AnaghHegde AnaghHegde commented May 14, 2024

Description

Cache the templates data to improve the turn around time

Fixes #33440

Automation

/ok-to-test tags="@tag.Templates"

🔍 Cypress test results

Tip

🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/9368135903
Commit: 5cbcbd3
Cypress dashboard url: Click here!

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

  • New Features

    • Introduced caching functionality for application templates and data to improve performance.
  • Bug Fixes

    • Updated error handling for cloud services errors, changing the HTTP status code from 500 to 400.
  • Tests

    • Added test cases to ensure data retrieval accuracy and validate cache utilization for application templates.

@AnaghHegde AnaghHegde self-assigned this May 14, 2024
@github-actions github-actions bot added the skip-changelog Adding this label to a PR prevents it from being listed in the changelog label May 14, 2024
Copy link
Contributor

coderabbitai bot commented May 14, 2024

Walkthrough

The recent updates introduce caching mechanisms for application templates and data within the Appsmith server. Key additions include new data transfer objects (DTOs) for caching, a helper class for cache management, and modifications to the application template service to utilize the new caching functionalities. Additionally, test cases were added to ensure the accuracy and reliability of the caching system.

Changes

File Path Change Summary
.../CacheableApplicationJson.java Introduced CacheableApplicationJson DTO for application JSON data and last update timestamp.
.../CacheableApplicationTemplate.java Introduced CacheableApplicationTemplate DTO with a list of ApplicationTemplate objects, timestamp, and cache expiry time.
.../CacheableTemplateHelper.java Added CacheableTemplateHelper class for caching templates and application data, including methods for retrieval and cache validation.
.../ApplicationTemplateServiceCEImpl.java Refactored to use CacheableTemplateHelper for caching and error handling, added logging capabilities.
.../CacheableTemplateHelperTemplateJsonDataTest.java Added test cases for caching application templates and validating cache functionality.
.../CacheableTemplateHelperTemplateMetadataTest.java Added test cases for caching application templates, fetching data from a mock server, and verifying cache functionality.
.../AppsmithError.java Updated CLOUD_SERVICES_ERROR HTTP status code from 500 to 400.

Sequence Diagram(s) (Beta)

sequenceDiagram
    participant Client
    participant ApplicationTemplateServiceCEImpl
    participant CacheableTemplateHelper
    participant Cache
    participant Server

    Client->>ApplicationTemplateServiceCEImpl: Request template details
    ApplicationTemplateServiceCEImpl->>CacheableTemplateHelper: getTemplateDetails(templateId, baseUrl)
    CacheableTemplateHelper->>Cache: Check cache for templateId
    alt Cache hit
        Cache-->>CacheableTemplateHelper: Return cached template
    else Cache miss
        CacheableTemplateHelper->>Server: Fetch template details from server
        Server-->>CacheableTemplateHelper: Return template details
        CacheableTemplateHelper->>Cache: Store template details in cache
    end
    CacheableTemplateHelper-->>ApplicationTemplateServiceCEImpl: Return template details
    ApplicationTemplateServiceCEImpl-->>Client: Return template details

Poem

In code we trust, a cache we weave,
For templates swift, no time to grieve.
With helpers strong and tests so bright,
Our data flows both day and night.
Errors tamed, and logs in sight,
Appsmith soars to greater height. 🚀


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@github-actions github-actions bot added Enhancement New feature or request Templates Issues related to templates Templates Pod Issues related to Templates and removed Enhancement New feature or request labels May 14, 2024
@AnaghHegde
Copy link
Member Author

/build-deploy-preview skip-tests=true

@AnaghHegde AnaghHegde added the ok-to-test Required label for CI label May 14, 2024
@github-actions github-actions bot added the Enhancement New feature or request label May 14, 2024
Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/9080612987.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 33439.
recreate: .

@AnaghHegde AnaghHegde marked this pull request as draft May 14, 2024 13:54
Copy link

Deploy-Preview-URL: https://ce-33439.dp.appsmith.com

@github-actions github-actions bot removed the Enhancement New feature or request label May 14, 2024
@github-actions github-actions bot added the Enhancement New feature or request label May 14, 2024
@AnaghHegde
Copy link
Member Author

/build-deploy-preview skip-tests=true

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/9083537520.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 33439.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-33439.dp.appsmith.com

@AnaghHegde
Copy link
Member Author

/build-deploy-preview skip-tests=true

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/9212140934.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 33439.
recreate: .

Copy link

Failed server tests

  • com.appsmith.server.services.ce.ActionServiceCE_Test#createValidActionWithJustName

mohanarpit
mohanarpit previously approved these changes Jun 3, 2024
@mohanarpit
Copy link
Member

@AnaghHegde Please resolve the failing tests here. Apart from that, the code LGTM.

@AnaghHegde AnaghHegde added ok-to-test Required label for CI and removed ok-to-test Required label for CI labels Jun 3, 2024
@github-actions github-actions bot removed the Enhancement New feature or request label Jun 3, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 01a3c42 and 7b43c43.

Files selected for processing (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/exceptions/AppsmithError.java (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/exceptions/AppsmithError.java

@github-actions github-actions bot added the Enhancement New feature or request label Jun 4, 2024
@AnaghHegde AnaghHegde added ok-to-test Required label for CI and removed Enhancement New feature or request ok-to-test Required label for CI labels Jun 4, 2024
@github-actions github-actions bot added the Enhancement New feature or request label Jun 4, 2024
@github-actions github-actions bot removed the Enhancement New feature or request label Jun 4, 2024
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 7b43c43 and 5cbcbd3.

Files selected for processing (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CacheableTemplateHelper.java (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/helpers/CacheableTemplateHelper.java

@AnaghHegde AnaghHegde removed the request for review from NilanshBansal June 4, 2024 14:19
@github-actions github-actions bot added Enhancement New feature or request and removed Enhancement New feature or request labels Jun 4, 2024
@mohanarpit mohanarpit dismissed NilanshBansal’s stale review June 4, 2024 17:20

Tests have been added. Review is complete.

@rahulbarwal rahulbarwal merged commit a4a4f59 into release Jun 5, 2024
48 checks passed
@rahulbarwal rahulbarwal deleted the perf/block-drag-and-drop branch June 5, 2024 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ok-to-test Required label for CI skip-changelog Adding this label to a PR prevents it from being listed in the changelog Templates Pod Issues related to Templates Templates Issues related to templates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Cache templates data to improve performance
5 participants