From 404745963d3950c935bae15fd8f0ca0434193412 Mon Sep 17 00:00:00 2001
From: Costin Grigoras <costin.grigoras@cern.ch>
Date: Mon, 24 Feb 2025 10:29:54 +0000
Subject: [PATCH] Update jdl_syntax.md

---
 docs/jdl_syntax.md | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/docs/jdl_syntax.md b/docs/jdl_syntax.md
index 0ad3388..788f0d8 100644
--- a/docs/jdl_syntax.md
+++ b/docs/jdl_syntax.md
@@ -39,7 +39,7 @@ Different strategies have different optional or mandatory fields.
 
 ### SplitMaxInputFileNumber
 ``` 
-    Sets a maximum limit for number of inputdata files per subjob
+    Sets a maximum limit for number of inputdata files per subjob.
 
     usage: SplitMaxInputFileNumber="[number]"
     
@@ -49,7 +49,7 @@ Different strategies have different optional or mandatory fields.
 ---
 ### SplitMaxInputFileSize
 ``` 
-    Sets a maximum limit for combined size of inputdata files per subjob
+    Sets a maximum limit for combined size of inputdata files per subjob. The value can be passed in bytes or as a human-readable value (i.e. "7GB").
 
     usage: SplitMaxInputFileSize="[number]"
     
@@ -61,11 +61,21 @@ Different strategies have different optional or mandatory fields.
 ### SplitMinInputFileNumber
 ``` 
     Sets a minimum limit for number of inputdata files per subjob, used by storage element split
-    to merge subjobs with less inputdata files than the limit 
+    to merge subjobs with less inputdata files than the limit. The default is 20% of the `SplitMaxInputFileNumber` value.
 
     usage: SplitMinInputFileNumber="[number]"
     
     
+```
+
+---
+### SplitMinInputFileSize
+``` 
+    Sets a minimum limit for combined size of inputdata files per subjob. The value can be passed in bytes or as a human-readable value (i.e. "7GB"). The default is 20% of the `SplitMaxInputFileSize`. Only used in "se" splitting strategy.
+
+    usage: SplitMaxInputFileSize="[number]"
+    
+    
 ```
 
 ---
-- 
GitLab