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
Hello...
Is posible change this values with REST API?:
link_storage.link_strategy.use_scope: true
link_storage.link_classifier.type: MaxDepthLinkClassifier
link_storage.link_classifier.max_depth: 1
Or which file I'll can change the code for enable this, for use with the REST API.
Thanks
The text was updated successfully, but these errors were encountered:
No. Currently, only two crawl types of crawls (DeepCrawl or FocusedCrawl, which have specific hard-coded configurations can be started via the REST API.
The entry point for the REST API is at the class RestServer. The crawlers are created at CrawlersManager.createCrawler (line 79). More specifically, the configurations files are generated in the method createConfigForCrawlType of the same class.
A good way to modify this would be to add a third type of crawl (Custom) where the user provides the configuration via another REST API parameter.
Hello...
Is posible change this values with REST API?:
link_storage.link_strategy.use_scope: true
link_storage.link_classifier.type: MaxDepthLinkClassifier
link_storage.link_classifier.max_depth: 1
Or which file I'll can change the code for enable this, for use with the REST API.
Thanks
The text was updated successfully, but these errors were encountered: