โŒ

Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

How to Manage Multiple Cron Job Executions

16 March 2025 at 06:13

Cron jobs are a fundamental part of automating tasks in Unix-based systems. However, one common problem with cron jobs is multiple executions, where overlapping job runs can cause serious issues like data corruption, race conditions, or unexpected system load.

In this blog, weโ€™ll explore why multiple executions happen, the potential risks, and how flock provides an elegant solution to ensure that a cron job runs only once at a time.

The Problem: Multiple Executions of Cron Jobs

Cron jobs are scheduled to run at fixed intervals, but sometimes a new job instance starts before the previous one finishes.

This can happen due to

  • Long-running jobs: If a cron job takes longer than its interval, a new instance starts while the old one is still running.
  • System slowdowns: High CPU or memory usage can delay job execution, leading to overlapping runs.
  • Simultaneous executions across servers: In a distributed system, multiple servers might execute the same cron job, causing duplication.

Example of a Problematic Cron Job

Letโ€™s say we have the following cron job that runs every minute:

* * * * * /path/to/script.sh

If script.sh takes more than a minute to execute, a second instance will start before the first one finishes.

This can lead to:

โœ… Duplicate database writes โ†’ Inconsistent data

โœ… Conflicts in file processing โ†’ Corrupt files

โœ… Overloaded system resources โ†’ Performance degradation

Real-World Example

Imagine a job that processes user invoices and sends emails

* * * * * /usr/bin/python3 /home/user/process_invoices.py

If the script takes longer than a minute to complete, multiple instances might start running, causing

  1. Users to receive multiple invoices.
  2. The database to get inconsistent updates.
  3. Increased server load due to excessive email sending.

The Solution: Using flock to Prevent Multiple Executions

flock is a Linux utility that manages file locks to ensure that only one instance of a process runs at a time. It works by locking a specific file, preventing other processes from acquiring the same lock.

Using flock in a Cron Job

Modify the cron job as follows

* * * * * /usr/bin/flock -n /tmp/myjob.lock /path/to/script.sh

How It Works

  • flock -n /tmp/myjob.lock โ†’ Tries to acquire a lock on /tmp/myjob.lock.
  • If the lock is available, the script runs.
  • If the lock is already held (i.e., another instance is running), flock prevents the new instance from starting.
  • -n (non-blocking) ensures that the job doesnโ€™t wait for the lock and simply exits if it cannot acquire it.

This guarantees that only one instance of the job runs at a time.

Verifying the Solution

You can test the lock by manually running the script with flock

/usr/bin/flock -n /tmp/myjob.lock /bin/bash -c 'echo "Running job..."; sleep 30'

Open another terminal and try to run the same command. Youโ€™ll see that the second attempt exits immediately because the lock is already acquired.

Preventing multiple executions of cron jobs is essential for maintaining data consistency, system stability, and efficiency. By using flock, you can easily enforce single execution without complex logic.

โœ… Simple & efficient solution. โœ… No external dependencies required. โœ… Works seamlessly with cron jobs.

So next time you set up a cron job, add flock and sleep peacefully knowing your tasks wonโ€™t collide. ๐Ÿš€

Fish Shell:[TBD]

By: Sakthivel
10 August 2024 at 14:52

The Fish shell (short for Friendly Interactive Shell) is a Unix shell that is designed to be user-friendly, interactive, and feature-rich. Itโ€™s an alternative to more traditional shells like Bash or Zsh, and it comes with several features that aim to improve the command-line experience. Hereโ€™s a brief overview:

Key Features of Fish Shell:

  1. Autosuggestions: Fish provides real-time, context-aware command suggestions as you type, helping you to quickly complete commands based on your history and available commands.
  2. Syntax Highlighting: Fish highlights the syntax of your commands as you type, making it easier to spot errors before you run a command.
  3. Smart Tab Completions: The shell offers intelligent tab completions for commands, options, and file paths, often providing descriptions for each option.
  4. User-Friendly Scripting: Fish scripts are more readable and easier to write than those in other shells due to its simplified syntax.
  5. Web-Based Configuration: Fish includes a web-based configuration tool accessible via the command fish_config. This tool allows users to configure prompts, functions, variables, and more through a web interface.
  6. No Configuration Needed: Fish works out-of-the-box without needing configuration files like .bashrc or .zshrc, although it does allow custom configurations if desired.
  7. Universal Variables: Variables in Fish can be scoped universally (across all sessions) or locally (to the current session), allowing for flexible environment management.

Installing Fish Shell:

  • On Debian/Ubuntu: sudo apt-get install fish
  • On Fedora: sudo dnf install fish
  • On macOS (via Homebrew): brew install fish

Switching to Fish:

After installation, you can switch to Fish temporarily by typing fish in your current shell. To make Fish your default shell, use the following command:

chsh -s /usr/bin/fish

Configuration:

You can start configuring Fish by running the following command:

fish_config

This opens a web interface in your default browser where you can customize your prompt, functions, and other settings.

Fish is highly regarded for its user-centric approach, making it a popular choice among developers and command-line enthusiasts.

Commands:

  1. dirh:
    • Description: This command displays the directory history in Fish, showing the list of directories you have visited during your shell session.
    • Usage: Typing dirh will give you a list of directories you have navigated to using cd.
  2. prevd:
    • Description: This command allows you to go back to the previous directory in your history.
    • Usage: Simply type prevd to move to the last directory you were in. Itโ€™s an alternative to using cd -.
  3. nextd:
    • Description: This command is used to move forward to the next directory in the directory history.
    • Usage: Type nextd to return to a directory you previously visited after using prevd.
  4. cdh:
    • Description: The cdh command in Fish is shorthand for โ€œchange directory history.โ€ It allows you to quickly change to a directory from your history by its index.
    • Usage: Running cdh N (where N is the index number) will take you directly to that directory in your history.
  5. math:
    • Description: The math command allows you to perform mathematical operations directly in the shell.
    • Usage: For example, math "5 + 10 * 2" will output 25. Itโ€™s useful for quick calculations without leaving the shell.


Key Bindings:

  1. Ctrl+F:
    • Description: This key binding moves the cursor forward one character in the command line.
    • Usage: Use it to navigate through your command without deleting anything.
  2. Ctrl+U:
    • Description: This command clears the text from the cursor to the beginning of the line.
    • Usage: If youโ€™ve typed a long command and want to quickly erase everything before the cursor, Ctrl+U will do that.
  3. Alt+F:
    • Description: Moves the cursor forward one word at a time in the command line.
    • Usage: Use it to quickly skip over words when editing a command.
  4. Alt+โ† (Alt + Left Arrow):
    • Description: This moves the cursor to the beginning of the previous word.
    • Usage: Similar to Alt+F, but in the opposite direction, allowing you to move backward one word at a time.
  5. Alt+โ†’ (Alt + Right Arrow):
    • Description: Moves the cursor to the end of the current or next word.
    • Usage: Use it to quickly move the cursor forward to the end of a word.
  6. Shift+โ†’ (Shift + Right Arrow):
    • Description: This key binding selects text from the current cursor position to the right, one character at a time.
    • Usage: Helpful for selecting text in a command to cut, copy, or replace.
  7. Shift+โ† (Shift + Left Arrow):
    • Description: Selects text from the current cursor position to the left, one character at a time.
    • Usage: Like Shift+โ†’, but for selecting text to the left.
  8. Ctrl+W:
    • Description: Deletes the word before the cursor.
    • Usage: If you make a mistake and want to remove the last word quickly, Ctrl+W will do it.
  9. Alt+L:
    • Description: Lowercases the word from the cursor to the end of the word.
    • Usage: If youโ€™ve accidentally typed something in uppercase and want to quickly convert it, use Alt+L.
  10. Alt+H:
    • Description: This brings up the help documentation in Fish, typically in the form of a web page.
    • Usage: Use Alt+H if you need quick access to Fish shell help.
  11. Alt+P:
    • Description: Moves back through your command history, searching for a command that matches what youโ€™ve typed so far.
    • Usage: Useful for finding and reusing previous commands.
  12. Alt+S:
    • Description: This key binding toggles sorting of suggestions in the Fish shell.
    • Usage: Use it when you want to change how Fish autocompletion suggestions are presented (alphabetical vs. frequency-based, for example).

Understanding the Commands and Key Bindings in Context:

  • Navigation: Commands like dirh, prevd, nextd, and cdh help you efficiently navigate through your directory history, making it easier to move between frequently used folders without typing out the full path.
  • Editing: Key bindings like Ctrl+F, Ctrl+U, Alt+F, Alt+โ†, Alt+โ†’, and Ctrl+W allow you to quickly and effectively edit commands in the shell. They are essential for efficient command-line work, allowing you to correct errors and move through your command line swiftly.
  • Selection and Text Manipulation: The Shift + arrow key bindings and Alt+L help you select and manipulate text within the command line, which is useful when dealing with complex commands.
  • Utility: Ctrl+W, Alt+P, and Alt+S offer utility functions like deleting words, searching history, and toggling sorting modes for completions.

These tools and shortcuts can greatly enhance your productivity and command-line efficiency in the Fish shell.


In the context of command-line environments like the Fish shell, โ€œI,โ€ โ€œN,โ€ and โ€œVโ€ are not directly applicable as modes (unlike in text editors like Vim). However, if youโ€™re referring to modes in a text editor like Vim or a Vim-like environment, hereโ€™s a breakdown of what these modes represent:

Vim Modes Overview:

Vim, a powerful text editor, operates in different modes that dictate how you interact with text. The primary modes are:

  1. Normal Mode (N):
    • Description: This is the default mode when you open Vim. In Normal mode, you can navigate through text, delete text, copy and paste, and perform various other text manipulations.
    • Key Actions:
      • h, j, k, l: Move the cursor left, down, up, and right, respectively.
      • dd: Delete the current line.
      • yy: Yank (copy) the current line.
      • p: Paste the yanked text after the cursor.
      • u: Undo the last action.
    • How to Enter: Press Esc if youโ€™re in another mode to return to Normal mode.
  2. Insert Mode (I):
    • Description: In Insert mode, you can insert text into the document. This mode is similar to typing in a regular text editor.
    • Key Actions:
      • i: Enter Insert mode before the cursor.
      • I: Enter Insert mode at the beginning of the current line.
      • a: Enter Insert mode after the cursor.
      • A: Enter Insert mode at the end of the current line.
      • o: Open a new line below the current line and enter Insert mode.
      • O: Open a new line above the current line and enter Insert mode.
    • How to Enter: Press i, I, a, A, o, or O from Normal mode.
  3. Visual Mode (V):
    • Description: Visual mode allows you to select text, which can then be manipulated (copied, deleted, replaced, etc.).
    • Key Actions:
      • v: Enter Visual mode, where you can select text character by character.
      • V: Enter Visual Line mode, which selects entire lines.
      • Ctrl+v: Enter Visual Block mode, allowing you to select a rectangular block of text.
      • y: Yank (copy) the selected text.
      • d: Delete the selected text.
      • >, <: Indent or un-indent the selected text.
    • How to Enter: Press v for character-wise selection, V for line-wise selection, or Ctrl+v for block-wise selection.

How These Modes Relate in a Shell Environment:

While the Fish shell doesnโ€™t have โ€œmodesโ€ in the same sense as Vim, understanding Vimโ€™s modes can be beneficial when using text editors within the shell or using tools like vi, vim, or nano directly from the terminal.

Practical Example in Vim:

Imagine you are editing a file in Vim:

  • Normal Mode (N): You start in Normal mode. You can navigate through your text without altering it. If you want to move to a specific line, you might press gg to go to the beginning or G to go to the end of the document.
  • Insert Mode (I): To begin editing text, you would press i to enter Insert mode. Now you can type as usual.
  • Visual Mode (V): If you need to copy or delete a block of text, youโ€™d enter Visual mode by pressing v or V, select the text, and then perform the action (e.g., y to copy or d to delete).

Understanding these modes helps you effectively navigate and edit text in Vim, which is a common tool used in Unix-like environments, often accessed via a shell like Fish.

Learning Fundamentals of Linux from scratch day-2 : Basic shell commands

6 February 2024 at 05:15

Today, in session 2, on Kaniyam- https://kaniyam.com/linux-course-feb-2024/โ€‚I learnt basic shell commands.

ls #prints all files and folders (not hidden)
ls -a #prints hidden files
ls -l #long listing
ls -al #long listing with hidden files
ls -h #human readable
ls -lh #long listing + human readable
ls -lS #sorted
ls -lt #most recently modified file at the top
ls -R #recursive listing
date --date="3 years ago"
cat filename.txt #view file
cat > sample.txt #concatenate to file, end with ctrl+D
cat sample1.txt sample1.txt sample2.txt #cat can be used to concatenate and display multiple files
history | head #displays first ten commands; only 1k stored)
history | tail #displays last ten commands from the 1k stored
history -d 1459 #deletes the command by event number from history
rm file.txt #removes this file
rm -i file.txt # asks for an option to confirm (interactive)
rm -r directory1/ #recursively deletes directory and all its contents
rm *.txt #deletes all files with that extension (*- all)
man ls #man pages for a given command
man history

Learning Fundamentals of Linux from scratch day-2 : Basic shell commands

6 February 2024 at 05:15

Today, in session 2, on Kaniyam- https://kaniyam.com/linux-course-feb-2024/โ€‚I learnt basic shell commands.

ls #prints all files and folders (not hidden)
ls -a #prints hidden files
ls -l #long listing
ls -al #long listing with hidden files
ls -h #human readable
ls -lh #long listing + human readable
ls -lS #sorted
ls -lt #most recently modified file at the top
ls -R #recursive listing
date --date="3 years ago"
cat filename.txt #view file
cat > sample.txt #concatenate to file, end with ctrl+D
cat sample1.txt sample1.txt sample2.txt #cat can be used to concatenate and display multiple files
history | head #displays first ten commands; only 1k stored)
history | tail #displays last ten commands from the 1k stored
history -d 1459 #deletes the command by event number from history
rm file.txt #removes this file
rm -i file.txt # asks for an option to confirm (interactive)
rm -r directory1/ #recursively deletes directory and all its contents
rm *.txt #deletes all files with that extension (*- all)
man ls #man pages for a given command
man history
โŒ
โŒ