@fdeborde - Whenever an sdc.log file reaches 256MB:
- sdc.log fille be sdc-1.log.
- New sdc.log file will be created.
- if new file reaches to 256MB then sdc.log will be renamed with sdc-2.log and new sdc.log will be created.
You would find the latest logs in the sdc.log then sdc-9.log then sdc-8.log. Here is the last log entry on all the files which explains the same.
2023-04-03 21:18:50,445 [user:] [pipeline:] [runner:] [thread:main] [stage:] DEBUG ModelConverterContextImpl - resolveProperty [collection type; class java.util.List, contains [simple type, class com.streamsets.datacollector.restapi.rbean.lang.BaseMsg]]
2023-04-03 21:18:51,771 [user:] [pipeline:] [runner:] [thread:main] [stage:] DEBUG ModelResolver - Can't check class [simple type, class java.lang.Object], java.lang.Object
#tail -n1 sdc-3.log
2023-04-03 21:18:51,996 [user:] [pipeline:] [runner:] [thread:main] [stage:] DEBUG ModelConverterContextImpl - resolve [simple type, class com.streamsets.datacollector.restapi.bean.AntennaDoctorMessageJson]
2023-04-03 21:18:52,238 [user:] [pipeline:] [runner:] [thread:main] [stage:] DEBUG ModelConverterContextImpl - resolveProperty [collection type; class java.util.List, contains [simple type, class com.streamsets.datacollector.restapi.rbean.lang.BaseMsg]]
2023-04-03 22:27:57,211 [user:*?] [pipeline:-] [runner:] [thread:managerExecutor-pool-3-thread-1] [stage:] DEBUG StandaloneAndClusterPipelineManager - Triggering previewer cache cleanup
It is happening because of the SizeBasedTriggeringPolicy policy and max files are set to 10.
Hope this helps.
Thank you - AkshayJ