-
Notifications
You must be signed in to change notification settings - Fork 125
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: Support aerospike batching #2403
Conversation
The sinks currently kind of assume |
Yes, at the moment we support only inserts. Is it possible to use |
Yes, that's possible. It might be more efficient if you have mostly inserts (for example, for oracle, batch inserts use a fast path), but if there is a mix, using non-batch inserts will be more efficient (because a batch insert will always round-trip to the database, and to maintain ordering, the previous mixed batch will have to be flushed to the db as well, but a mix of inserts, updates and deletes will combine all these operations into a single batch). So, long story short, batch insert is mostly for insert-only workloads. For mixed workloads, batch insert is less efficient on the sink side |
Got it. Using simple insert now. |
8c30ee0
to
da02e19
Compare
10da44b
to
1e945ed
Compare
No description provided.