I’m running the SDK locally and timing out? Any suggestions?
Depending on the feed volumes, you could be saturating your network. In the SDK, you can try changing the timeout setting variable in the following classes:
https://github.com/Nasdaq/CloudDataService/blob/master/ncdssdk/src/main/java/com/nasdaq/ncdsclient/internal/ReadSchemaTopic.java#L38 https://github.com/Nasdaq/CloudDataService/blob/master/ncdssdk/src/main/java/com/nasdaq/ncdsclient/internal/ReadSchemaTopic.java#L96
try increasing this variable to 20 seconds:
Duration sec = Duration.ofSeconds(10);