You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the official file data ingestion API documentation is described as:
requestId: (required No) String used to track requests through the system. We recommend providing a random string with each request, e.g. a UUID.
This clearly indicates an insertFiles request should not have to supply a request ID, but also, that a UUID is only recommended but not required.
However, as written, there way to invoke RequestBuilder.generateInsertRequest(...) without providing an externally generated UUID.
Implementors should be allowed to provide any string value to this argument, or optionally not supply one at all.
Feature Request
Requesting any of the following:
additional overloads of RequestBuilder.generateInsertRequest(...) and RequestBuilder.generateHistoryRequest(...) which accept a requestId as a String parameter
permit null or "" values for requestId parameters on these methods, or provide additional method overloads without these arguments
or
Open up most or all private methods in class RequestBuilder to allow implementers extend this functionality themselves
The text was updated successfully, but these errors were encountered:
Background
According to the official file data ingestion API documentation is described as:
This clearly indicates an
insertFiles
request should not have to supply a request ID, but also, that a UUID is only recommended but not required.However, as written, there way to invoke
RequestBuilder.generateInsertRequest(...)
without providing an externally generated UUID.Implementors should be allowed to provide any string value to this argument, or optionally not supply one at all.
Feature Request
Requesting any of the following:
RequestBuilder.generateInsertRequest(...)
andRequestBuilder.generateHistoryRequest(...)
which accept arequestId
as aString
parameternull
or""
values forrequestId
parameters on these methods, or provide additional method overloads without these argumentsor
private
methods in classRequestBuilder
to allow implementers extend this functionality themselvesThe text was updated successfully, but these errors were encountered: