Navigation :
DLC Request
A DLC Request contains information on what should be done by
the DataLoadControllerService and returns
a DLC Response.
| Key |
Required |
Type |
Description |
| operation |
Y |
String |
Operation key. |
| topics |
|
Set<String> |
Set of topics or aliases. |
| topicOverrides |
|
Set<ISourceTopicDescription> |
Topic overrides. |
| scope |
|
DlcOperationScope |
Scope |
| branch |
|
String |
The branch you want to operate on. |
| sourceName |
|
String |
The source name you want to operate on. |
| sourceType |
|
DlcSourceType |
The source type you want to operate on. |
REST
REST requests can be submitted to DataLoadControllerService via the /connectors/rest/dlc/v2/execute endpoint.
{
"operation": "LOAD",
"topics": [ "trades" ]
}
Java
Java requests can be submitted to DataLoadControllerService via the execute method.
DlcLoadRequest request = DlcLoadRequest.builder()
.topics("trades")
.build();