Posts

Showing posts with the label Dataset Counting

T) Without opening a graph how should we know how many input files are using in that graph?

    Suppose you have graph with name ABC.mp. So to find the number of input datasets(IP files/IP tables..etc) using by the ABC.mp you can do the following:  air project get-required-file /Projectname/mp/ABC.mp > ListofInputfiles.dat     /* This wil save list of input files in file ListofInputfiles.dat */   cat ListofInputfiles.dat | wc -l       /* It will give the count of input datasets required by the graph */