-
Notifications
You must be signed in to change notification settings - Fork 50
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 integration to salesforce #16
Comments
Thanks for raising this feature request. Ingesting data from Salesforce into VectorFlow is definitely something we should explore supporting. Here are some initial thoughts on your questions: Regarding ingestion - It looks like the Salesforce REST API provides options for exporting data in JSON, XML, and CSV formats. I think the best approach would be to build a separate lightweight ingestion worker specifically for Salesforce data. This worker could handle authentication with Salesforce using OAuth, make API calls to export data, do any needed parsing/validation, and then pass the transformed data to VectorFlow's main ingestion pipeline. For security - OAuth should allow secure authentication for the ingestion worker to access Salesforce. We can encrypt any credentials stored in configuration. Restricting the worker to only access the needed Salesforce data exports will also be important. Suggested file formats - The Salesforce API supports JSON, XML and CSV. CSV may be the easiest to work with in VectorFlow if we can get full data exports. For more targeted exports, JSON or XML may be required. Some parsing would be needed in the ingestion worker before passing data to VectorFlow in a supported format like Parquet. Possible Next Steps, which can be further worked on: Exploring Salesforce OAuth authentication flows for the ingestion worker |
How feasible would it be to use this: https://llamahub.ai/l/tools-salesforce? I don't think we should have a separate salesforce worker. An endpoint, |
Small note: I'd look into how airbyte solve this: |
We are planning to add an Airbyte connector, maybe we can access the salesforce data through that |
@asadnhasan are you still planning on working on this? |
@david-vectorflow Yes, David I am still working on it. |
@asadnhasan hey do you still have an interest in building this out? |
Yes absolutely, I would love to contribute. Will come with something in 2-3 days. |
Vectorflow should be able to ingest raw data from Salesforce.
Some open questions to explore prior to implementation:
The text was updated successfully, but these errors were encountered: