Frequently used M_* Commands in Abinito:
Abinito provides various m_* commands for performing data manipulation. These commands will be useful for debugging the data problem. Abinito is mostly used in Unix environment all these M_* commands can be used from the command prompt.
Purpose:
This command is used to print information about data records, their record format, and the evaluations of expressions. This command can be used to check whether data file is good and is according to dml specified. These commands are very useful to debug the output and reject files directly from the Unix machines without using the Abinitio GDE. m_dump command without any options will not be useful for a huge file, instead using the –start and –end option to got to a specific record will be useful.
Syntax:
m_dump <metadata/DML Location> <data/Data file name>[action]
Examples:
This command displays all the records from test1.dat file:
$m_dump /export/home/rrobert/test1.dml /export/home/rrobert/test1.dat|more
This command displays records starting from 5th row to 9th row in xyz.dat file:
m_eval:
Purpose:
This command is used to evaluate DML expressions and displays their derived types. This command can be executed from Shell or used inside the GDE for validation purpose.
Syntax:
m_eval [ option ... ] expression [ expression ...
Examples:
This command subtracts 10 days from the current date and represents the result in a specific date format:
This casts an integer to a decimal:
$ m_eval '((decimal(5)) 42)' => "ooo42"
m_wc:
Purpose:
This command is used to count number of records from one or more data files/multi files.
Syntax:
m_wc [ -no-commas ] metadata data
Examples:
$ m_wc myrecfmt.dml mfs/mydata.dat
209,7152 4,297,064,448 mfs/mydata.dat
m_env:
Purpose:
This command is used to obtain all the Ab Initio configuration variable settings in an environment. This command will be useful to get Abi environment variable values.
Syntax:
m_env [-describe]
Examples:
m_env
Current Configuration Variable Settings for Ab Initio:
Variable Set Value or Resulting Action
-------------------- --- --------------------------------------------AB_AIR_BRANCH <unset>
AB_WORK_DIR * /var (from environment)
m_kill:
Purpose:
This command is used to kill a running job. The command blocks until it can verify that the job is killed or after AB_TIMEOUT seconds, whichever comes first. This command will be useful incases when jobs were started accidentally.
Syntax:
m_kill [ signal] {jobname.rec | jobname }
signal – can have three values –TERM –KILL and –QUIT
-TERM Kills the job and triggers a rollback. This is the default.
-KILL Kills the job immediately without triggering a rollback. You must issue the command m_rollback later.
-QUIT Kills the job immediately without triggering a rollback and forces the Xmp run process to dump core (system limits permitting).
Examples:
m_kill -TERM f_so_line_work_F2CMART.rec
Output:
Failed opening recovery file /a1004/home/test/LVLTdw/f2c/bin/f_so_line_work_F2CMART.rec: No such file or directory
[1] + Done(4) nohup f_so_line_work_F2CMART.ksh &
m_rollback:
Purpose:
This command is used perform a manual rollback incase of any Abinito job failure. It may not always be possible for the Co>Operating System to restore the system to an earlier state. For example, a failure could occur because a host or its native operating system crashed. In this case, it is not possible to cleanly shut down flow or file operations, or to roll back file operations performed in the current phase. In fact, it is likely that stray files (intermediate temporaries) will be left lying around.
Syntax:
m_rollback [-d] [-i] [-h] [-kill] recoveryfile
Options:
-d Delete the job along with its recovery file and any log files it created.
-i Display the state of the job and prompt the user whether the job should be deleted.
-kill causes m_rollback to attempt to kill the job.
If the -i option is not used, jobs that have reached their first checkpoint will be rolled back to the checkpoint. Jobs that do not include checkpoints or that did not reach their first checkpoint will be deleted. The default behavior of m_rollback when called on a running job is to display a warning message then exit.
Examples:
ABINITIO: Job closed and recovery file deleted
Working with Multifiles:
Ab Initio multifiles are parallel files composed of individual files, typically located on different disks and usually, but not necessarily, on different systems. Multifile is partition of single individual file. The multifile organizes the partitions into a single entity, and enables you to manage them as you would a serial file. An Ab Initio multifile is a single, virtual file; you can reference all the partitions of the multifile at once by referencing its control partition.
Following are the steps to create a multifile directory for an application.
- Create the data and partitions directory to keep the data and control files.
- Execute the m_mkfs command from the data directory to create the multifile system.
m_mkfs
Purpose:
This command is used to create a multifile system. Multifile system consists of Control file directory along with the partitions directory. Control file resides in the $APPL_DATA/mdata directory and data files in partitions directories. Depending upon number of partitions multifile system will be created.
Syntax:
m_mkfs [ options ] control_url partition_url [ partition_url ... ]
Following are the m_mkfs options:
Examples:
This command will create a multifile system with 5 way partitions.
m_mkfs $/EXPORT/HOME/TEST/DATA/mdata \
$/EXPORT/HOME/TEST/DATA/partitions/0 \
$/EXPORT/HOME/TEST/DATA/partitions/1 \
$/EXPORT/HOME/TEST/DATA/partitions/2 \
$/EXPORT/HOME/TEST/DATA/partitions/3 \
$/EXPORT/HOME/TEST/DATA/partitions/4
Note: Before executing the above command create mkdir $/EXPORT/HOME/TEST/DATA/partitions
Multifile Commands:
Working with multifiles will be similar to regular files, by adding a prefix of m_<command> most of the regular operations can be carried out. Following are the frequently used commands used with the multifiles.
Command | Syntax | Purpose |
m_mv | m_mv source_path1.. dest_path | Similar to unix move commad to move files from one location to other |
m_rmfs | m_rmfs path | To remove the multifile system |
m_rm | m_rm url [url ...] | Similar to Unix rm command to removes multifiles or files. |
m_chmod | m_chmod mode url [url ...] | Similar to Unix chmod to provide permissions to multifiles |
m_touch | m_touch url [url ...] | Similar to Unix touch command to create a empty multifiles |
m_cp | m_cp source_file_url1.. dest_url | Similar to Unix Copy command to create copies of multifiles |
m_db
This command is used for performing database operation from the command prompt. Following are the various m_db commands that are used frequently.
Command | Syntax | Purpose |
m_db unload | m_db unload dbc_file -table tablename | To Unloads data from database table, select or expression to stdout. Eg: m_db unload mydb.dbc -table 'fred.mytable' |
m_db truncate | m_db truncate dbc_file -table tablename | To truncate a table. |
m_db gendml | m_db gendml dbc_file -table tablename | Used to generate appropriate metadata(dml) for the table/insert/select or expression. This is very useful command for generating dynamic dml. Eg: m_db gendml mydb.dbc -table 'fred.mytable' |
m_db genctl | m_db genctl dbc-name\ -dml 'metadata-string' -table tablename \ -component name | Used to generate a load control file based on the DML supplied |
m_db test | m_db test dbc_file | Runs diagnostic tests against your database for the dbc file specified. This command can be used to check db connections from wrapper scripts |
m_db load | m_db load dbc_file -dml 'metadata-string' -table tablename | Loads data to a database table or insert statement from std input. |
6 comments:
very helpful.....
Great Information admin thanks For Your Information and Any body wants
learn Ab Initio through Online for Details Please go through the Link
Best Ab Initio Online Training in INDIA | USA | UK | UAE | SINGAPORE
This Will Helps you alot.
very nice article
SAS Training In Hyderabad
Very helpful..thanks a lot.
https://chennaiacademy.com/
Nice summary for a quick revision
Post a Comment