Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Feb 29, 2024
  2. Feb 28, 2024
  3. Feb 27, 2024
    • dpsutton's avatar
      Delete all pruned persisted info records (#39219) · f2d279cd
      dpsutton authored
      We prune persisted info records if they meet any of the following
      criteria:
      
      ```clojure
      (or (contains? (persisted-info/prunable-states) current-state)
          (:archived card-info)
          (not (:dataset card-info)))
      ```
      
      But we only deleted the record when:
      
      ```clojure
      (when (= "deletable" current-state)
        (t2/delete! PersistedInfo :id (:id persisted-info)))
      ```
      
      So any records that were in a "creating" state (persist a model, but
      before it first gets persisted, make it not a model, or archive the
      underlying model), we constantly pruned them but never removed the
      persisted info record.
      
      Leading to task results like:
      
      ```javascript
      {"success": 21, "error": 0, "skipped": 0}
      ```
      
      Because 21 things were queued up for pruning, were attempted to be
      pruned, but the persisted info record never removed.
      Unverified
      f2d279cd
    • Cam Saul's avatar
      Drop report_card.dataset (#38981) · ddfd9f63
      Cam Saul authored
      
      * Drop report_card.dataset [WIP] [ci skip]
      
      * Drop report_card.dataset
      
      * Some test fixes
      
      * More test fixes
      
      * All OSS tests should be fixed now?
      
      * Remove check for :dataset key from snake-hating-map
      
      * Remove NOCOMMIT stuff
      
      * Remove unused namespaces
      
      * PR feedback
      
      * Migrate dataset attribute in autocomplete suggestions (#39054)
      
      * FE - Migrate `dataset: true` to enum value in Bookmarks (#39056)
      
      * Fix Card["type"] - Bookmark["card_type"] mapping and add an extra assertion
      
      * Fix card-type check out of raw query
      
      * Fix the test
      
      * Fix tests after merge
      
      * Log body when unexpected response code
      
      * Get logging in CI
      
      * Relax is_upload schema for latest mariadb
      
      ---------
      
      Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>
      Co-authored-by: default avatarCase Nelson <case@metabase.com>
      Co-authored-by: default avatarAlexander Polyankin <alexander.polyankin@metabase.com>
      Unverified
      ddfd9f63
    • Mark Bastian's avatar
      Text cards not skipped in pulses (#39216) · 1ea99689
      Mark Bastian authored
      This PR updates the logic of skipping what cards are displayed in a pulse email by ensuring the type of the card being processed is a `:card` in addition to having no results.
      Unverified
      1ea99689
    • Uladzimir Havenchyk's avatar
    • Nemanja Glumac's avatar
      Optimize the CI milestone reminder (#39196) · a5bb1b42
      Nemanja Glumac authored
      This PR narrows down the matching pattern for the milestone reminder to
      only the descriptions that explicitly contain one of the closing keywords
      followed by the issue (number).
      
      To verify that the proposed solution works, please check:
      - https://regexr.com/7sk94
      
      Also see the list of the closing keywords as defined by GitHub.
      https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests
      
      
      
      * Make the pattern case insensitive
      
      Co-authored-by: default avatarNicolò Pretto <info@npretto.com>
      Unverified
      a5bb1b42
    • Mark Bastian's avatar
      Fixing bad pulses when bad params exist (#39136) · d2c6d11c
      Mark Bastian authored
      * Fixing bad pulses when bad params exist
      
      Previously, when a dashboard parameter was removed that was depended upon by a subscription, the subscription went into a broken state that was unfixable (the removed param was still attached to the notification but not visible in the UI for editing). Rather than remove that parameter, which could potentially lead to data leaks, we just archive the pulse.
      
      Now, when a dashboard is saved that would break a pulse/subscription, we archive the pulse and send an email the the dashboard and pulse creators to notify them that the pulse has been removed. The email also contains which params were removed as well as a list of who will no longer be receiving the messages.
      
      One code consideration when writing the query logic to determine the blast radius of the bad pulse was whether to write a large join query then reorganize the results or do N+1 queries starting from the pulse id (The logic requires hitting all of pulse, pulse channel, pulse channel recipients, and user tables). I started with a full join query along the lines of what is shown below, but opted for the N+1 query as broken pulses should be a very rare occurrence so readability was preferred over performance.
      
      ```clojure
        (let [parameter-ids ["a3d043d5"]]
          (when (seq parameter-ids)
            (t2/query
              (sql/format
                {:with   [[:params {:select [[:id]
                                             [[:raw "json_array_elements(parameters::json) ->> 'id'"]
                                              :parameter_id]]
                                    :from   :pulse}]
                          [:pulse_ids {:select-distinct [[:id :pulse_id]]
                                       :where           [:in :parameter_id parameter-ids]
                                       :from            :params}]]
                 :select [[:p.id :pulse_id]
                          [:pc.id :pulse_channel_id]
                          [:pcr.id :pulse_channel_recipient_id]
                          [:creator.first_name :creator_first_name]
                          [:creator.last_name :creator_last_name]
                          [:creator.email :creator_email]
                          [:recipient.first_name :recipient_first_name]
                          [:recipient.last_name :recipient_last_name]
                          [:recipient.email :recipient_email]]
                 :from   [[:pulse :p]]
                 :join   [:pulse_ids [:= :p.id :pulse_ids.pulse_id]
                          [:pulse_channel :pc] [:= :pc.pulse_id :p.id]
                          [:pulse_channel_recipient :pcr] [:= :pcr.pulse_channel_id :pc.id]
                          ;; Get the pulse creator
                          [:core_user :creator] [:= :creator.id :p.creator_id]
                          ;; Get the pulse recipient
                          [:core_user :recipient] [:= :recipient.id :pcr.user_id]]}))))
      ```
      
      * Fixing inconsistent test results by adding a timeout and expecting 2 messages.
      
      * Fixing NPEs in tests, but not sure why we are not getting results sometimes.
      
      * Trying to fix 500 in dashboard PUT
      
      * Tests run ok locally against mongodb
      
      * Fixing unit tests
      
      * fixing template up
      
      * fixing unit tests
      
      * Adding refined tests to try to detect what is going on with failing tests
      
      * Formatting
      
      * Tracking down test failures and updating email template
      
      * Removing db-specific query
      
      * Simplifying broken pulse logic to not get all pulses twice.
      
      * A couple small simplifications to the logic.
      
      * Adding slack messaging
      
      * Making pulse checks conditional on parameter updates
      Unverified
      d2c6d11c
Loading