Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagetext
aext --loadid=261358 --dbfunc=mySchema.f_cpc_only

Checking Status

To determine the current status of the data extraction, check the log output for the batch number currently being extracted, then insert it into the following formula:

Code Block
languagetext
( ( total-documents / batch-size ) - current-batch-number ) * batch-size = number of documents left to extract

For example, given 17000000 total documents, a batch size of 500, and a current batch number of 31000, the formula would determine that there are 1500000 documents left to extract:

Code Block
languagetext
( ( 17000000 / 500 ) - 31000 ) * 500 = 1500000