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

Merge ert storage #6127

Closed
wants to merge 44 commits into from
Closed

Merge ert storage #6127

wants to merge 44 commits into from

Commits on May 31, 2021

  1. Move source to src/ directory

    pinkwah committed May 31, 2021
    Configuration menu
    Copy the full SHA
    7164573 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2021

  1. Configuration menu
    Copy the full SHA
    6e3cf6d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6746663 View commit details
    Browse the repository at this point in the history
  3. Move record blob logic into dedicated BlobHandler

    Co-authored-by: Øystein Olai Heggen <[email protected]>
    pinkwah and oysteoh committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    fc6ad4e View commit details
    Browse the repository at this point in the history
  4. Fix out-of-order chunked blob upload

    The code used to combine the chunks in upload order rather than
    block_index order. This commit fixes this issue.
    pinkwah committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    3d8423d View commit details
    Browse the repository at this point in the history
  5. Refactor json outputs with helper functions

    - Add observationOut helper function
    - Refactor experiment/prioirs
    - Add helper function to Update endpoint
    - Make use of ensemble_ids
    - Change relative import to absolute
    - Fix priors into new_record_matrix
    xjules committed Jun 1, 2021
    Configuration menu
    Copy the full SHA
    865468a View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2021

  1. Remove prior endpoint

    - Migrate prior endpoint tests into experiment
    - Add get single experiment endpoint
    xjules committed Jun 3, 2021
    Configuration menu
    Copy the full SHA
    cdc50c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2021

  1. Specify UUID cache_ok

    SQLAlchemy complains about cache_ok not existing in UUID and spamming me
    with warnings. We tell it that UUID is cacheable and that it's all fine.
    pinkwah committed Jun 7, 2021
    Configuration menu
    Copy the full SHA
    761886a View commit details
    Browse the repository at this point in the history
  2. Change metadata to non-nullable userdata

    The `Metadata` field that points to the `_metadata` column in SQL used
    to be auto-generated by the Graphene-SQLAlchemy package. Now there's
    only the `userdata` field. Further, this commit removes the
    `metadata_dict` property in favour of having the column default to `{}`.
    pinkwah committed Jun 7, 2021
    Configuration menu
    Copy the full SHA
    4a76923 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2021

  1. Add types-requests to test requirements

    Modify testclient post, get, .. to comply with requests types
    ManInFez committed Jun 16, 2021
    Configuration menu
    Copy the full SHA
    2b060e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    290cd79 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. Configuration menu
    Copy the full SHA
    12940ab View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2021

  1. Configuration menu
    Copy the full SHA
    8fa8fc6 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2021

  1. Configuration menu
    Copy the full SHA
    b5f3b44 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. Configuration menu
    Copy the full SHA
    2fd9882 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2021

  1. Configuration menu
    Copy the full SHA
    aaccf35 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2021

  1. Revert "lazy load database configuration"

    This reverts commit aaccf35.
    oysteoh committed Sep 22, 2021
    Configuration menu
    Copy the full SHA
    5c95295 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    375d8a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2021

  1. Configuration menu
    Copy the full SHA
    edb2b7e View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2021

  1. Configuration menu
    Copy the full SHA
    94f95ab View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2021

  1. Configuration menu
    Copy the full SHA
    9e86992 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bae073 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    21c64d2 View commit details
    Browse the repository at this point in the history
  4. Fix formatting

    TerryHannant committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    2995218 View commit details
    Browse the repository at this point in the history
  5. Revert "Fix formatting"

    This reverts commit 2995218.
    TerryHannant committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    f154254 View commit details
    Browse the repository at this point in the history
  6. Revert "Add additional test debugging"

    This reverts commit 21c64d2.
    TerryHannant committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    4ec9b34 View commit details
    Browse the repository at this point in the history
  7. Revert "Fix temp debuging for tests"

    This reverts commit 0bae073.
    TerryHannant committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    d1c56a2 View commit details
    Browse the repository at this point in the history
  8. Revert "Add temp debuging for tests"

    This reverts commit 9e86992.
    TerryHannant committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    29c5602 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Configuration menu
    Copy the full SHA
    685645c View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2021

  1. Add client.Client and client.AsyncClient

    These replace client.Session with versions that:
    1. Cache a global connection information
    2. Accept a `ConnInfo` object so that we don't have to create files or
       set environment variables.
    3. Look for `storage_server.json` in any parent directory
    pinkwah committed Dec 22, 2021
    Configuration menu
    Copy the full SHA
    7b69b61 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2022

  1. Configuration menu
    Copy the full SHA
    f862461 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2022

  1. Configuration menu
    Copy the full SHA
    cf648e5 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2022

  1. Configuration menu
    Copy the full SHA
    614352f View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2022

  1. Configuration menu
    Copy the full SHA
    ea3eb71 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2022

  1. Add refresh facade endpoint

    DanSava committed May 16, 2022
    Configuration menu
    Copy the full SHA
    b4fa57a View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2022

  1. Configuration menu
    Copy the full SHA
    5cf4e2d View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. Configuration menu
    Copy the full SHA
    145e21c View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Handle specific dbapierror in get_db

    fastapi had breaking change in 0.74.0 where we now need to
    specifically handle only exceptions related to our database
    transaction.
    https://fastapi.tiangolo.com/release-notes/#breaking-changes
    oysteoh committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    20bb1be View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. Add endpoint /server/info

    Endpoint gives info about server, for now only a name.
    mortalisk committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    41bdca1 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2023

  1. Configuration menu
    Copy the full SHA
    f193997 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Configuration menu
    Copy the full SHA
    e934cfc View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. Configuration menu
    Copy the full SHA
    029fa16 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. Pin pydantic<2 and fastapi

    berland committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    fe5ec40 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. Merge equinor/ert-storage into dark_storage

    This drops the requirement of having an external provider of the ERT
    Storage API. One day we may resurrect ert-storage as an entirely
    separate service, but as of today only dark_storage should be supported.
    pinkwah committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    e4e16da View commit details
    Browse the repository at this point in the history