> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> جدول نظامي يتضمن معلومات عن الملفات المحلية الموجودة في قائمة الانتظار لإرسالها إلى الشظايا.

# system.distribution_queue

<div id="description">
  ## الوصف
</div>

يتضمن معلومات عن الملفات المحلية الموجودة في قائمة الانتظار لإرسالها إلى الشظايا. وتحتوي هذه الملفات المحلية على أجزاء بيانات جديدة تُنشأ عند إدراج بيانات جديدة في جدول Distributed في الوضع غير المتزامن.

<div id="columns">
  ## الأعمدة
</div>

* `database` ([String](/ar/reference/data-types/index)) — اسم قاعدة البيانات.
* `table` ([String](/ar/reference/data-types/index)) — اسم الجدول.
* `data_path` ([String](/ar/reference/data-types/index)) — مسار المجلد الذي يحتوي على الملفات المحلية.
* `is_blocked` ([UInt8](/ar/reference/data-types/index)) — علامة تشير إلى ما إذا كان إرسال الملفات المحلية إلى الخادم محظورًا.
* `error_count` ([UInt64](/ar/reference/data-types/index)) — عدد الأخطاء.
* `data_files` ([UInt64](/ar/reference/data-types/index)) — عدد الملفات المحلية في المجلد.
* `data_compressed_bytes` ([UInt64](/ar/reference/data-types/index)) — حجم البيانات المضغوطة في الملفات المحلية، بالبايت.
* `broken_data_files` ([UInt64](/ar/reference/data-types/index)) — عدد الملفات التي وُسِمت بأنها تالفة (بسبب خطأ).
* `broken_data_compressed_bytes` ([UInt64](/ar/reference/data-types/index)) — حجم البيانات المضغوطة في الملفات التالفة، بالبايت.
* `last_exception` ([String](/ar/reference/data-types/index)) — الرسالة النصية لآخر خطأ حدث (إن وجد).
* `last_exception_time` ([DateTime](/ar/reference/data-types/index)) — وقت حدوث آخر استثناء.

<div id="example">
  ## مثال
</div>

```sql theme={null}
SELECT * FROM system.distribution_queue LIMIT 1 FORMAT Vertical;
```

```text theme={null}
Row 1:
──────
database:              default
table:                 dist
data_path:             ./store/268/268bc070-3aad-4b1a-9cf2-4987580161af/default@127%2E0%2E0%2E2:9000/
is_blocked:            1
error_count:           0
data_files:            1
data_compressed_bytes: 499
last_exception:
```

<div id="see-also">
  ## انظر أيضًا
</div>

* [محرك الجدول Distributed](/ar/reference/engines/table-engines/special/distributed)
