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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/topics/parameters/default-row-limit",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# default_row_limit

> Sets the default row limit for new queries using the topic.

When set, the default row limit will be applied to queries that are created **after** the limit is defined.

If a model-level default row limit isn't defined, the system default of 1,000 will be used instead.

<Warning>
  If defined, this parameter will override the model-level [`default_row_limit`](/modeling/models/default-row-limit) parameter.
</Warning>

## Syntax

```yaml theme={null}
default_row_limit: number
```

## Properties

<ParamField path="default_row_limit" type="integer">
  The default number of rows to return for new queries using this topic. Must be between 1 and 50,000.
</ParamField>

## Examples

```yaml title="Set default row limit to 2,000" theme={null}
default_row_limit: 2000
```
