This is an automated email from the ASF dual-hosted git repository.

xiangfu pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


    from 4f46771711d Fixing typo CONFIG_OF_ZOOKEEPER_SERVER in the codebase 
(#16505)
     add e061d047b4e Support time zone in controller ui and add start/end time 
of segment in the summary page (#16489)

No new revisions were added by this update.

Summary of changes:
 pinot-controller/src/main/resources/.eslintrc      |   8 +-
 pinot-controller/src/main/resources/app/App.tsx    |  55 +-
 .../src/main/resources/app/app_state.ts            |   5 +-
 .../app/components/ConsumingSegmentsTable.tsx      |   2 +-
 .../main/resources/app/components/CustomButton.tsx |   2 +-
 .../main/resources/app/components/CustomDialog.tsx |   2 +-
 .../resources/app/components/CustomMultiSelect.tsx |   2 +-
 .../app/components/CustomNotification.tsx          |   4 +-
 .../src/main/resources/app/components/Header.tsx   |  34 +-
 .../app/components/Homepage/ClusterConfig.tsx      |   2 +-
 .../app/components/Homepage/InstanceTable.tsx      |   2 +-
 .../Homepage/Operations/AddDeleteComponent.tsx     |   2 +-
 .../Homepage/Operations/AddIndexingComponent.tsx   |   2 +-
 .../Homepage/Operations/AddIngestionComponent.tsx  |   2 +-
 .../Homepage/Operations/AddOfflineTableOp.tsx      |   2 +-
 .../Operations/AddOfflineTenantComponent.tsx       |   2 +-
 .../Homepage/Operations/AddPartionComponent.tsx    |   2 +-
 .../Homepage/Operations/AddQueryComponent.tsx      |   2 +-
 .../Operations/AddRealTimeIngestionComponent.tsx   |   2 +-
 .../Operations/AddRealTimePartionComponent.tsx     |   2 +-
 .../Homepage/Operations/AddRealtimeTableOp.tsx     |   2 +-
 .../components/Homepage/Operations/AddSchemaOp.tsx |  16 +-
 .../Homepage/Operations/AddStorageComponent.tsx    |   2 +-
 .../Homepage/Operations/AddTableComponent.tsx      |   4 +-
 .../Homepage/Operations/AddTenantComponent.tsx     |   2 +-
 .../Homepage/Operations/EditConfigOp.tsx           |   2 +-
 .../components/Homepage/Operations/EditTagsOp.tsx  |   2 +-
 .../Homepage/Operations/MultiIndexingComponent.tsx |   2 +-
 .../Homepage/Operations/MultiMetricComponent.tsx   |   2 +-
 .../Operations/MultipleSelectComponent.tsx         |   2 +-
 .../RebalanceServer/RebalanceResponse.tsx          |   2 +-
 .../RebalanceServerConfigurationOption.tsx         |   2 +-
 .../RebalanceServerConfigurationOptionDouble.tsx   |   2 +-
 .../RebalanceServerConfigurationOptionInteger.tsx  |   2 +-
 .../RebalanceServerConfigurationOptionLabel.tsx    |   2 +-
 .../RebalanceServerConfigurationOptionSelect.tsx   |   2 +-
 ...alanceServerConfigurationOptionToggleSwitch.tsx |   2 +-
 .../RebalanceServerDialogHeader.tsx                |   2 +-
 .../RebalanceServer/RebalanceServerOptions.ts      |   2 +-
 .../RebalanceServerPreChecksResponse.tsx           |   2 +-
 .../RebalanceServerRebalanceSummaryResponse.tsx    |   2 +-
 .../RebalanceServerResponseCard.tsx                |   2 +-
 .../RebalanceServerSectionResponse.tsx             |   2 +-
 .../RebalanceServer/RebalanceServerSection.tsx     |   2 +-
 .../Operations/RebalanceServerStatusOp.tsx         |   7 +-
 .../Homepage/Operations/RebalanceServerTableOp.tsx |   4 +-
 .../Operations/RebalanceServerTenantOp.tsx         |   4 +-
 .../Homepage/Operations/ReloadStatusOp.tsx         |  17 +-
 .../Homepage/Operations/SchemaComponent.tsx        |   2 +-
 .../Homepage/Operations/SchemaNameComponent.tsx    |   2 +-
 .../app/components/Homepage/useTaskTypesTable.tsx  |   2 +-
 .../src/main/resources/app/components/Layout.tsx   |   3 +-
 .../Notification/NotificationContext.tsx           |   2 +-
 .../Notification/NotificationContextProvider.tsx   |   4 +-
 .../app/components/Query/MetricStatsTable.tsx      |   1 -
 .../components/Query/VisualizeQueryStageStats.tsx  |   2 +-
 .../main/resources/app/components/SearchBar.tsx    |   2 +-
 .../resources/app/components/SimpleAccordion.tsx   |   2 +-
 .../main/resources/app/components/StatusFilter.tsx |   2 +-
 .../src/main/resources/app/components/TabPanel.tsx |   2 +-
 .../main/resources/app/components/TableToolbar.tsx |   2 +-
 .../resources/app/components/TimezoneSelector.tsx  | 169 ++++++
 .../main/resources/app/components/User/AddUser.tsx |   2 +-
 .../resources/app/components/User/UpdateUser.tsx   |   2 +-
 .../app/components/Zookeeper/TreeDirectory.tsx     |   2 +-
 .../resources/app/components/auth/AuthProvider.tsx |   4 +-
 .../resources/app/components/useMinionMetaData.tsx |   2 +-
 .../app/components/useScheduleAdhocModal.tsx       |   2 +-
 .../resources/app/components/useTaskListing.tsx    |   6 +-
 .../resources/app/contexts/TimezoneContext.tsx     |  66 +++
 pinot-controller/src/main/resources/app/index.tsx  |   2 +-
 .../src/main/resources/app/pages/HomePage.tsx      |   8 +-
 .../resources/app/pages/InstanceListingPage.tsx    |  12 +-
 .../src/main/resources/app/pages/LoginPage.tsx     |   2 +-
 .../main/resources/app/pages/MinionTaskManager.tsx |   2 +-
 .../src/main/resources/app/pages/Query.tsx         |  16 +-
 .../main/resources/app/pages/SegmentDetails.tsx    | 115 +++-
 .../src/main/resources/app/pages/SubTaskDetail.tsx |  33 +-
 .../src/main/resources/app/pages/TaskDetail.tsx    |  31 +-
 .../src/main/resources/app/pages/TaskQueue.tsx     |   2 +-
 .../main/resources/app/pages/TaskQueueTable.tsx    |  13 +-
 .../src/main/resources/app/pages/TenantDetails.tsx |   2 +-
 .../src/main/resources/app/pages/ZookeeperPage.tsx |   2 +-
 .../src/main/resources/app/requests/index.ts       |  10 +-
 pinot-controller/src/main/resources/app/router.tsx |   2 +-
 .../main/resources/app/utils/PinotMethodUtils.ts   |  31 +-
 .../src/main/resources/app/utils/TimezoneUtils.ts  | 610 +++++++++++++++++++++
 .../src/main/resources/app/utils/Utils.tsx         |   5 +-
 .../src/main/resources/package-lock.json           |  21 +
 pinot-controller/src/main/resources/package.json   |   3 +-
 90 files changed, 1214 insertions(+), 223 deletions(-)
 create mode 100644 
pinot-controller/src/main/resources/app/components/TimezoneSelector.tsx
 create mode 100644 
pinot-controller/src/main/resources/app/contexts/TimezoneContext.tsx
 create mode 100644 
pinot-controller/src/main/resources/app/utils/TimezoneUtils.ts


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to