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
There is evidence that suggests each tool is writing a message to the queue before aggregating the results of all tools before queuing. This puts a huge load on the DB causing outrageous costs and processing. There is only $30k available credits before all services are suspended.
Temporary mitigation for the crawler service:
Disable licensee and reuse tools at the expense of potentially more manual curations for missing licenses.
The text was updated successfully, but these errors were encountered:
Using StorageBackedQueue for local queue solved the problem of loosing
local tool tasks (requests) during shutdown. This comes at a increased
cost than in-memory queue, and is the same cost as the storage queue in
production.
Shutdown or restart are infrequent events. To reduce cost, use
InMemoryCrawlerQueue as local queue instead for now.
Task: clearlydefined#482
There is evidence that suggests each tool is writing a message to the queue before aggregating the results of all tools before queuing. This puts a huge load on the DB causing outrageous costs and processing. There is only $30k available credits before all services are suspended.
Temporary mitigation for the crawler service:
The text was updated successfully, but these errors were encountered: