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

feat: don't upload the same asset multiple times #1011

Merged
merged 2 commits into from
Nov 1, 2018

Commits on Oct 25, 2018

  1. feat: don't upload the same asset multiple times

    This change implements two asset upload frugality measures:
    
    - If a lambda.AssetCode object is reused for multiple Lambdas,
      the same underyling Asset object will be reused (which leads to
      the asset data only being uploaded once).
    - If nonetheless multiple Asset objects are created for the same
      source data, the data will only be uploaded once and subsequently
      copied on the server-side to avoid the additional data transfer.
    
    Fixes #989.
    Rico Huijbers committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    813ab47 View commit details
    Browse the repository at this point in the history
  2. Add test for Asset reuse

    Rico Huijbers committed Oct 25, 2018
    Configuration menu
    Copy the full SHA
    ebb0af4 View commit details
    Browse the repository at this point in the history