diff --git a/common/constants/index.ts b/common/constants/index.ts index 8533039d..6a796871 100644 --- a/common/constants/index.ts +++ b/common/constants/index.ts @@ -13,7 +13,7 @@ export const ON_LOAD_QUERY = `SHOW tables LIKE '%';`; export const ACCELERATION_INDEX_TYPES = [ { label: 'Skipping Index', value: 'skipping' }, { label: 'Covering Index', value: 'covering' }, - { label: 'Materialized View', value: 'materialized' }, + // { label: 'Materialized View', value: 'materialized' }, Hidden Option -> Until opensearch-spark feature is ready ]; export const ACCELERATION_AGGREGRATION_FUNCTIONS = [ diff --git a/public/components/Main/main.tsx b/public/components/Main/main.tsx index f79c42db..789e8404 100644 --- a/public/components/Main/main.tsx +++ b/public/components/Main/main.tsx @@ -14,7 +14,7 @@ import { EuiPageSideBar, EuiPanel, EuiSpacer, - EuiText + EuiText, } from '@elastic/eui'; import { IHttpResponse } from 'angular'; import _ from 'lodash'; @@ -83,6 +83,8 @@ export type DataRow = { interface MainProps { httpClient: CoreStart['http']; setBreadcrumbs: (newBreadcrumbs: ChromeBreadcrumb[]) => void; + isAccelerationFlyoutOpen: boolean; + urlDataSource: string; } interface MainState { @@ -417,7 +419,11 @@ export class Main extends React.Component { queries.map((query: string) => this.httpClient .post(endpoint, { - body: JSON.stringify({ lang: language, query: query, datasource: this.state.selectedDatasource[0].label}), // TODO: dynamically datasource when accurate + body: JSON.stringify({ + lang: language, + query: query, + datasource: this.state.selectedDatasource[0].label, + }), // TODO: dynamically datasource when accurate }) .catch((error: any) => { this.setState({ @@ -796,8 +802,11 @@ export class Main extends React.Component { if (this.state.language == 'SQL') { page = ( { page = ( { Data Sources - + @@ -903,6 +918,7 @@ export class Main extends React.Component { diff --git a/public/components/SQLPage/DataSelect.tsx b/public/components/SQLPage/DataSelect.tsx index bc63607a..0fe25e03 100644 --- a/public/components/SQLPage/DataSelect.tsx +++ b/public/components/SQLPage/DataSelect.tsx @@ -10,13 +10,18 @@ import { CoreStart } from '../../../../../src/core/public'; interface CustomView { http: CoreStart['http']; onSelect: (selectedItems: []) => void; + urlDataSource: string; } -export const DataSelect = ({ http, onSelect }: CustomView) => { - const [selectedOptions, setSelectedOptions] = useState([{ label: 'OpenSearch' }]); +export const DataSelect = ({ http, onSelect, urlDataSource }: CustomView) => { + const [selectedOptions, setSelectedOptions] = useState([ + { label: 'OpenSearch' }, + ]); const [options, setOptions] = useState([]); const datasources = () => { + let dataOptions: EuiComboBoxOptionOption[] = []; + let urlSourceFound = false; http .get(`/api/get_datasources`) .then((res) => { @@ -34,21 +39,29 @@ export const DataSelect = ({ http, onSelect }: CustomView) => { } connectorGroups[connector].push(name); + if (name === urlDataSource) { + urlSourceFound = true; + } } }); - options.push({ label: 'OpenSearch' }); + dataOptions.push({ label: 'OpenSearch' }); + for (const connector in connectorGroups) { if (connectorGroups.hasOwnProperty(connector)) { const connectorNames = connectorGroups[connector]; - options.push({ + dataOptions.push({ label: connector, options: connectorNames.map((name) => ({ label: name })), }); } } - setOptions(options); + setOptions(dataOptions); + if (urlSourceFound) { + setSelectedOptions([{ label: urlDataSource }]); + onSelect([{ label: urlDataSource }]); + } }) .catch((err) => { console.error(err); diff --git a/public/components/SQLPage/SQLPage.tsx b/public/components/SQLPage/SQLPage.tsx index b0f1eb5c..6deab093 100644 --- a/public/components/SQLPage/SQLPage.tsx +++ b/public/components/SQLPage/SQLPage.tsx @@ -7,6 +7,7 @@ import { EuiButton, EuiCodeBlock, EuiCodeEditor, + EuiComboBoxOptionOption, EuiFlexGroup, EuiFlexItem, EuiModal, @@ -21,18 +22,20 @@ import { import 'brace/ext/language_tools'; import 'brace/mode/sql'; import React from 'react'; +import { CoreStart } from '../../../../../src/core/public'; import '../../ace-themes/sql_console'; import { ResponseDetail, TranslateResult } from '../Main/main'; import { CreateAcceleration } from '../acceleration/create/create_acceleration'; interface SQLPageProps { + http: CoreStart['http']; onRun: (query: string) => void; onTranslate: (query: string) => void; onClear: () => void; updateSQLQueries: (query: string) => void; sqlQuery: string; sqlTranslations: ResponseDetail[]; - selectedDatasource: string; + selectedDatasource: EuiComboBoxOptionOption[]; asyncLoading: boolean; } @@ -68,7 +71,8 @@ export class SQLPage extends React.Component { this.setState({ flyoutComponent: ( @@ -170,17 +174,18 @@ export class SQLPage extends React.Component { - {this.props.selectedDatasource === 'S3' && ( - - - Accelerate Table - - - )} + {this.props.selectedDatasource && + this.props.selectedDatasource[0].label !== 'OpenSearch' && ( + + + Accelerate Table + + + )} {modal} diff --git a/public/components/SQLPage/TableView.tsx b/public/components/SQLPage/TableView.tsx index 3f168ccd..fcc78657 100644 --- a/public/components/SQLPage/TableView.tsx +++ b/public/components/SQLPage/TableView.tsx @@ -3,26 +3,51 @@ * SPDX-License-Identifier: Apache-2.0 */ -import { EuiEmptyPrompt, EuiIcon, EuiTreeView } from '@elastic/eui'; +import { EuiComboBoxOptionOption, EuiEmptyPrompt, EuiIcon, EuiTreeView } from '@elastic/eui'; import _ from 'lodash'; import React, { useEffect, useState } from 'react'; import { CoreStart } from '../../../../../src/core/public'; import { ON_LOAD_QUERY } from '../../../common/constants'; +import { AccelerationIndexFlyout } from './acceleration_index_flyout'; import { getJobId, pollQueryStatus } from './utils'; interface CustomView { http: CoreStart['http']; - selectedItems: any[]; + selectedItems: EuiComboBoxOptionOption[]; + updateSQLQueries: (query: string) => void; } -export const TableView = ({ http, selectedItems }: CustomView) => { +export const TableView = ({ http, selectedItems, updateSQLQueries }: CustomView) => { const [tablenames, setTablenames] = useState([]); const [selectedNode, setSelectedNode] = useState(null); const [childData, setChildData] = useState([]); const [selectedChildNode, setSelectedChildNode] = useState(null); const [indexData, setIndexedData] = useState([]); const [isLoading, setIsLoading] = useState(false); - const [indiciesData, setIndiciesData] = useState([]); + const [indiciesData, setIndiciesData] = useState([]); + const [indexFlyout, setIndexFlyout] = useState(<>); + + const resetFlyout = () => { + setIndexFlyout(<>); + }; + + const handleAccelerationIndexClick = ( + dataSource: string, + database: string, + dataTable: string, + indexName: string + ) => { + setIndexFlyout( + + ); + }; const get_async_query_results = (id, http, callback) => { pollQueryStatus(id, http, callback); @@ -64,7 +89,7 @@ export const TableView = ({ http, selectedItems }: CustomView) => { useEffect(() => { getSidebarContent(); - }, [selectedItems[0]['label']]); + }, [selectedItems]); const handleNodeClick = (nodeLabel: string) => { setSelectedNode(nodeLabel); @@ -89,8 +114,8 @@ export const TableView = ({ http, selectedItems }: CustomView) => { }; getJobId(coverQuery, http, (id) => { get_async_query_results(id, http, (data) => { - data = [].concat(...data) - indiciesData.push(data) + data = [].concat(...data); + indiciesData.push(data); setIndexedData(indiciesData); }); }); @@ -105,7 +130,7 @@ export const TableView = ({ http, selectedItems }: CustomView) => { getJobId(skipQuery, http, (id) => { get_async_query_results(id, http, (data) => { if (data.length > 0) { - indiciesData.push('skip_index'); + indiciesData.push('skip_index'); callCoverQuery(nodeLabel1); } }); @@ -141,6 +166,13 @@ export const TableView = ({ http, selectedItems }: CustomView) => { label: indexChild, id: `${table}_${indexChild}`, icon: , + callback: () => + handleAccelerationIndexClick( + selectedItems[0].label, + database, + table, + indexChild + ), })) : undefined, })) @@ -158,6 +190,7 @@ export const TableView = ({ http, selectedItems }: CustomView) => { title={

Error loading Datasources

} /> )} + {indexFlyout} ); }; diff --git a/public/components/SQLPage/__snapshots__/SQLPage.test.tsx.snap b/public/components/SQLPage/__snapshots__/SQLPage.test.tsx.snap index 96850ed5..603e920f 100644 --- a/public/components/SQLPage/__snapshots__/SQLPage.test.tsx.snap +++ b/public/components/SQLPage/__snapshots__/SQLPage.test.tsx.snap @@ -188,6 +188,7 @@ exports[` spec renders the component 1`] = ` + diff --git a/public/components/SQLPage/acceleration_index_flyout.tsx b/public/components/SQLPage/acceleration_index_flyout.tsx new file mode 100644 index 00000000..9b855384 --- /dev/null +++ b/public/components/SQLPage/acceleration_index_flyout.tsx @@ -0,0 +1,132 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { + EuiButton, + EuiButtonEmpty, + EuiFlexGroup, + EuiFlexItem, + EuiFlyout, + EuiFlyoutBody, + EuiFlyoutFooter, + EuiFlyoutHeader, + EuiHorizontalRule, + EuiPageHeader, + EuiPageHeaderSection, + EuiSpacer, + EuiTitle, +} from '@elastic/eui'; +import React from 'react'; + +interface AccelerationIndexFlyoutProps { + dataSource: string; + database: string; + dataTable: string; + indexName: string; + resetFlyout: () => void; + updateSQLQueries: (query: string) => void; +} + +export const AccelerationIndexFlyout = ({ + dataSource, + database, + dataTable, + indexName, + resetFlyout, + updateSQLQueries, +}: AccelerationIndexFlyoutProps) => { + const updateDescribeQuery = () => { + const describeQuery = + indexName === 'skipping_index' + ? `DESC SKIPPING INDEX ON ${dataSource}.${database}.${dataTable}` + : `DESC INDEX ${indexName} ON ${dataSource}.${database}.${dataTable}`; + updateSQLQueries(describeQuery); + resetFlyout(); + }; + + const updateDropQuery = () => { + const describeQuery = + indexName === 'skipping_index' + ? `DROP SKIPPING INDEX ON ${dataSource}.${database}.${dataTable}` + : `DROP INDEX ${indexName} ON ${dataSource}.${database}.${dataTable}`; + updateSQLQueries(describeQuery); + resetFlyout(); + }; + + return ( + <> + + +
+ + + +

{indexName}

+
+
+
+
+
+ +

Acceleration index Source

+ + + +

Data Source

+ +

{dataSource}

+
+ +

Database

+ +

{database}

+
+ +

Table

+ +

{dataTable}

+
+
+

Acceleration index destination

+ + + +

OpenSearch Index

+ +

+ {indexName === 'skipping_index' + ? `flint_${dataSource}_${database}_${dataTable}_skipping_index` + : `flint_${dataSource}_${database}_${dataTable}_${indexName}_index`} +

+
+
+

Acceleration index actions

+ + + + + Describe Index + + + + + Drop Index + + + +
+ + + + + Close + + + + +
+ + ); +}; diff --git a/public/components/acceleration/create/__tests__/__snapshots__/caution_banner_callout.test.tsx.snap b/public/components/acceleration/create/__tests__/__snapshots__/caution_banner_callout.test.tsx.snap deleted file mode 100644 index f40a09f9..00000000 --- a/public/components/acceleration/create/__tests__/__snapshots__/caution_banner_callout.test.tsx.snap +++ /dev/null @@ -1,39 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`Acceleration callout renders acceleration flyout callout 1`] = ` -
-
- - - Considerations for data indexing - -
-
-
-

- Warning about not indexing personal or sensitive data, something about the cost of indexing. -

-
-
-
-`; diff --git a/public/components/acceleration/create/__tests__/__snapshots__/create_acceleration.test.tsx.snap b/public/components/acceleration/create/__tests__/__snapshots__/create_acceleration.test.tsx.snap index 3eded361..07b8f6a8 100644 --- a/public/components/acceleration/create/__tests__/__snapshots__/create_acceleration.test.tsx.snap +++ b/public/components/acceleration/create/__tests__/__snapshots__/create_acceleration.test.tsx.snap @@ -108,40 +108,6 @@ Array [
-
-
- - - Considerations for data indexing - -
-
-
-

- Warning about not indexing personal or sensitive data, something about the cost of indexing. -

-
-
-
@@ -608,7 +574,7 @@ Array [ min="1" placeholder="Number of primary shards" type="number" - value="5" + value="1" />
@@ -616,7 +582,7 @@ Array [ class="euiFormHelpText euiFormRow__text" id="some_html_id-help-0" > - Specify the number of primary shards for the index. Default is 5. The number of primary shards cannot be changed after the index is created. + Specify the number of primary shards for the index. Default is 1. The number of primary shards cannot be changed after the index is created. @@ -1252,41 +1218,6 @@ Array [
-
-
- - - Considerations for data indexing - -
-
-
-

- Warning about not indexing personal or sensitive data, something about the cost of indexing. -

-
-
-
@@ -1868,7 +1799,7 @@ Array [ onFocus={[Function]} placeholder="Number of primary shards" type="number" - value={5} + value={1} />
@@ -1876,7 +1807,7 @@ Array [ className="euiFormHelpText euiFormRow__text" id="some_html_id-help-0" > - Specify the number of primary shards for the index. Default is 5. The number of primary shards cannot be changed after the index is created. + Specify the number of primary shards for the index. Default is 1. The number of primary shards cannot be changed after the index is created. , diff --git a/public/components/acceleration/create/__tests__/caution_banner_callout.test.tsx b/public/components/acceleration/create/__tests__/caution_banner_callout.test.tsx deleted file mode 100644 index 4ad06632..00000000 --- a/public/components/acceleration/create/__tests__/caution_banner_callout.test.tsx +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -import { waitFor } from '@testing-library/dom'; -import { configure, mount } from 'enzyme'; -import Adapter from 'enzyme-adapter-react-16'; -import toJson from 'enzyme-to-json'; -import React from 'react'; -import { CautionBannerCallout } from '../caution_banner_callout'; - -describe('Acceleration callout', () => { - configure({ adapter: new Adapter() }); - - it('renders acceleration flyout callout', async () => { - const wrapper = mount(); - wrapper.update(); - await waitFor(() => { - expect( - toJson(wrapper, { - noKey: false, - mode: 'deep', - }) - ).toMatchSnapshot(); - }); - }); -}); diff --git a/public/components/acceleration/create/__tests__/create_acceleration.test.tsx b/public/components/acceleration/create/__tests__/create_acceleration.test.tsx index 8736c5b0..104d0fe6 100644 --- a/public/components/acceleration/create/__tests__/create_acceleration.test.tsx +++ b/public/components/acceleration/create/__tests__/create_acceleration.test.tsx @@ -3,24 +3,30 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { EuiComboBoxOptionOption } from '@elastic/eui'; import { waitFor } from '@testing-library/dom'; import { configure, mount } from 'enzyme'; import Adapter from 'enzyme-adapter-react-16'; import toJson from 'enzyme-to-json'; import React from 'react'; +import { httpClientMock } from '../../../../../test/mocks'; +import { mockDatasourcesQuery } from '../../../../../test/mocks/mockData'; import { CreateAcceleration } from '../create_acceleration'; describe('Create acceleration flyout components', () => { configure({ adapter: new Adapter() }); it('renders acceleration flyout component with default options', async () => { - const dataSource = ''; + const selectedDatasource: EuiComboBoxOptionOption[] = []; const resetFlyout = jest.fn(); const updateQueries = jest.fn(); + const client = httpClientMock; + client.get = jest.fn().mockResolvedValue(mockDatasourcesQuery); const wrapper = mount( diff --git a/public/components/acceleration/create/__tests__/utils.test.tsx b/public/components/acceleration/create/__tests__/utils.test.tsx index 060d6385..8e4efbf3 100644 --- a/public/components/acceleration/create/__tests__/utils.test.tsx +++ b/public/components/acceleration/create/__tests__/utils.test.tsx @@ -96,11 +96,11 @@ describe('validatePrimaryShardCount', () => { describe('validateReplicaCount', () => { it('should return an array with an error message when replicaCount is less than 1', () => { - expect(validateReplicaCount(0)).toEqual(['Replica count should be greater than 0']); - expect(validateReplicaCount(-1)).toEqual(['Replica count should be greater than 0']); // form throws validation error, doesn't allow user to proceed + expect(validateReplicaCount(-1)).toEqual(['Replica count should be equal or greater than 0']); // form throws validation error, doesn't allow user to proceed }); it('should return an empty array when replicaCount is greater than or equal to 1', () => { + expect(validateReplicaCount(0)).toEqual([]); expect(validateReplicaCount(1)).toEqual([]); expect(validateReplicaCount(5)).toEqual([]); expect(validateReplicaCount(100)).toEqual([]); diff --git a/public/components/acceleration/create/caution_banner_callout.tsx b/public/components/acceleration/create/caution_banner_callout.tsx deleted file mode 100644 index 2c97f82a..00000000 --- a/public/components/acceleration/create/caution_banner_callout.tsx +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -import { EuiCallOut } from '@elastic/eui'; -import React from 'react'; - -export const CautionBannerCallout = () => { - return ( - -

- Warning about not indexing personal or sensitive data, something about the cost of indexing. -

-
- ); -}; diff --git a/public/components/acceleration/create/create_acceleration.tsx b/public/components/acceleration/create/create_acceleration.tsx index 4cfc5e44..152b01c5 100644 --- a/public/components/acceleration/create/create_acceleration.tsx +++ b/public/components/acceleration/create/create_acceleration.tsx @@ -6,6 +6,7 @@ import { EuiButton, EuiButtonEmpty, + EuiComboBoxOptionOption, EuiFlexGroup, EuiFlexItem, EuiFlyout, @@ -16,6 +17,7 @@ import { EuiSpacer, } from '@elastic/eui'; import React, { useState } from 'react'; +import { CoreStart } from '../../../../../../src/core/public'; import { ACCELERATION_DEFUALT_SKIPPING_INDEX_NAME, ACCELERATION_TIME_INTERVAL, @@ -26,23 +28,24 @@ import { IndexSettingOptions } from '../selectors/index_setting_options'; import { AccelerationDataSourceSelector } from '../selectors/source_selector'; import { accelerationQueryBuilder } from '../visual_editors/query_builder'; import { QueryVisualEditor } from '../visual_editors/query_visual_editor'; -import { CautionBannerCallout } from './caution_banner_callout'; import { CreateAccelerationHeader } from './create_acceleration_header'; import { formValidator, hasError } from './utils'; export interface CreateAccelerationProps { - dataSource: string; + http: CoreStart['http']; + selectedDatasource: EuiComboBoxOptionOption[]; resetFlyout: () => void; updateQueries: (query: string) => void; } export const CreateAcceleration = ({ - dataSource, + http, + selectedDatasource, resetFlyout, updateQueries, }: CreateAccelerationProps) => { const [accelerationFormData, setAccelerationFormData] = useState({ - dataSource: '', + dataSource: selectedDatasource.length > 0 ? selectedDatasource[0].label : '', dataTable: '', database: '', dataTableFields: [], @@ -58,7 +61,7 @@ export const CreateAcceleration = ({ }, }, accelerationIndexName: ACCELERATION_DEFUALT_SKIPPING_INDEX_NAME, - primaryShardsCount: 5, + primaryShardsCount: 1, replicaShardsCount: 1, refreshType: 'auto', checkpointLocation: undefined, @@ -98,7 +101,6 @@ export const CreateAcceleration = ({ - diff --git a/public/components/acceleration/create/utils.tsx b/public/components/acceleration/create/utils.tsx index a293298c..97933353 100644 --- a/public/components/acceleration/create/utils.tsx +++ b/public/components/acceleration/create/utils.tsx @@ -41,7 +41,7 @@ export const validatePrimaryShardCount = (primaryShardCount: number) => { }; export const validateReplicaCount = (replicaCount: number) => { - return replicaCount < 1 ? ['Replica count should be greater than 0'] : []; + return replicaCount < 0 ? ['Replica count should be equal or greater than 0'] : []; }; export const validateRefreshInterval = (refreshType: string, refreshWindow: number) => { diff --git a/public/components/acceleration/selectors/__tests__/__snapshots__/index_setting_options.test.tsx.snap b/public/components/acceleration/selectors/__tests__/__snapshots__/index_setting_options.test.tsx.snap index 72dad5ea..49459fd5 100644 --- a/public/components/acceleration/selectors/__tests__/__snapshots__/index_setting_options.test.tsx.snap +++ b/public/components/acceleration/selectors/__tests__/__snapshots__/index_setting_options.test.tsx.snap @@ -196,7 +196,7 @@ Array [ onFocus={[Function]} placeholder="Number of primary shards" type="number" - value={5} + value={1} /> @@ -204,7 +204,7 @@ Array [ className="euiFormHelpText euiFormRow__text" id="some_html_id-help-0" > - Specify the number of primary shards for the index. Default is 5. The number of primary shards cannot be changed after the index is created. + Specify the number of primary shards for the index. Default is 1. The number of primary shards cannot be changed after the index is created. , @@ -583,7 +583,7 @@ Array [ onFocus={[Function]} placeholder="Number of primary shards" type="number" - value={5} + value={1} /> @@ -591,7 +591,7 @@ Array [ className="euiFormHelpText euiFormRow__text" id="some_html_id-help-0" > - Specify the number of primary shards for the index. Default is 5. The number of primary shards cannot be changed after the index is created. + Specify the number of primary shards for the index. Default is 1. The number of primary shards cannot be changed after the index is created. , @@ -970,7 +970,7 @@ Array [ onFocus={[Function]} placeholder="Number of primary shards" type="number" - value={5} + value={1} /> @@ -978,7 +978,7 @@ Array [ className="euiFormHelpText euiFormRow__text" id="some_html_id-help-0" > - Specify the number of primary shards for the index. Default is 5. The number of primary shards cannot be changed after the index is created. + Specify the number of primary shards for the index. Default is 1. The number of primary shards cannot be changed after the index is created. , diff --git a/public/components/acceleration/selectors/__tests__/__snapshots__/source_selector.test.tsx.snap b/public/components/acceleration/selectors/__tests__/__snapshots__/source_selector.test.tsx.snap index bf2a7962..47b7da24 100644 --- a/public/components/acceleration/selectors/__tests__/__snapshots__/source_selector.test.tsx.snap +++ b/public/components/acceleration/selectors/__tests__/__snapshots__/source_selector.test.tsx.snap @@ -442,11 +442,11 @@ Array [ onClick={[Function]} tabIndex={-1} > -

- Select a data source -

+ ds +
+
-
- - - [IF NOT EXISTS] - - - -
@@ -354,20 +340,6 @@ Array [ ..skipping , -
- - - [IF NOT EXISTS] - - - -
,
diff --git a/public/components/acceleration/visual_editors/covering_index/__tests__/__snapshots__/covering_index_builder.test.tsx.snap b/public/components/acceleration/visual_editors/covering_index/__tests__/__snapshots__/covering_index_builder.test.tsx.snap index 3d237119..24d90273 100644 --- a/public/components/acceleration/visual_editors/covering_index/__tests__/__snapshots__/covering_index_builder.test.tsx.snap +++ b/public/components/acceleration/visual_editors/covering_index/__tests__/__snapshots__/covering_index_builder.test.tsx.snap @@ -35,20 +35,6 @@ Array [
-
- - - [IF NOT EXISTS] - - - -
@@ -130,20 +116,6 @@ Array [
-
- - - [IF NOT EXISTS] - - - -
diff --git a/public/components/acceleration/visual_editors/covering_index/covering_index_builder.tsx b/public/components/acceleration/visual_editors/covering_index/covering_index_builder.tsx index 5968ca01..8d3c6019 100644 --- a/public/components/acceleration/visual_editors/covering_index/covering_index_builder.tsx +++ b/public/components/acceleration/visual_editors/covering_index/covering_index_builder.tsx @@ -58,9 +58,6 @@ export const CoveringIndexBuilder = ({ value={accelerationFormData.accelerationIndexName} /> - - - , -
- - - [IF NOT EXISTS] - - - -
,
@@ -184,20 +170,6 @@ Array [ ..skipping , -
- - - [IF NOT EXISTS] - - - -
,
diff --git a/public/components/acceleration/visual_editors/materialized_view/add_column_popover.tsx b/public/components/acceleration/visual_editors/materialized_view/add_column_popover.tsx index df6b276f..6d91c5b7 100644 --- a/public/components/acceleration/visual_editors/materialized_view/add_column_popover.tsx +++ b/public/components/acceleration/visual_editors/materialized_view/add_column_popover.tsx @@ -7,6 +7,7 @@ import { EuiButton, EuiButtonEmpty, EuiComboBox, + EuiComboBoxOptionOption, EuiFieldText, EuiFlexGroup, EuiFlexItem, @@ -17,7 +18,6 @@ import { EuiSpacer, htmlIdGenerator, } from '@elastic/eui'; -import { EuiComboBoxOptionOption } from '@opensearch-project/oui'; import producer from 'immer'; import React, { ChangeEvent, useEffect, useState } from 'react'; import { ACCELERATION_AGGREGRATION_FUNCTIONS } from '../../../../../common/constants'; diff --git a/public/components/acceleration/visual_editors/materialized_view/materialized_view_builder.tsx b/public/components/acceleration/visual_editors/materialized_view/materialized_view_builder.tsx index 124b451c..e9ef4319 100644 --- a/public/components/acceleration/visual_editors/materialized_view/materialized_view_builder.tsx +++ b/public/components/acceleration/visual_editors/materialized_view/materialized_view_builder.tsx @@ -74,10 +74,6 @@ export const MaterializedViewBuilder = ({ value={`${accelerationFormData.dataSource}.${accelerationFormData.database}.${accelerationFormData.accelerationIndexName}`} /> - - - - { const { dataSource, database, dataTable, skippingIndexQueryData } = accelerationformData; - const codeQuery = `CREATE SKIPPING INDEX -[IF NOT EXISTS] + const codeQuery = `CREATE SKIPPING INDEX ON ${dataSource}.${database}.${dataTable} FOR COLUMNS ( ${buildSkippingIndexColumns(skippingIndexQueryData)} @@ -94,7 +92,6 @@ const buildCoveringIndexColumns = (coveringIndexQueryData: string[]) => { * Covering Index create query example: * * CREATE INDEX index_name - * [IF NOT EXISTS] * ON datasource.database.table * FOR COLUMNS ( * field1, @@ -117,7 +114,6 @@ export const coveringIndexQueryBuilder = (accelerationformData: CreateAccelerati } = accelerationformData; const codeQuery = `CREATE INDEX ${accelerationIndexName} -[IF NOT EXISTS] ON ${dataSource}.${database}.${dataTable} FOR COLUMNS ( ${buildCoveringIndexColumns(coveringIndexQueryData)} @@ -148,7 +144,6 @@ const buildTumbleValue = (GroupByTumbleValue: GroupByTumbleType) => { * Materialized View create query example: * * CREATE MATERIALIZED VIEW datasource.database.index_name - * [IF NOT EXISTS] * AS SELECT * count(field) as counter, * count(*) as counter1, @@ -171,7 +166,6 @@ export const materializedQueryViewBuilder = (accelerationformData: CreateAcceler } = accelerationformData; const codeQuery = `CREATE MATERIALIZED VIEW ${dataSource}.${database}.${accelerationIndexName} -[IF NOT EXISTS] AS SELECT ${buildMaterializedViewColumns(materializedViewQueryData.columnsValues)} FROM ${dataSource}.${database}.${dataTable} diff --git a/public/components/app.tsx b/public/components/app.tsx index 44f09b5f..a2f961eb 100644 --- a/public/components/app.tsx +++ b/public/components/app.tsx @@ -3,10 +3,9 @@ * SPDX-License-Identifier: Apache-2.0 */ - -import React from 'react'; import { I18nProvider } from '@osd/i18n/react'; -import { BrowserRouter as Router, Route } from 'react-router-dom'; +import React from 'react'; +import { HashRouter, Route, Switch } from 'react-router-dom'; import { EuiPage, EuiPageBody } from '@elastic/eui'; @@ -23,29 +22,64 @@ interface WorkbenchAppDeps { chrome: CoreStart['chrome']; } -const onChange = () => {}; - -export const WorkbenchApp = ({ basename, notifications, http, navigation, chrome }: WorkbenchAppDeps) => { +export const WorkbenchApp = ({ + basename, + notifications, + http, + navigation, + chrome, +}: WorkbenchAppDeps) => { return ( - +
- -
- } - /> + + ( +
+ )} + /> + ( +
+ )} + /> + ( +
+ )} + /> +
-
+ ); }; diff --git a/test/mocks/accelerationMock.ts b/test/mocks/accelerationMock.ts index 154dbd22..085459de 100644 --- a/test/mocks/accelerationMock.ts +++ b/test/mocks/accelerationMock.ts @@ -201,8 +201,7 @@ export const skippingIndexBuilderMock1: CreateAccelerationForm = { checkpointLocation: 's3://test/', }; -export const skippingIndexBuilderMockResult1 = `CREATE SKIPPING INDEX -[IF NOT EXISTS] +export const skippingIndexBuilderMockResult1 = `CREATE SKIPPING INDEX ON datasource.database.table FOR COLUMNS ( field1 PARTITION, @@ -234,8 +233,7 @@ export const skippingIndexBuilderMock2: CreateAccelerationForm = { checkpointLocation: 's3://test/', }; -export const skippingIndexBuilderMockResult2 = `CREATE SKIPPING INDEX -[IF NOT EXISTS] +export const skippingIndexBuilderMockResult2 = `CREATE SKIPPING INDEX ON datasource.database.table FOR COLUMNS ( field1 PARTITION @@ -263,7 +261,6 @@ export const coveringIndexBuilderMock1: CreateAccelerationForm = { }; export const coveringIndexBuilderMockResult1 = `CREATE INDEX index_name -[IF NOT EXISTS] ON datasource.database.table FOR COLUMNS ( field1, @@ -290,7 +287,6 @@ export const coveringIndexBuilderMock2: CreateAccelerationForm = { }; export const coveringIndexBuilderMockResult2 = `CREATE INDEX index_name -[IF NOT EXISTS] ON datasource.database.table FOR COLUMNS ( field1 @@ -330,7 +326,6 @@ export const materializedViewBuilderMock1: CreateAccelerationForm = { }; export const materializedViewBuilderMockResult1 = `CREATE MATERIALIZED VIEW datasource.database.index_name -[IF NOT EXISTS] AS SELECT count(field) AS counter, count(*) AS counter1, @@ -366,7 +361,6 @@ export const materializedViewBuilderMock2: CreateAccelerationForm = { }; export const materializedViewBuilderMockResult2 = `CREATE MATERIALIZED VIEW datasource.database.index_name -[IF NOT EXISTS] AS SELECT count(field) FROM datasource.database.table