-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add USING statement for covering / MV indices for using existing inde… #77
add USING statement for covering / MV indices for using existing inde… #77
Conversation
…x / index template in opensearch Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
add metadata creation parameters Signed-off-by: YANGDB <[email protected]>
Could you explain the semantics of this new syntax? So user already has index with Flint metadata, this actually does not CREATE but just alias their index name with expected Flint name. Why this has to be done in Flint extension? |
Signed-off-by: YANGDB <[email protected]>
this is to be done in flint since we do need to add the metadata section to an existing opensearch index Using the same syntax as the existing SQL DDL statement ( In addition it will decouple the need for flint to be aware of the target index since it will use the alias name as the flint name convention thus making the flint actually agnostic whether the index was created directly or existed earlier |
Signed-off-by: YANGDB <[email protected]>
I see. If so, could you do it as how we support PR for your reference: #44 |
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
Signed-off-by: YANGDB <[email protected]>
remove this PR since the functionality will be moved to materialized view |
Is your feature request related to a problem?
As a flint user, I'd like to use existing indices / index-templates for using as the index targets of the flint accelerated tables
What solution would you like?
Use existing index name to create the acceleration process - this will actually not create an index but use the given name as the target of the acceleration ETL store.
The next SQL syntax suggested:
Would initiate the acceleration ETL sync process without actually creating a new index in OpenSearch, it will use the
ss4o_logs-elb-prod
index (index template) as the data store for the acceleration content.It may validate the following:
Issues Resolved
#72
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.