in Java/src/main/java/com/example/customername/Ingest.java [101:111]
public void run(){
try {
// Displaying the thread that is running
System.out.println(Thread.currentThread().getName() + " is running");
ingestRecords();
}
catch (Exception e) {
// Throwing an exception
System.out.println(e);
}
}