-
Notifications
You must be signed in to change notification settings - Fork 129
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
What should be the approach to supporting Microsoft SQL Server and Oracle? #704
Comments
We don't have plans about mssql & oracle, and we didn't have requests for that. To add support of new databases we need specifications of db wire protocols that proprietary db rarely provides it |
I think AcraTranslator can be used for proprietary databases (no published data reading and writing protocols) such as Oracle, MSSQL,... I'm just wondering about its performance when processing large data, I'm not sure if it can handle data processing with tens of millions of records? |
Yes, you can use AcraTranslator for all other databases not supported by AcraServer. In this case, your app will be the proxy between the database and target data clients. You can implement your own DAO service to encapsulate all crypto and security operations, passing data through AcraTranslator before saving it to the database and before passing it forward to the client services.
Anyway, you need benchmarks and tests with your setup and required security controls. Any generic benchmark will not tell you whether will it provide the required SLA or not. And it's up to you how to handle it. You can scale AcraTranslator's horizontally, you can parallelize queries from your app to AcraTranslator, and so on. |
I looked at the ACRA documentation and found out that currently only MySQL/PostgreSQL is supported.
However, it supports SQL database management systems. So is there any way to integrate with Microsoft SQL Server and Oracle?
What should be the approach to supporting Microsoft SQL Server and Oracle?
The text was updated successfully, but these errors were encountered: