Neue Synology NC Instanz - Uploadperformance kleiner Dateien unfassbar schlecht

das könnte mit der DB zusammenhängen. Schaue im NC es Fehler gibt… bei mir hat max_connections = 250 gegen Verbindungsfehler geholfen.

speziell

innodb_flush_log_at_trx_commit = 2
innodb_flush_log_at_timeout = 5

sind meiner Erfahrung nach interessant, vor Allem wenn die DB auf einer magnetischen Disks liegt (Logs und DB file werden seltener geschrieben - bei Ausfall könnten Daten einer Sekunde verloren gehen…)

meine MariaDB config:

my.cnf

    [server]
    skip-name-resolve
    innodb_buffer_pool_size = 256M
    innodb_buffer_pool_instances = 1
    innodb_flush_log_at_trx_commit = 2
    innodb_flush_log_at_timeout = 5
    innodb_log_buffer_size = 32M
    innodb_max_dirty_pages_pct = 75
    query_cache_type = 1
    query_cache_limit = 2M
    query_cache_min_res_unit = 2k
    query_cache_size = 16M #was 64M, tuning primer said mybe less
    tmp_table_size= 64M
    max_heap_table_size= 64M
    slow-query-log = 1
    slow-query-log-file = /var/log/mysql/slow.log
    long_query_time = 1
    max_connections = 250
    join_buffer_size = 1M
    key_buffer = 64M
    [client]
    default-character-set = utf8mb4
    [mysqld]
    character-set-server = utf8mb4
    collation-server = utf8mb4_general_ci
    transaction_isolation = READ-COMMITTED
    binlog_format = ROW
    innodb_large_prefix=on
    innodb_file_format=barracuda
    innodb_file_per_table=1
    default_authentication_plugin=mysql_native_password
    max_binlog_size = 134217728
    expire_logs_days = 3