Why isn't my model training with full training data?

Hello everyone.

I have a dataset of total 1 million instances but while training my model, in my progress bar, there seems to be only 8192 instances in training.

It show up like:
Epoch 0: 71%|▋| 5732/8129 [07:04<02:57, 13.49it/s,

I confirmed that all my 1M instances are read correctly and I have no clue what have I done wrong.
Is there something I can do to fix this? Thank you in advance.

Which batch size are you using? The 8129 should be the result of = number of training data/ batch size

Thank you! Now I know this isn’t a trouble