In our system we have charts with many nesting levels and thus name are sometimes longer then 100.
currently these charts are failing to load in microbean.
In the current microbean implementation jtar is used for parsing chart tar files.
jtar has limitation as it reflecting old tart format where entry names were limited to 100 chars.
see kamranzafar/jtar#9.
I have tested with apache common compress TarArchiveInputStream which support the GNU tar format and its worked.
migration was easy as same API are exposed both by the new implementation and existing implementation.
Appreciate your support on that!