How to understand if Import disk is completed?

volothamp

Explorer
Joined
Jul 28, 2019
Messages
72
In the documentation it states

"After importing a disk, a dialog allows viewing or downloading the disk import log."


I'm importing a ~2.5TB NTFS drive into my pool, and of course I closed the interface many times, and not I'm not sure if it's imported the whole disk or not.

CPU usage has been 0% for quite a while, but in the processes I still see rsync and ntfs albeit with 0 CPU

Screenshot 2020-10-31 at 10.49.19.png


In the Storage section, I only have 1.6TiB, which is 1.759219TB and I don't think this is over (even with 1.05x compression)

DiscoRigidodataset1.63 TiB1.47 TiBInherits (lz4)1.05xfalseoff

In

/var/run/importcopy/tmpdir/dev/ada4p2

The NTFS disk is still mounted.

I guess I can re-run rysnc, but I should probably kill the old process?
Or maybe check the log

Thank you

I'm on FreeNAS 11.3-U5
 
Last edited:

dld121

Cadet
Joined
Dec 27, 2020
Messages
7
In the documentation it states

"After importing a disk, a dialog allows viewing or downloading the disk import log."


I'm importing a ~2.5TB NTFS drive into my pool, and of course I closed the interface many times, and not I'm not sure if it's imported the whole disk or not.

CPU usage has been 0% for quite a while, but in the processes I still see rsync and ntfs albeit with 0 CPU

View attachment 42405

In the Storage section, I only have 1.6TiB, which is 1.759219TB and I don't think this is over (even with 1.05x compression)

DiscoRigidodataset1.63 TiB1.47 TiBInherits (lz4)1.05xfalseoff

In

/var/run/importcopy/tmpdir/dev/ada4p2

The NTFS disk is still mounted.

I guess I can re-run rysnc, but I should probably kill the old process?
Or maybe check the log

Thank you

I'm on FreeNAS 11.3-U5
I have exactly the same problem... Just so you know I started with the latest TrueNas and it failed there to.
I gave up on TrueNas and went back to FreeNAS-11.3-U5 and I have not tried to reopen the Import disk dialog box... in 11.1 I think that worked based on what I saw in forums.

There is a way to see activity on the disks/pools/datasources... use the command "zpool iostat".

Open a ssh session with FreeNas or the SHELL in the GUI and...
enter this command:

zpool iostat PoolName 1

--- where PoolName is the name of your pool where the disk is being imported.
--- where 1 is the number of seconds to wait before repeating the command.
--- and Ctrl-C to stop it.

This will report one line to the screen every second with:
capacity operations bandwidth
pool alloc free read write read write
------------ ----- ----- ----- ----- ----- -----
PoolName 3.99T 25.0T 5 185 241K 7.28M
PoolName 3.99T 25.0T 2 2.25K 12.0K 101M


Or you can add (v) to get more detail.

zpool iostat -v PoolName 1

This will show:

capacity operations bandwidth
pool alloc free read write read write
-------------------------------------- ----- ----- ----- ----- ----- -----
PoolName 4.02T 25.0T 0 0 0 0
raidz1 4.02T 25.0T 0 0 0 0
gptid/0fc3a138-503f-11eb-8506-3417ebddb9ce - - 0 0 0 0
gptid/10921241-503f-11eb-8506-3417ebddb9ce - - 0 0 0 0
gptid/10b49fd3-503f-11eb-8506-3417ebddb9ce - - 0 0 0 0
gptid/10d751d0-503f-11eb-8506-3417ebddb9ce - - 0 0 0 0
logs - - - - - -
gptid/0d7163b1-503f-11eb-8506-3417ebddb9ce 968K 488G 0 0 0 0
cache - - - - - -
gptid/0ca911c5-503f-11eb-8506-3417ebddb9ce 927G 4.54G 0 0 0 0
-------------------------------------- ----- ----- ----- ----- ----- -----


This might be too much information...the first example is easier to follow.
 
Top