Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-35033

LeakSanitizer errors in my_malloc / safe_mutex_lazy_init_deadlock_detection / MHNSW_Context::alloc_node and alike

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Critical
    • Resolution: Fixed
    • N/A
    • 11.7.1
    • Vector search
    • None

    Description

      Note: The beginning of the test scenario is identical to MDEV-35031, so maybe it's only a delayed effect of the same issue. However, given that here also a system variable is involved, I'll file it separately, just in case. Feel free to close as a duplicate if that's what it is.

      CREATE TABLE t (a INT, v BLOB NOT NULL, VECTOR INDEX (v));
      INSERT INTO t VALUES (1,VEC_FROMTEXT('[0]'));
       
      --error ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
      UPDATE t SET v = VEC_FROMTEXT('[0,0]');
       
      --error ER_KEY_NOT_FOUND
      UPDATE t SET a = 2;
       
      SET GLOBAL mhnsw_cache_size = 1048576;
      INSERT INTO t  VALUES (2,x'00000000');
       
      # Cleanup
      DROP TABLE t;
      

      bb-11.6-MDEV-32887-vector f20a1f4e94f5fc700959ff6b7945aa8a5fd0c307

      Warning: Internal memory accounting error of 1053184 bytes
       
      =================================================================
      ==3143148==ERROR: LeakSanitizer: detected memory leaks
       
      Direct leak of 296 byte(s) in 1 object(s) allocated from:
          #0 0x7f78ea2b89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55fd3ff65891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55fd3ff36db2 in my_multi_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/mulalloc.c:59
          #3 0x55fd3ff7f7d4 in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:155
          #4 0x55fd3ff804b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #5 0x55fd3ee32206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #6 0x55fd3ee41fdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #7 0x55fd3ee3a650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #8 0x55fd3ded5c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #9 0x55fd3ea2b778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #10 0x55fd3dfa75cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #11 0x55fd3df9dcfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #12 0x55fd3e06dfc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #13 0x55fd3e085b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #14 0x55fd3e05cbab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #15 0x55fd3e0598bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #16 0x55fd3e549420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #17 0x55fd3e548de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #18 0x55fd3f1ea999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #19 0x7f78e98a8043 in start_thread nptl/pthread_create.c:442
       
      Direct leak of 152 byte(s) in 1 object(s) allocated from:
          #0 0x7f78ea2b89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55fd3ff65891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55fd3fee6445 in init_dynamic_array2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:73
          #3 0x55fd3fef653b in my_hash_init2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:99
          #4 0x55fd3ee4383d in Hash_set<FVectorNode>::Hash_set(unsigned int, unsigned char* (*)(FVectorNode const*, unsigned long*, char), charset_info_st const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_hset.h:37
          #5 0x55fd3ee41192 in MHNSW_Context::MHNSW_Context(TABLE*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:347
          #6 0x55fd3ee3318c in MHNSW_Context::get_from_share(TABLE_SHARE*, TABLE*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:610
          #7 0x55fd3ee33388 in MHNSW_Context::acquire(MHNSW_Context**, TABLE*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:627
          #8 0x55fd3ee3a485 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1119
          #9 0x55fd3ded5c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55fd3ea2b778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55fd3dfa75cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55fd3df9dcfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55fd3e06dfc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55fd3e085b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55fd3e05cbab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55fd3e0598bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55fd3e549420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55fd3e548de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55fd3f1ea999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f78e98a8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 1048592 byte(s) in 1 object(s) allocated from:
          #0 0x7f78ea2b89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55fd3ff65891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55fd3ff37e5d in root_alloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_alloc.c:66
          #3 0x55fd3ff3984d in alloc_root /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_alloc.c:333
          #4 0x55fd3ee4110b in MHNSW_Context::alloc_node_internal() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:323
          #5 0x55fd3ee41fe8 in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:436
          #6 0x55fd3ee3a650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #7 0x55fd3ded5c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #8 0x55fd3ea2b778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #9 0x55fd3dfa75cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #10 0x55fd3df9dcfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #11 0x55fd3e06dfc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #12 0x55fd3e085b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #13 0x55fd3e05cbab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #14 0x55fd3e0598bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #15 0x55fd3e549420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #16 0x55fd3e548de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #17 0x55fd3f1ea999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #18 0x7f78e98a8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 2072 byte(s) in 1 object(s) allocated from:
          #0 0x7f78ea2b89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55fd3ff65891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55fd3fee6445 in init_dynamic_array2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:73
          #3 0x55fd3fef653b in my_hash_init2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:99
          #4 0x55fd3ff7f99b in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:171
          #5 0x55fd3ff804b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #6 0x55fd3ee32206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #7 0x55fd3ee41fdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #8 0x55fd3ee3a650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #9 0x55fd3ded5c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55fd3ea2b778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55fd3dfa75cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55fd3df9dcfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55fd3e06dfc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55fd3e085b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55fd3e05cbab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55fd3e0598bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55fd3e549420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55fd3e548de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55fd3f1ea999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f78e98a8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 2072 byte(s) in 1 object(s) allocated from:
          #0 0x7f78ea2b89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55fd3ff65891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55fd3fee6445 in init_dynamic_array2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:73
          #3 0x55fd3fef653b in my_hash_init2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:99
          #4 0x55fd3ff7f92f in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:168
          #5 0x55fd3ff804b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #6 0x55fd3ee32206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #7 0x55fd3ee41fdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #8 0x55fd3ee3a650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #9 0x55fd3ded5c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55fd3ea2b778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55fd3dfa75cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55fd3df9dcfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55fd3e06dfc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55fd3e085b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55fd3e05cbab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55fd3e0598bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55fd3e549420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55fd3e548de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55fd3f1ea999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f78e98a8043 in start_thread nptl/pthread_create.c:442
       
      SUMMARY: AddressSanitizer: 1053184 byte(s) leaked in 5 allocation(s).
      240927 17:18:08 [ERROR] mysqld got signal 6 ;
      Sorry, we probably made a mistake, and this is a bug.
       
      Your assistance in bug reporting will enable us to fix this for the next release.
      To report this bug, see https://mariadb.com/kb/en/reporting-bugs
       
      We will try our best to scrape up some info that will hopefully help
      diagnose the problem, but since we have already crashed, 
      something is definitely wrong and this may fail.
       
      Server version: 11.7.0-MariaDB-debug-log source revision: f20a1f4e94f5fc700959ff6b7945aa8a5fd0c307
      read_buffer_size=131072
      max_used_connections=1
      thread_count=0
      Thread pointer: 0x0
      Attempting backtrace. You can use the following information to find out
      where mysqld died. If you see no messages after this, something went
      terribly wrong...
      stack_bottom = 0x0 thread_stack 0xb00000
      sanitizer_common/sanitizer_common_interceptors.inc:4277(__interceptor_backtrace.part.0)[0x7f78ea251f31]
      mysys/stacktrace.c:215(my_print_stacktrace)[0x55fd3ff7675c]
      sql/signal_handler.cc:239(handle_fatal_signal)[0x55fd3e9e3d60]
      libc_sigaction.c:0(__restore_rt)[0x7f78e985afd0]
      nptl/pthread_kill.c:44(__pthread_kill_implementation)[0x7f78e98a9d3c]
      posix/raise.c:27(__GI_raise)[0x7f78e985af32]
      stdlib/abort.c:81(__GI_abort)[0x7f78e9845472]
      sanitizer_common/sanitizer_posix_libcdep.cpp:137(__sanitizer::Abort())[0x7f78ea2d650f]
      sanitizer_common/sanitizer_termination.cpp:59(__sanitizer::Die())[0x7f78ea2e2ba1]
      lsan/lsan_common_linux.cpp:120(__lsan::HandleLeaks())[0x7f78ea2ea87c]
      lsan/lsan_common.cpp:732(__lsan::DoLeakCheck())[0x7f78ea2e8dc5]
      stdlib/cxa_finalize.c:84(__cxa_finalize)[0x7f78e985cf77]
      crtstuff.c:0(__do_global_dtors_aux)[0x7f78ea224bc7]
      The manual page at https://mariadb.com/kb/en/how-to-produce-a-full-stack-trace-for-mariadbd/ contains
      information that should help you find out what is causing the crash.
      Writing a core file...
      Working directory at /dev/shm/var_auto_s6Uc/mysqld.1/data
      Resource Limits:
      Limit                     Soft Limit           Hard Limit           Units     
      Max cpu time              unlimited            unlimited            seconds   
      Max file size             unlimited            unlimited            bytes     
      Max data size             unlimited            unlimited            bytes     
      Max stack size            8388608              unlimited            bytes     
      Max core file size        unlimited            unlimited            bytes     
      Max resident set          unlimited            unlimited            bytes     
      Max processes             514730               514730               processes 
      Max open files            65536                65536                files     
      Max locked memory         16876769280          16876769280          bytes     
      Max address space         unlimited            unlimited            bytes     
      Max file locks            unlimited            unlimited            locks     
      Max pending signals       514730               514730               signals   
      Max msgqueue size         819200               819200               bytes     
      Max nice priority         0                    0                    
      Max realtime priority     0                    0                    
      Max realtime timeout      unlimited            unlimited            us        
      Core pattern: core
       
      Kernel version: Linux version 6.1.0-13-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian 6.1.55-1 (2023-09-29)
      

      A variation with several values in the first INSERT (different stack in LeakSanitizer):

      CREATE TABLE t (a INT, v BLOB NOT NULL DEFAULT VEC_FROMTEXT('[0]'), VECTOR INDEX (v));
      INSERT INTO t (a) VALUES (1),(1),(1),(1),(1),(1),(1),(1);
       
      --error ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
      UPDATE t SET v = VEC_FROMTEXT('[0,0]');
       
      --error ER_KEY_NOT_FOUND
      UPDATE t SET a = 2;
       
      SET GLOBAL mhnsw_cache_size = 1048576;
      INSERT INTO t  VALUES (2,x'00000000');
       
      # Cleanup
      DROP TABLE t;
      

      ==3147256==ERROR: LeakSanitizer: detected memory leaks
       
      Direct leak of 8328 byte(s) in 1 object(s) allocated from:
          #0 0x7f86deab78d5 in __interceptor_realloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:85
          #1 0x55ebb71630df in my_realloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:159
          #2 0x55ebb70e408a in alloc_dynamic /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:188
          #3 0x55ebb70f4ddb in my_hash_insert /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:414
          #4 0x55ebb60408ba in Hash_set<FVectorNode>::insert(FVectorNode const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_hset.h:67
          #5 0x55ebb603e015 in MHNSW_Context::cache_internal(FVectorNode*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:319
          #6 0x55ebb603f053 in MHNSW_Context::cache_node(FVectorNode*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:445
          #7 0x55ebb6034c42 in FVectorNode::save(TABLE*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:932
          #8 0x55ebb6038404 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1182
          #9 0x55ebb50d2c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55ebb5c28778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55ebb51a45cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55ebb519acfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55ebb526afc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55ebb5282b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55ebb5259bab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55ebb52568bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55ebb5746420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55ebb5745de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55ebb63e7999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f86ddea8043 in start_thread nptl/pthread_create.c:442
       
      Direct leak of 296 byte(s) in 1 object(s) allocated from:
          #0 0x7f86deab89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55ebb7162891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55ebb7133db2 in my_multi_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/mulalloc.c:59
          #3 0x55ebb717c7d4 in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:155
          #4 0x55ebb717d4b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #5 0x55ebb602f206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #6 0x55ebb603efdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #7 0x55ebb6037650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #8 0x55ebb50d2c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #9 0x55ebb5c28778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #10 0x55ebb51a45cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #11 0x55ebb519acfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #12 0x55ebb526afc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #13 0x55ebb5282b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #14 0x55ebb5259bab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #15 0x55ebb52568bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #16 0x55ebb5746420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #17 0x55ebb5745de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #18 0x55ebb63e7999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #19 0x7f86ddea8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 1048592 byte(s) in 1 object(s) allocated from:
          #0 0x7f86deab89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55ebb7162891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55ebb7134e5d in root_alloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_alloc.c:66
          #3 0x55ebb713684d in alloc_root /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_alloc.c:333
          #4 0x55ebb603e10b in MHNSW_Context::alloc_node_internal() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:323
          #5 0x55ebb603efe8 in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:436
          #6 0x55ebb6037650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #7 0x55ebb50d2c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #8 0x55ebb5c28778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #9 0x55ebb51a45cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #10 0x55ebb519acfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #11 0x55ebb526afc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #12 0x55ebb5282b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #13 0x55ebb5259bab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #14 0x55ebb52568bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #15 0x55ebb5746420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #16 0x55ebb5745de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #17 0x55ebb63e7999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #18 0x7f86ddea8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 2072 byte(s) in 1 object(s) allocated from:
          #0 0x7f86deab89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55ebb7162891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55ebb70e3445 in init_dynamic_array2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:73
          #3 0x55ebb70f353b in my_hash_init2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:99
          #4 0x55ebb717c99b in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:171
          #5 0x55ebb717d4b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #6 0x55ebb602f206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #7 0x55ebb603efdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #8 0x55ebb6037650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #9 0x55ebb50d2c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55ebb5c28778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55ebb51a45cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55ebb519acfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55ebb526afc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55ebb5282b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55ebb5259bab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55ebb52568bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55ebb5746420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55ebb5745de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55ebb63e7999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f86ddea8043 in start_thread nptl/pthread_create.c:442
       
      Indirect leak of 2072 byte(s) in 1 object(s) allocated from:
          #0 0x7f86deab89cf in __interceptor_malloc ../../../../src/libsanitizer/asan/asan_malloc_linux.cpp:69
          #1 0x55ebb7162891 in my_malloc /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/my_malloc.c:93
          #2 0x55ebb70e3445 in init_dynamic_array2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/array.c:73
          #3 0x55ebb70f353b in my_hash_init2 /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/hash.c:99
          #4 0x55ebb717c92f in safe_mutex_lazy_init_deadlock_detection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:168
          #5 0x55ebb717d4b3 in safe_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/mysys/thr_mutex.c:312
          #6 0x55ebb602f206 in inline_mysql_mutex_lock /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/include/mysql/psi/mysql_thread.h:750
          #7 0x55ebb603efdc in MHNSW_Context::alloc_node() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:435
          #8 0x55ebb6037650 in mhnsw_insert(TABLE*, st_key*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/vector_mhnsw.cc:1128
          #9 0x55ebb50d2c54 in TABLE::hlindexes_on_insert() /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_base.cc:9918
          #10 0x55ebb5c28778 in handler::ha_write_row(unsigned char const*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/handler.cc:8154
          #11 0x55ebb51a45cd in write_record(THD*, TABLE*, st_copy_info*, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:2322
          #12 0x55ebb519acfd in mysql_insert(THD*, TABLE_LIST*, List<Item>&, List<List<Item> >&, List<Item>&, List<Item>&, enum_duplicates, bool, select_result*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_insert.cc:1179
          #13 0x55ebb526afc7 in mysql_execute_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:4458
          #14 0x55ebb5282b89 in mysql_parse(THD*, char*, unsigned int, Parser_state*) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:7873
          #15 0x55ebb5259bab in dispatch_command(enum_server_command, THD*, char*, unsigned int, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1892
          #16 0x55ebb52568bf in do_command(THD*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_parse.cc:1405
          #17 0x55ebb5746420 in do_handle_one_connection(CONNECT*, bool) /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1448
          #18 0x55ebb5745de1 in handle_one_connection /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/sql/sql_connect.cc:1350
          #19 0x55ebb63e7999 in pfs_spawn_thread /data/bld/preview-11.7-bb-11.6-MDEV-32887-vector-asan/storage/perfschema/pfs.cc:2198
          #20 0x7f86ddea8043 in start_thread nptl/pthread_create.c:442
       
      SUMMARY: AddressSanitizer: 1061360 byte(s) leaked in 5 allocation(s).
      240927 17:34:39 [ERROR] mysqld got signal 6 ;
      Sorry, we probably made a mistake, and this is a bug.
       
      Your assistance in bug reporting will enable us to fix this for the next release.
      To report this bug, see https://mariadb.com/kb/en/reporting-bugs
       
      We will try our best to scrape up some info that will hopefully help
      diagnose the problem, but since we have already crashed, 
      something is definitely wrong and this may fail.
       
      Server version: 11.7.0-MariaDB-debug-log source revision: f20a1f4e94f5fc700959ff6b7945aa8a5fd0c307
      read_buffer_size=131072
      max_used_connections=1
      thread_count=0
      Thread pointer: 0x0
      Attempting backtrace. You can use the following information to find out
      where mysqld died. If you see no messages after this, something went
      terribly wrong...
      stack_bottom = 0x0 thread_stack 0xb00000
      sanitizer_common/sanitizer_common_interceptors.inc:4277(__interceptor_backtrace.part.0)[0x7f86dea51f31]
      mysys/stacktrace.c:215(my_print_stacktrace)[0x55ebb717375c]
      sql/signal_handler.cc:239(handle_fatal_signal)[0x55ebb5be0d60]
      libc_sigaction.c:0(__restore_rt)[0x7f86dde5afd0]
      nptl/pthread_kill.c:44(__pthread_kill_implementation)[0x7f86ddea9d3c]
      posix/raise.c:27(__GI_raise)[0x7f86dde5af32]
      stdlib/abort.c:81(__GI_abort)[0x7f86dde45472]
      sanitizer_common/sanitizer_posix_libcdep.cpp:137(__sanitizer::Abort())[0x7f86dead650f]
      sanitizer_common/sanitizer_termination.cpp:59(__sanitizer::Die())[0x7f86deae2ba1]
      lsan/lsan_common_linux.cpp:120(__lsan::HandleLeaks())[0x7f86deaea87c]
      lsan/lsan_common.cpp:732(__lsan::DoLeakCheck())[0x7f86deae8dc5]
      stdlib/cxa_finalize.c:84(__cxa_finalize)[0x7f86dde5cf77]
      crtstuff.c:0(__do_global_dtors_aux)[0x7f86dea24bc7]
      The manual page at https://mariadb.com/kb/en/how-to-produce-a-full-stack-trace-for-mariadbd/ contains
      information that should help you find out what is causing the crash.
      Writing a core file...
      Working directory at /dev/shm/var_auto_aLCR/mysqld.1/data
      Resource Limits:
      Limit                     Soft Limit           Hard Limit           Units     
      Max cpu time              unlimited            unlimited            seconds   
      Max file size             unlimited            unlimited            bytes     
      Max data size             unlimited            unlimited            bytes     
      Max stack size            8388608              unlimited            bytes     
      Max core file size        unlimited            unlimited            bytes     
      Max resident set          unlimited            unlimited            bytes     
      Max processes             514730               514730               processes 
      Max open files            65536                65536                files     
      Max locked memory         16876769280          16876769280          bytes     
      Max address space         unlimited            unlimited            bytes     
      Max file locks            unlimited            unlimited            locks     
      Max pending signals       514730               514730               signals   
      Max msgqueue size         819200               819200               bytes     
      Max nice priority         0                    0                    
      Max realtime priority     0                    0                    
      Max realtime timeout      unlimited            unlimited            us        
      Core pattern: core
       
      Kernel version: Linux version 6.1.0-13-amd64 (debian-kernel@lists.debian.org) (gcc-12 (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Debian 6.1.55-1 (2023-09-29)
      

      Attachments

        Issue Links

          Activity

            People

              serg Sergei Golubchik
              elenst Elena Stepanova
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.