Beet import, skipping import, yet stats show 0

beet -vv import -a /cloud/music/Albums

user configuration: /home/nnn/.config/beets/config.yaml
data directory: /home/nnn/.config/beets
plugin paths: /home/nnn/data
Sending event: pluginload
library database: /home/nnn/data/musiclibrary.db
library directory: /cloud/music
Sending event: library_opened
Sending event: import_begin
Skipping previously-imported path: /cloud/music/Albums/Made In Usa
No files imported from /cloud/music/Albums
Skipped 1 paths.
Sending event: import
Sending event: cli_exit

beet stats
Tracks: 0
Total time: 0.0 seconds
Approximate total size: 0.0 B
Artists: 0
Albums: 0
Album artists: 0

New user, and my library is 2.3 million files, trying to start an import, and then ramp it up. What am I doing wrong ?

beet config
directory: /cloud/music
library: ~/data/musiclibrary.db

import:
copy: no
write: yes
move: yes
autotag: yes
log: ~/beetslog.txt
incremental: yes
quiet: yes
original_date: yes
per_disc_numbering: yes
embedart:
auto: yes
art_filename: albumart

plugins: mbcollection inline fetchart lastgenre rewrite fromfilename
mbcollection:
auto: yes
collection: library
remove: no
pluginpath: ~/data/

ui:
color: yes

paths:
default: $albumartist/$album/$track $title
singleton: $albumartist/$artist - $title
comp: $albumartist/$album/$track $title
albumtype:soundtrack: Soundtracks/$album/$track $title
duplicate_action: keep

musicbrainz:
user: nnn
pass: REDACTED
auto: yes
collection: library
fetchart:
auto: yes
cautious: yes
sources: filesystem coverart itunes amazon albumart
minwidth: 0
maxwidth: 0
quality: 0
enforce_ratio: no
cover_names:
- cover
- front
- art
- album
- folder
google_key: REDACTED
google_engine: 001442825323518660753:hrh5ch1gjzm
fanarttv_key: REDACTED
lastfm_key: REDACTED
store_source: no
high_resolution: no
lastgenre:
auto: yes
source: album
whitelist: yes
min_weight: 10
count: 1
fallback:
canonical: no
force: yes
separator: ', ’
prefer_specific: no
title_case: yes

replace:
‘[\/]’: _
^.: _
‘[\x00-\x1f]’: _
‘[<>:"?*|]’: _
.$: _
edit:
itemfields:
- album
- albumartist
- artist
- track
- title
- year
albumfields:
- albumartist
- album
- year
- albumtype

match:
strong_rec_thresh: 0.04
medium_rec_thresh: 0.25
rec_gap_thresh: 0.25
max_rec:
source: strong
artist: strong
album: strong
media: strong
mediums: strong
year: strong
country: strong
label: strong
catalognum: strong
albumdisambig: strong
album_id: strong
tracks: strong
missing_tracks: medium
unmatched_tracks: medium
track_title: strong
track_artist: strong
track_index: strong
track_length: strong
track_id: strong
chroma:
auto: no
pathfields: {}
item_fields: {}
album_fields: {}
rewrite: {}

Hello! This line:

Is referring to the incremental setting, which I think you want to disable if you want to import that directory. You also might want to try disabling quiet for your first few attempts to see more of what’s going on.

thank you.