Created a seperated issue from #211 .
In short, esp_littlefs's sdmmc speed is pretty slow, and from my simple test the sequential writing speed at 40Mhz 4 line sdmmc mode is 48 KiB/s.
In conparison, FatFS's sequential writing speed is 13.76 MiB/s, hundreds of times of esp_littlefs's speed.
I do all these tests on a U3 (UHS Speed Class 3) SD Card so it's unlikely to be the bottleneck, the ASSSD Benchmark score is shown below:

LittleFS's configuration:
CONFIG_LITTLEFS_SDMMC_SUPPORT=y
CONFIG_LITTLEFS_MAX_PARTITIONS=3
CONFIG_LITTLEFS_PAGE_SIZE=512
CONFIG_LITTLEFS_OBJ_NAME_LEN=255
CONFIG_LITTLEFS_READ_SIZE=128
CONFIG_LITTLEFS_WRITE_SIZE=128
CONFIG_LITTLEFS_LOOKAHEAD_SIZE=512
CONFIG_LITTLEFS_CACHE_SIZE=512
CONFIG_LITTLEFS_BLOCK_CYCLES=512
CONFIG_LITTLEFS_USE_MTIME=y
# CONFIG_LITTLEFS_USE_ONLY_HASH is not set
CONFIG_LITTLEFS_HUMAN_READABLE=y
CONFIG_LITTLEFS_MTIME_USE_SECONDS=y
# CONFIG_LITTLEFS_MTIME_USE_NONCE is not set
# CONFIG_LITTLEFS_SPIFFS_COMPAT is not set
# CONFIG_LITTLEFS_FLUSH_FILE_EVERY_WRITE is not set
CONFIG_LITTLEFS_FCNTL_GET_PATH=y
CONFIG_LITTLEFS_FCNTL_F_GETPATH_VALUE=20
CONFIG_LITTLEFS_MULTIVERSION=y
CONFIG_LITTLEFS_DISK_VERSION_MOST_RECENT=y
# CONFIG_LITTLEFS_DISK_VERSION_2_1 is not set
# CONFIG_LITTLEFS_DISK_VERSION_2_0 is not set
# CONFIG_LITTLEFS_MALLOC_STRATEGY_DISABLE is not set
CONFIG_LITTLEFS_MALLOC_STRATEGY_DEFAULT=y
# CONFIG_LITTLEFS_MALLOC_STRATEGY_INTERNAL is not set
CONFIG_LITTLEFS_ASSERTS=y
Created a seperated issue from #211 .
In short, esp_littlefs's sdmmc speed is pretty slow, and from my simple test the sequential writing speed at 40Mhz 4 line sdmmc mode is 48 KiB/s.
In conparison, FatFS's sequential writing speed is 13.76 MiB/s, hundreds of times of esp_littlefs's speed.
I do all these tests on a U3 (UHS Speed Class 3) SD Card so it's unlikely to be the bottleneck, the ASSSD Benchmark score is shown below:
LittleFS's configuration: