If I use a large task configuration my Kafka Source Connector epics2kafka starts, but no tasks are created. Using a smaller configuration appears to correct the problem. If I move my configuration into a file and pass just the file path along for the task to use, that also works (though no longer scales to distributed nodes as now relying on a local file!). It seems I'm running into a memory limit or internal REST service Post size constraint, or connect topic constraint of some kind. The weird thing is there doesn't appear to be any errors logged. The connector status is "RUNNING", but the task status is an empty array. Using print debug statements I can see the taskConfigs() method always completes, but if using a large config the start() method of the Connect task never is called. The large taskConfigs is 25,500 lines of JSON (about 2.5MB), which is added into the taskConfigs Map.
Similar (but different): Kafka Connector's task list is empty
I'm using version 3.1.0 of Kafka, so I assume the above mentioned issue is different (looks like that issue was due to URL encoding of internal REST Post request).