> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# إعدادات تنسيق format_binary_*

> إعدادات التنسيق في ClickHouse ضمن المجموعة المُولَّدة format_binary_*.

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>النوع</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>القيمة الافتراضية</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          يمكن تغييره دون إعادة التشغيل
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

يتم توليد هذه الإعدادات تلقائيًا من [المصدر](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/FormatFactorySettings.h).

<div id="format_binary_max_array_size">
  ## format\_binary\_max\_array\_size
</div>

<SettingsInfoBlock type="UInt64" default_value="1073741824" />

الحد الأقصى المسموح به لحجم Array في تنسيق RowBinary. يمنع هذا تخصيص كميات كبيرة من الذاكرة في حال وجود بيانات تالفة. 0 تعني عدم وجود حد.

<div id="format_binary_max_object_size">
  ## format\_binary\_max\_object\_size
</div>

<SettingsInfoBlock type="UInt64" default_value="100000" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "25.12"},{"label": "100000"},{"label": "إعداد جديد يحدّ من الحجم الأقصى للكائن أثناء إلغاء التسلسل الثنائي لنوع JSON"}]}]} />

الحد الأقصى المسموح به لعدد المسارات في كائن واحد ضمن تنسيق RowBinary الخاص بنوع JSON. يمنع ذلك تخصيص مقدار كبير من الذاكرة في حال كانت البيانات تالفة. وتعني القيمة 0 أنه لا يوجد حد.

<div id="format_binary_max_string_size">
  ## format\_binary\_max\_string\_size
</div>

<SettingsInfoBlock type="UInt64" default_value="1073741824" />

<VersionHistory rows={[{"id": "row-1","items": [{"label": "22.12"},{"label": "1073741824"},{"label": "منع تخصيص قدر كبير من الذاكرة"}]}]} />

الحد الأقصى المسموح به لحجم String في تنسيق RowBinary. يمنع هذا تخصيص قدر كبير من الذاكرة في حالة البيانات التالفة. 0 تعني أنه لا يوجد حد
