littlefs - advantages & disadvantages

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
User avatar
mattyt
Posts: 410
Joined: Mon Jan 23, 2017 6:39 am

Re: littlefs - advantages & disadvantages

Post by mattyt » Mon Dec 09, 2019 1:59 am

At the November Melbourne MicroPython Meetup Damien gave a talk and demo about LittleFS.
Although there were some problems during the demo (it highlighted a bug that was fixed ten minutes later!) the explanation ought to be useful.

User avatar
MostlyHarmless
Posts: 166
Joined: Thu Nov 21, 2019 6:25 pm
Location: Pennsylvania, USA

Re: littlefs - advantages & disadvantages

Post by MostlyHarmless » Mon Dec 09, 2019 2:27 am

jedie wrote:
Sat Dec 07, 2019 9:00 am
It all seems to me that it's not finished yet.
Open Source Software is never "finished". I am contributing to one Open Source project (PostgreSQL) for 23 years now. We started by keeping the damn thing from crashing all the time. We eventually succeeded and it now is one of the most reliable data platforms available. Which leads to new problems, like that code we wrote in the late 90's and early 2000's doesn't scale well to 8-socket, 192-core machines with 2 TB of RAM. So we didn't "finish" yet.
jedie wrote:
Sat Dec 07, 2019 9:00 am
I still shy away from the effort to compile the firmware myself.
Have you tried? What is the worst thing that can happen? That you run into a problem and have to ask here for help? :roll:

Come on, give it a try. Adding your first frozen module to the build will make you feel really good. Trust me. 8-)


I know I am evil, Jan

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: littlefs - advantages & disadvantages

Post by pythoncoder » Mon Dec 09, 2019 9:53 am

jedie wrote:
Sat Dec 07, 2019 9:00 am
...
It all seems to me that it's not finished yet...
That is a simple statement of fact. Littlefs on ESP8266 is not yet a part of a release build. Those of us who are using it are living life at the "bleeding edge": some complication is to be expected. In time it will doubtless be formally released and it will "just work".

As for building firmware, the ESP8266 hardware is severely resource constrained. If you want to run substantial amounts of code on it, there is no option other than to acquire the skills to build firmware and freeze Python code.
Peter Hinch
Index to my micropython libraries.


User avatar
jimmo
Posts: 2754
Joined: Tue Aug 08, 2017 1:57 am
Location: Sydney, Australia
Contact:

Re: littlefs - advantages & disadvantages

Post by jimmo » Wed Dec 11, 2019 3:04 am

I think v1 support is there mostly for people who wanted to migrate existing / devices that were using v1 for whatever purpose or had some specific reason for using it. But that's why support for it isn't compiled in by default.

jedie
Posts: 252
Joined: Fri Jan 29, 2016 12:32 pm
Contact:

Re: littlefs - advantages & disadvantages

Post by jedie » Fri Dec 20, 2019 5:36 pm

Current, official release esp8266-20191220-v1.12.bin from http://micropython.org/download#esp8266 has still no littlefs2 support:

Code: Select all

MicroPython v1.12 on 2019-12-20; ESP module with ESP8266
Type "help()" for more information.
>>> import os
>>> dir(os)
['__class__', '__name__', 'remove', 'VfsFat', 'chdir', 'dupterm', 'dupterm_notify', 'getcwd', 'ilistdir', 'listdir', 'mkdir', 'mount', 'rename', 'rmdir', 'stat', 'statvfs', 'umount', 'uname', 'urandom']
:cry:

The release note says:
The esp8266 port has switched to use per-board configurations and builds, as well as the new frozen manifest feature. It also has optional littlefs support (requires a separate build).
Why?!?

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: littlefs - advantages & disadvantages

Post by pythoncoder » Sat Dec 21, 2019 6:23 am

The release notes state
Support for littlefs filesystems is added through the MicroPython VFS interface, and it works on the unix, stm32, esp8266 and esp32 ports.
I tested this on STM with a standard build of firmware built from source and also tried it on ESP8266 a few days ago with a special build.

But standard V1.12 release firmware indeed doesn't support it:

Code: Select all

MPY: soft reboot
MicroPython v1.12 on 2019-12-20; ESP module with ESP8266
Type "help()" for more information.
>>> import os
>>> dir(os)
['__class__', '__name__', 'remove', 'VfsFat', 'chdir', 'dupterm', 'dupterm_notify', 'getcwd', 'ilistdir', 'listdir', 'mkdir', 'mount', 'rename', 'rmdir', 'stat', 'statvfs', 'umount', 'uname', 'urandom']
>>> 
Odd.
Peter Hinch
Index to my micropython libraries.

jedie
Posts: 252
Joined: Fri Jan 29, 2016 12:32 pm
Contact:

Re: littlefs - advantages & disadvantages

Post by jedie » Sat Dec 21, 2019 9:00 am

Think it must be enabled by config change. Have you done this?
What I not understand: why it it not enabled by default and fat deactivated. Because it saves RAM and this ist very helpfully on ESP8266.

User avatar
yeti
Posts: 11
Joined: Fri Jul 03, 2015 1:10 am

Re: littlefs - advantages & disadvantages

Post by yeti » Sat Dec 21, 2019 12:31 pm

I tried two custom builds (FAT+LFS2, LFS2-only) and both build without problems.
Nobody ever expects the spani... eeeeh... something different!

The FAT+LFS2 build comes up with the typical contents in a FATFS ('mkfs' it manually to LFS2), the LFS2-only build looks like coming up with an unformatted block device. This aspect needs a closer look. And even if keeping both FSes, there should be a way to select LFS2 to be initialised and pre-filled ('boot.py') by default. Or am I just overlooking the right knob for this in the config?

It really is a noticeable gain in RAM (LFS2-only v1.12 build on 'NodeMCU Amica' (or clone)):

Code: Select all

>>> import gc
>>> gc.mem_free()
36704
>>> _
Great!
The less than 16k free days are keeping to drift away more and more:

Code: Select all

MicroPython v1.5-4-g9ebd4da on 2015-10-22; ESP module with ESP8266
Type "help()" for more information.
>>> import gc
>>> gc.mem_free()
15760
>>> _
I have a natural instinct for science. — D.J. Trump
"Don't we all wait for SOMETHING-ELSE-1.0?" — yeti
"Stay OmmmMMMmmmPtimistic!" — yeti

jedie
Posts: 252
Joined: Fri Jan 29, 2016 12:32 pm
Contact:

Re: littlefs - advantages & disadvantages

Post by jedie » Sat Dec 21, 2019 1:55 pm

yeti wrote:
Sat Dec 21, 2019 12:31 pm
It really is a noticeable gain in RAM (LFS2-only v1.12 build on 'NodeMCU Amica' (or clone)):

Code: Select all

>>> import gc
>>> gc.mem_free()
36704
>>> _
A empty ESP8266 with official build:

Code: Select all

MicroPython v1.12 on 2019-12-20; ESP module with ESP8266
Type "help()" for more information.
>>> import gc
>>> gc.mem_free()
30384
Around 6KB more free RAM. Sounds good.
It was always talked about saving 4KB.

Post Reply