IBM Watson VIsual Recognition - ERROR: excessive number of concurrent HTTP connections

拥有回忆 提交于 2019-12-12 02:25:19

问题


Having trouble adding a class to one of my custom classifiers using Visual Recognition, when executing the task I get the below error:

status: 500, error: If you are seeing this message, you are likely making an excessive number of concurrent HTTP connections to this service. Please check the concurrency limits for your assigned service tier.

Does anyone know what this means or where I can manage my "concurrency limits"?

Edit: This is the code I'm using to make the call of adding a new class.

File positiveImgs = new File(".../" + className + ".zip");

ClassifierOptions options = 
   new ClassifierOptions.Builder().addClass(className, positiveImgs).build();

VisualClassifier result;
result = service.updateClassifier(classifierID, options).execute();

System.out.println(result);

Thanks


回答1:


This was resolved, it looks like it was an issue with IBM Watson services today which was resolved by IBM.



来源:https://stackoverflow.com/questions/39900391/ibm-watson-visual-recognition-error-excessive-number-of-concurrent-http-conne

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!