Skip to content

Commit

Permalink
feat: add ioxQuery limits
Browse files Browse the repository at this point in the history
Add support for viewing and modifying the new IOx Query limits.§
  • Loading branch information
mhilton committed Mar 21, 2024
1 parent 2b33fc0 commit f55f3fc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/operator/OrgOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,27 @@ export const OrgOverlay: FC = () => {
/>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<h4>IOx Query</h4>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Partitions" />
<LimitsField
type={InputType.Number}
name="ioxQuery.partitions"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
<Grid.Column widthMD={Columns.Four}>
<Form.Label label="Parquet Files" />
<LimitsField
type={InputType.Number}
name="ioxQuery.parquetFiles"
limits={limits}
onChangeLimits={setLimits}
/>
</Grid.Column>
</Grid.Row>
<Grid.Row>
<Grid.Column widthMD={Columns.Twelve}>
<MigrateOrg />
Expand Down

0 comments on commit f55f3fc

Please sign in to comment.