Not that I know of. I wrote a script to check the status and sleep until done. Like this:
SOLRURL='http://solr-master.prod2.cloud.cheggnet.com:6090/solr/textbooks/dataimport' while : ; do echo `date` checking whether Solr indexing is finished curl -s "${SOLRURL}" | fgrep '"status":"idle"' > /dev/null [ $? -ne 0 ] || break sleep 300 done echo Solr indexing is finished wunder Walter Underwood wun...@wunderwood.org http://observer.wunderwood.org/ (my blog) > On Dec 8, 2015, at 5:37 PM, Brian Narsi <bnars...@gmail.com> wrote: > > Is there a way to receive notifications when a Data Import Handler finishes > up and whether it succeeded or failed. (typically runs about an hour) > > Thanks