Samvera Tech Call 2020-01-29

How to connect: https://psu.zoom.us/j/613720745 (link will launch Zoom client – if you do not have Zoom, expand the instructions below)

 Click to view telephone/H.323/SIP connection instructions

Telephone:

Meeting ID: 613 720 745

+1 646 876 9923 (US Toll)
+1 669 900 6833 (US Toll)
+1 408 638 0968 (US Toll)
International numbers available: https://psu.zoom.us/zoomconference?m=UZ_PRwQ56TNX1pDIsdDInAu8XPVqzlX3

H.323:

Meeting ID: 613 720 745

162.255.37.11 (US West)
162.255.36.11 (US East)
221.122.88.195 (China)
115.114.131.7 (India)
213.19.144.110 (EMEA)
202.177.207.158 (Australia)
209.9.211.110 (Hong Kong)
64.211.144.160 (Brazil)
69.174.57.160 (Canada)

SIP: 613720745@zoomcrc.com

Time: 9:00am PDT / Noon EDT

Moderator: LaRita Robinson

Notetaker: tamsin woo

Attendees:

Agenda

  1. Roll call by timezone per following order - ensure notetaker is present (moderator)

    1. folks outside North and South America

    2. Eastern timezone

    3. Central timezone

    4. Mountain timezone

    5. Pacific timezone

    6. folks who were missed or who dialed in during roll call

    7. Remind everyone to sign in on agenda.
    8. Welcome all newcomers!
  2. Agenda (moderator)
    1. Call for new agenda items (moderator)
    2. Samvera Dev Congress, Winter 2020 (Solar Vortex) report out (tamsin woo)
    3. Hyrax Publisher (`Dry::Events`) (tamsin woo )
      1. Need community feedback on event publishing.
      2. Thinking about two community virtual sessions:
        1. Dive Into Hyrax Pub/Sub
        2. Events design session
    4. Hydra-Head 11 and Rails 6/Blacklight 7 (Chris Colvard (Deactivated))
      1. There is a Hyrax release blocker issue that depends on a change in HH that will require a major release
        1. https://github.com/samvera/hyrax/issues/3974
        2. https://github.com/samvera/hydra-head/pull/501
      2. We also need to add Rails 6 support but this requires a newer BL and blacklight-access_controls which I believe will require a major release.
      3. Release 11 now and follow up with 12 later? OR try to get 11 released with Rails 6/BL 7 support?
    5. FileSet and FileMetadata in Hyrax with valkyrie (Lynette Raylewith Trey Pendragon)
    6. add agenda item here
  3. Moderator & notetaker for next time
    1. Moderator:
    2. Notetaker:
  4. After call, this week's notetaker should create the agenda for the next call:
    1. Open template agenda titled "Samvera Tech Call 2020-xx-xx"

    2. Click on ... in the top right corner, and select copy.
    3. Popup will open for location. It should contain: 
      1. Space: Samvera
      2. Parent page: 2020
    4. Select copy. New page should be created.
    5. Modify the title to remove "copy of", update it with the next date, add moderator, notetaker, and any carry-over agenda info. Click Publish.
  5. PR Review
    1. Review issues:
    2. PR review coordinator for next time: 

Notes


  1. Samvera Dev Congress, Winter 2020 (Solar Vortex) report out (tamsin woo)
    1. Developer congress last week in San Diego
    2. Some work on refactoring Jobs to support; tickets open for this
    3. Question about written summary; we think one went out via emails–will confirm.
    4. Are there issue tags or project boards?
      1. issues are under-organized across hyrax in general, owing in part to lack of PO
      2. we are mainly using the `Wings` tag for wings adapter tickets, and trying to encourage treating valkyrie support as normal hyrax development
  2. Hyrax Publisher (`Dry::Events`) (tamsin woo )
    1. Need community feedback on event publishing.
      1. Working on normalizing callback/event publishing strategy with Dry::Events
      2. it's desirable to plan and document this strategy very clearly, so we're soliciting early feedback.
    2. Thinking about two community virtual sessions:
      1. Dive Into Hyrax Pub/Sub
      2. Events design session
    3. Folks supported this plan, tamsin woo to schedule.
  3. Hydra-Head 11 and Rails 6/Blacklight 7 (Chris Colvard (Deactivated))
    1. There is a Hyrax release blocker issue that depends on a change in HH that will require a major release
    2. We also need to add Rails 6 support but this requires a newer BL and blacklight-access_controls which I believe will require a major release.
    3. Release 11 now and follow up with 12 later? OR try to get 11 released with Rails 6/BL 7 support?
      1. There is work in Hydra Head already that fixes an issue with permissions https://github.com/samvera/hydra-head/pull/501
      2. There is also a need to add support for newer versions of blacklight; is it a good idea to try to bundle these changes and reduce the number of major releases.
  4. FileSet and FileMetadata in Hyrax with valkyrie (Lynette Raylewith Trey Pendragon)
    1. Two approaches for saving filesets and metadata objects for files.

      1. First is to store ids in FileSets, Hyrax does this now

      2. Second is to nest FileMetadata objects; Figgy does this

      3. Figgy had this design conversation early on, there are multiple factors

        1. Simplifies query and access

        2. Delete FileSet deletes all FileMetadata instead of having to find them and delete each

        3. In Figgy FileSets have optimistic locking; that seems important for running parallel characterization jobs, for example
      4. Question about impact on access to FileMetadata, do i need to have all FileMetadata objects in hand to change one?

        1. Yes.
        2. This isn't an issue with postgres, where access is one query.
        3. However, this is likely a problem for Wings where we'd have to query the file metadata nodes individually
    2. Next steps: Continue discussion in slack; maybe schedule a call.

      Hyrax now:  attribute :file_ids, Valkyrie::Types::Array.of(Valkyrie::Types::ID) # id for FileMetadata resources
      Figgy: attribute :file_metadata, Valkyrie::Types::Set.of(FileMetadata.optional)