Re: [sleuthkit-users] TSK Java Binding very slow
Brought to you by:
carrier
|
From: Luís F. N. <lfc...@gm...> - 2014-10-30 16:40:34
|
Hi Markus,
Recently an issue that caused very slow database creation time was resolved
in sleuthkit-4.2 brach, which is used by Autopsy-3.1. Sleuthkit-4.1.3 still
has the problem.
Regards,
Luis Nassif
2014-10-30 13:32 GMT-02:00 <ma...@mh...>:
> Hi,
>
> I write an application which uses the sleuthktit Java-Binding. In
> gernal the binding works fine for me, but during my tests I found a
> strange issue. If I try to process an images which has a size of 150
> GB my own implementation needs about 2 1/2 hours to fill the database.
>
> If I use Autopsy, Autopsy needs only about 30 minutes to process to
> finish the process. I allready checked the file AddImageTask.java in
> the Autopsy github reop. But I can't find any significant difference
> to my own code. Is there a special trick to improve the performance?
>
> I add a Image in the following way:
>
> SleuthkitCase currentCase = SleuthkitCase.newCase(caseDB);
> currentCase.acquireExclusiveLock();
> AddImageProcess proc =
> this.currentCase.makeAddImageProcess(this.timezone, false, true);
> String[] paths = {imagePath};
> proc.run(paths);
> proc.commit();
> currentCase.releaseExclusiveLock();
>
> Markus
>
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> sleuthkit-users mailing list
> https://lists.sourceforge.net/lists/listinfo/sleuthkit-users
> http://www.sleuthkit.org
>
|