Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/metabase/metabase. Pull mirroring updated .
  1. Mar 02, 2021
  2. Mar 01, 2021
  3. Feb 27, 2021
  4. Feb 26, 2021
    • Robert Roland's avatar
      Replace ExitOnOutOfMemoryError with CrashOnOutOfMemoryError (#14972) · 430d2683
      Robert Roland authored
      This will make the JVM output more details as it crashes for running out of memory.
      
      New output:
      
      ```text
      rroland@tardis:~/src/metabase/target/uberjar$ java -Xmx50m -XX:+CrashOnOutOfMemoryError -jar metabase.jar
      WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
      2021-02-25 11:38:31,689 INFO metabase.util :: Maximum memory available to JVM: 50.0 MB
      Aborting due to java.lang.OutOfMemoryError: Java heap space
      \#
      \# A fatal error has been detected by the Java Runtime Environment:
      \#
      \#  Internal Error (debug.cpp:338), pid=40255, tid=40256
      \#  fatal error: OutOfMemory encountered: Java heap space
      \#
      \# JRE version: OpenJDK Runtime Environment (11.0.10+9) (build 11.0.10+9-post-Debian-1)
      \# Java VM: OpenJDK 64-Bit Server VM (11.0.10+9-post-Debian-1, mixed mode, sharing, tiered, compressed oops, g1 gc, linux-amd64)
      \# No core dump will be written. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
      \#
      \# An error report file with more information is saved as:
      \# /home/rroland/src/metabase/target/uberjar/hs_err_pid40255.log
      \#
      \# If you would like to submit a bug report, please visit:
      \#   https://bugs.debian.org/openjdk-11
      \#
      Aborted
      ```
      
      Previous output:
      
      ```text
      rroland@tardis:~/src/metabase/target/uberjar$ java -Xmx50m -XX:+ExitOnOutOfMemoryError -jar metabase.jar
      WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
      2021-02-25 11:38:46,898 INFO metabase.util :: Maximum memory available to JVM: 50.0 MB
      Terminating due to java.lang.OutOfMemoryError: Java heap space
      ```
      Unverified
      430d2683
    • Jeff Evans's avatar
      Fix redshift test failures (#14988) · 5bfe9c05
      Jeff Evans authored
      * Change string-operations-from-subquery to use test-data instead of sample-data, because the latter currently is incompatible with Redshift (see #14784)
      
      * Add MSSQL_MEMORY_LIMIT_MB: 1024 to CircleCI config (cherry pick of https://github.com/metabase/metabase/commit/4a714f3e21fb06fdb73b11fa7812f417b38a069e)
      Unverified
      5bfe9c05
    • Nemanja Glumac's avatar
    • Jeff Evans's avatar
      Fix regex-match-first operator for Postgres to work properly when run against subqueries (#14924) · cc50929e
      Jeff Evans authored
      * Fix regex-match-first operator for Postgres to work properly when run against subqueries
      
      Capture col-name at beginning of fn for :regex-match-first operator in Postgres driver to work around laziness problem (see PR #14858)
      
      Adding test
      
      * Unskip Cypress test for #14873
      Unverified
      cc50929e
    • Nemanja Glumac's avatar
      Add set of Cypress custom commands related to permissions API (#14948) · 8a7e54e6
      Nemanja Glumac authored
      * Add `updatePermissionsGraph` custom command
      
      * Add `updatePermissionsSchema` custom command
      
      * Add `updateCollectionGraph` custom command
      
      * Update `updatePermissionsSchemas` command
      
      This accounts for a different case sensitivity that different DBs have.
      Unverified
      8a7e54e6
  5. Feb 25, 2021
  6. Feb 24, 2021
  7. Feb 23, 2021
  8. Feb 22, 2021
  9. Feb 19, 2021
  10. Feb 18, 2021
  11. Feb 17, 2021
  12. Feb 16, 2021
Loading