This attached patch fix the issue by removing the max recursion limitation in the usage of Perl's Storable module in OAR.
--- ResourceTree.pm.distrib 2019-10-02 22:49:09.541077657 +0200 +++ ResourceTree.pm 2019-10-02 22:49:57.449683280 +0200 @@ -7,6 +7,9 @@ use Storable qw(dclone); #use Time::HiRes qw(gettimeofday); +$Storable::recursion_limit=-1; +$Storable::recursion_limit_hash=-1; + ############################################################################### # RESOURCE TREE MANAGEMENT # ###############################################################################