-
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
Handle maxDataNodes and maxDataPoints #1957
Comments
Highpriority if it creates problems for our current set of servers/datasets. |
What exactly maxDataNodes and maxDataPoints represent in the context of WitsmlLog objects? E.g. are the data nodes equal to WitsmlLog and the data points equal to WitsmlLogCurveInfo? |
Nodes is numbers of rows, points is number of cells. If that answers your questions. |
Ok, so maxDataPoints are number of curves/mnemonics in a log. In the case we looked at, where the number was 7000000, that means 700 curves. (Multiply nodes with number of curves, and you'll receive maxDataPoints.) |
test environment needed |
When attempting to copy log data from a server with larger values of maxDataNodes or maxDataPoints, the copy operation will fail due to attempting to send more data than the target server allows. Handle this by reworking all workers that handle log data to take maxDataNodes or maxDataPoints into consideration by splitting Add/Update queries into smaller chunks if they are larger than what the target server allows.
The text was updated successfully, but these errors were encountered: