A única solução que posso usar é usar subprocessos e arquivos:
TEMP_FILE='/tmp/some_file.txt'
function load_table() {
if [ $# -lt 2 ]; then
printf "1" > "${TEMP_FILE}"
return 1
fi
local param1="$1"
local table_full_path="$2"
local exit_code
# Stream data
sstableloader -d "${param1}" "${table_full_path}" >> "${TEMP_FILE}"
exit_code=$?
printf "\n%s" "${exit_code}" >> "${TEMP_FILE}"
}
function is_process_running() {
if [ $# -eq 0 ]; then
return 1
fi
local process_id="$1"
ps aux | sed -r 's/[ ]+/ /g' | cut -d' ' -f2 | grep -q "${process_id}"
return $?
}
function exceptions_count() {
local count=$(tail -10 "${TEMP_FILE}" | grep -c "Exception")
return $count
}
…
load_table "$3" "${tablepathfull}" &
# Given you have one subprocess only.. get the pid of the first subprocess in the list
job_pids=( $(jobs -p) )
load_table_job_pid=${job_pids[0]}
while is_process_running "${load_table_job_pid}" && exceptions_count -eq 0; do
sleep 5
done
exit_code=0
if is_process_running "${load_table_job_pid}"; then
local load_table_job_gid=$(ps x -o "%p %r %y %x %c " | sed -r -e 's/[ ]+/ /g' -e 's/^[ ]+//g' | grep -E "^${load_table_job_pid} " | cut -d' ' -f2)
kill -TERM -$load_table_job_gid >/dev/null 2>&1
exit_code=1
else
exit_code=$(tail -1 "${TEMP_FILE}")
fi
rm -f "${TEMP_FILE}"
# Your code
# On success, move data to target dir
if [ $exit_code -ne 0 ]; then
echo "Error: Table failed - $tablepathfull"
else
echo "Table OK - $tablepathfull"
trgtdir="$2/$hostname/$keyspacename/$typename/$timestamp/$keyspacename/$tablename"
mkdir -p $trgtdir
mv $tablepathfull/* $trgtdir
rmdir $tablepathfull
fi
Você pode melhorar o código adicionando uma contagem de novas tentativas ou algo assim.