You are viewing limited content. For full access, please sign in.

Question

Question

Clear Items from the DCC List

asked on January 22, 2015

Hello everyone,

 

I was just wondering if there is a way to clear out the DCC Log. We have jobs that are completed and canceled that are taking up pages and pages of the Log. We want to be able to clear them out to see some of the new items being sent. Does anyone know if this is possible from either the Web Console or PowerShell?

0 0

Replies

replied on January 26, 2015

Are you talking about the DCC Event Logs? Which logs are you referring to?

replied on January 26, 2015

Are you talking about the DCC Event Logs? Which logs are you referring to?

0 0
replied on January 27, 2015

My apologies, this is the Job Log that you see from the WebAdmin Console View

0 0
replied on January 28, 2015

You can try sort the job id by descending sort,  so the latest jobs will show up in the first page.

or click the button in the grid footer http://screencast.com/t/O3TCq3nhr to go to the last page to see the latest jobs.

0 0
replied on May 12, 2016

I'm interested in finding a way of clearing the list of completed and canceled jobs in the Web Admin Console.

Is there any way with power shell?

We are testing DCC and I am afraid that in production we will end up with possibly millions of rows in there  and that the website won't be able to handle it.

 

Thank you

Gian

0 0
replied on November 30, 2016

Good day I am also curious as to how to clear this log, navigating is a tad tedious when you have thousands of entries.

0 0
replied on November 30, 2016

Hi Neville,

We found a way with the this powershell script.
We run it early in the morning to stop the DCC and clear the logs

 

Import-Module LfDccClusterAdmin
Get-DccJob|Stop-DccJob
Start-Sleep -s 60
Get-ChildItem -Path "C:\ProgramData\Laserfiche\Distributed Computing Cluster\JobArchive\" -Include * | remove-Item -recurse -Confirm:$false
Start-Sleep -s 30
Stop-Process -name "LFOmniOCR*" -Force

 

2 0
replied on November 30, 2016

Thank you it worked like a charm.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.