Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Some Scripts suddenly stopping without ending for some days

avatar
Contributor

Some Scripts suddenly stopping without ending for some days

4 REPLIES 4

avatar
Master Collaborator

Hi @Choolake 

Thanks for bringing up the issue. To better assist you, could you please provide more details about the specific scripts you need help with?

avatar
Community Manager

@Choolake, if you still have concerns, could you please provide the information that @shehbazk has requested?



Regards,

Vidya Sargur,
Community Manager


Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.
Learn more about the Cloudera Community:

avatar
Contributor

This is the bash script that we are using to load the data in to HADOOP.

but some days it's stopped without ending.no any special reason for this and no any modifications

 

Thank you!

avatar
Master Collaborator

Hi @Choolake 

When a bash script that loads data into Hadoop stops unexpectedly without completing and without any apparent reason or modification, it can be challenging to identify the root cause.

If your script outputs any logs, review them to identify at what point the script stopped. This can help pinpoint the problematic step or external dependency causing the issue.

Enable verbose logging in the script to capture more details:

# set -x

This will show each command as it is executed and could help trace where it stops.