ArafatKhan2198 commented on code in PR #9994:
URL: https://github.com/apache/ozone/pull/9994#discussion_r3108940486
##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/pages/containers/containers.tsx:
##########
@@ -260,18 +288,40 @@ const Containers: React.FC<{}> = () => {
onTagClose={() => { }}
columnLength={columnOptions.length} />
</div>
- <Search
- disabled={dataToTabKeyMap[selectedTab]?.length < 1}
- searchOptions={SearchableColumnOpts}
- searchInput={searchTerm}
- searchColumn={searchColumn}
- onSearchChange={
- (e: React.ChangeEvent<HTMLInputElement>) =>
setSearchTerm(e.target.value)
- }
- onChange={(value) => {
- setSearchTerm('');
- setSearchColumn(value as 'containerID' | 'pipelineID');
- }} />
+ <div className='table-actions-section'>
+ <Search
+ disabled={dataToTabKeyMap[selectedTab]?.length < 1}
+ searchOptions={SearchableColumnOpts}
+ searchInput={searchTerm}
+ searchColumn={searchColumn}
+ onSearchChange={
+ (e: React.ChangeEvent<HTMLInputElement>) =>
setSearchTerm(e.target.value)
+ }
+ onChange={(value) => {
+ setSearchTerm('');
+ setSearchColumn(value as 'containerID' | 'pipelineID');
+ }} />
+ <Select
+ value={exportLimit}
+ onChange={(value: number) => setExportLimit(value)}
+ style={{ width: 130 }}
+ options={[
+ { value: 10000, label: '10K Records' },
+ { value: 100000, label: '100K Records' },
+ { value: 1000000, label: '1M Records' },
+ { value: 0, label: 'Complete' }
+ ]}
Review Comment:
Will make changes to the description
##########
hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/ReconServerConfigKeys.java:
##########
@@ -253,6 +253,7 @@ public final class ReconServerConfigKeys {
"ozone.recon.scm.container.id.batch.size";
public static final long OZONE_RECON_SCM_CONTAINER_ID_BATCH_SIZE_DEFAULT =
1_000_000;
+
Review Comment:
Will make changes to the description
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]