Skip to content
New issue

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

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

Already on GitHub? # to your account

feat: use builder plugin metadata to set ODB TTL #213

Merged
merged 18 commits into from
Nov 22, 2021
Merged

Conversation

emilyzhang
Copy link
Contributor

@emilyzhang emilyzhang commented Nov 9, 2021

Which problem is this pull request solving?
We need a way to pass TTL information from an ODB function response to the rest of our systems which interpret and act on the specified TTL.

List other issues or pull requests related to this problem
Relevant issue: https://github.com/netlify/runtime-integrated-apps/issues/127

Describe the solution you've chosen
We are passing TTL information from the function response struct into the builder metadata, which is information that we receive in our downstream services.

Another solution would be passing TTL information through a custom header of some sort, but we decided to use the builder metadata to more tightly couple the TTL information to the ODB feature.

Checklist

Please add a x inside each checkbox:

  • I have read the contribution guidelines.
  • The status checks are successful (continuous integration). Those can be seen below.

@github-actions github-actions bot added the type: feature code contributing to the implementation of a feature and/or user facing functionality label Nov 9, 2021
@emilyzhang emilyzhang self-assigned this Nov 9, 2021
@emilyzhang emilyzhang marked this pull request as ready for review November 10, 2021 00:32
@ascorbic
Copy link
Contributor

It would be great if we could type BuilderResponse, extending Response. That way we could do it without adding an unused ttl prop to normal funciton reponses, which could get confusing. You could then make that the return type of the funciton returned by wrapHandler.

@eduardoboucas
Copy link
Member

It would be great if we could type BuilderResponse, extending Response. That way we could do it without adding an unused ttl prop to normal funciton reponses, which could get confusing. You could then make that the return type of the funciton returned by wrapHandler.

I agree with @ascorbic! That would be a nice way of differentiating the response type of normal functions from ODBs.

@ascorbic
Copy link
Contributor

But otherwise this is great. I reckon we should avoid merging this until it actually works (even if not launched or properly documented), as it's effectively the public API for the feature.

@emilyzhang
Copy link
Contributor Author

@ascorbic @eduardoboucas do you know if there's any way i can make a "test" release for integration testing? the main issue re: waiting to merge until production is that i can't think of a good way otherwise to test the ODB TTL/SWR behavior in staging/production.

@emilyzhang emilyzhang requested a review from ascorbic November 10, 2021 17:59
@eduardoboucas
Copy link
Member

@emilyzhang you can publish a beta version from this branch using the tag property.

Example:

  1. Publish: npm publish --tag=beta
  2. Install: npm install @netlify/functions@beta

@emilyzhang
Copy link
Contributor Author

@eduardoboucas thank you!

@ascorbic
Copy link
Contributor

@emilyzhang I've tried this and the types aren't being enforced in handlers. I think we need a new Builder type, that's like a Handler but returns a BuilderResponse. Happy to pair on this with you tomorrow if you'd like

@emilyzhang
Copy link
Contributor Author

emilyzhang commented Nov 10, 2021

@ascorbic i'd love to, but i'm unfortunately out for the rest of the week. i can try making changes based on your descriptions today though, and i would also love to pair when i'm back next week! also out of curiosity, how were you able to try/test this to see that the types weren't being enforced? thanks!

@ascorbic
Copy link
Contributor

Nothing fancy! I checked-out your PR, and created a test.ts file that imported it.

import { builder } from './dist/lib/builder'

async function odb() {
  return {
    body: '',
    statusCode: 200,
    ttl: 'this should fail',
  }
}

export const handler = builder(odb)

Copy link
Contributor

@ascorbic ascorbic left a comment

Choose a reason for hiding this comment

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

Great stuff! I think I've worked out a way to prohibit ttl in regular handlers. See my separate comment.

@emilyzhang emilyzhang requested a review from ascorbic November 16, 2021 23:06
ascorbic
ascorbic previously approved these changes Nov 17, 2021
Copy link
Contributor

@ascorbic ascorbic left a comment

Choose a reason for hiding this comment

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

This looks great, and should be ready to merge. We shouldn't put it in until it's available in all nodes (even if it's not GA). We should probably set it to draft to ensure it doesn't go in yet.

Copy link
Member

@eduardoboucas eduardoboucas left a comment

Choose a reason for hiding this comment

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

I left a comment with a couple of questions, but otherwise this looks great!

@emilyzhang
Copy link
Contributor Author

emilyzhang commented Nov 17, 2021

@ascorbic @eduardoboucas Thanks for your comments!

This could actually use another look because of the auth work (#217) that was merged in earlier today, I had to fix some merge conflicts.

I'll be making another beta release to test that this functionality still works (I've also tested using Matt Kane's local ODB function method described earlier in this PR and that looks good). Thanks!

Update: I've since tested that both auth and ODB changes work as expected with a beta version of the latest changes.

Copy link
Member

@eduardoboucas eduardoboucas left a comment

Choose a reason for hiding this comment

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

LGTM!

Copy link
Contributor

@ascorbic ascorbic left a comment

Choose a reason for hiding this comment

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

Looking good! We can merge this as soon as support is deployed to all nodes.

@emilyzhang emilyzhang merged commit c93c0a6 into main Nov 22, 2021
@emilyzhang emilyzhang deleted the em/odb-ttl-plugin branch November 22, 2021 23:46
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
type: feature code contributing to the implementation of a feature and/or user facing functionality
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants