-
Notifications
You must be signed in to change notification settings - Fork 52
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
feat(opensearch-vectorindex): replace docker-based custom resource with typescript #583
feat(opensearch-vectorindex): replace docker-based custom resource with typescript #583
Conversation
…th typescript implementation - remove docker dependency for opensearch vector index creation - implement typescript-based lambda function for index management - add support for configurable vector search parameters - enhance vectorindex construct with new optional properties - update custom resource provider to use bundled typescript code - improve error handling and logging in lambda function - wip: further testing and integration required
…https://github.com/cagataycali/generative-ai-cdk-constructs into cagatay/remove-docker-from-opensearch-index-creation
runtime: lambda.Runtime.PYTHON_3_12, | ||
__dirname, '../../../lambda/opensearch-serverless-custom-resources/index.ts'), | ||
handler: 'handler', | ||
runtime: lambda.Runtime.NODEJS_18_X, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using latest AWS Lambda runtime?
runtime: lambda.Runtime.NODEJS_18_X, | |
runtime: lambda.Runtime.NODEJS_20_X, |
Cannot get this to build and run. Tested a different approach by updating the custom-resource-provider-helper to use
And have the original files in the folder to invoke the custom build script |
Update:
|
…https://github.com/cagataycali/generative-ai-cdk-constructs into cagatay/remove-docker-from-opensearch-index-creation
This pull request is now marked as stale because it hasn't seen activity for a while. Add a comment or it will be closed soon. If you wish to exclude this issue from being marked as stale, add the "backlog" label. |
Closing this pull request as it hasn't seen activity for a while. Please add a comment @mentioning a maintainer to reopen. If you wish to exclude this issue from being marked as stale, add the "backlog" label. |
feat(opensearch-vectorindex): replace docker-based custom resource with typescript implementation
Fixes #567 #566
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license.