Giter Site home page Giter Site logo

Comments (5)

gregorleban avatar gregorleban commented on June 30, 2024

Hi,

the warning is to let users know that they are using complex queries which seem to take a lot of time to return results. If you have a paid subscription, however, the accounts are never disabled. The accounts are disabled only for users with free trial accounts.

You don't need to add any time period between the individual requests. The library is by itself adding small time waits between individual requests.

from event-registry-python.

Konstantina-Lazaridou avatar Konstantina-Lazaridou commented on June 30, 2024

Hi @gregorleban , thanks for the answer.
I couldn't find this warning anywhere in the documentation though. Also, I have been using the same type of queries in the last days and the warning started happening suddenly without an explanation about which part of my query is/became too complex. Is it possible to make this more transparent in terms of the query complexity? Having a different error for paid subscriptions and free accounts would also help. Another issue is that the API became slower and slower with this warning (both because the query execution was slow and I think printing the warning in the console as well) and as a result I didn't manage to finish my monthly quota. I would really appreciate knowing which parameter made my search query that complex and slow.

This is the kind of queries I have been posing this week and I didn't change something when the warning started appearing:

query = QueryArticlesIter(
        keywordsLoc="body,title",
        ignoreKeywords=["keyword a", "keyword b"],
        ignoreKeywordsLoc="title",
        ignoreSourceUri=QueryItems.OR(items=lis_of_uris),
        keywords=QueryItems.AND(items=keywords),
        dataType=["news"],
        categoryUri=category_uri,
        isDuplicateFilter="skipDuplicates",
        dateStart="2019-01-01",
        dateEnd="2020-11-01",
        startSourceRankPercentile=0,
        endSourceRankPercentile=50,
      )
query_result = query.execQuery(event_registry_object,
                                   sortBy=sorting_method,
                                   sortByAsc=False,
                                   returnInfo=ReturnInfo(
                                     articleInfo=ArticleInfoFlags
                                     (concepts=True,
                                      categories=True,
                                      location=True,
                                      image=False)),
                                   maxItems=result_size)

from event-registry-python.

gregorleban avatar gregorleban commented on June 30, 2024

from event-registry-python.

Konstantina-Lazaridou avatar Konstantina-Lazaridou commented on June 30, 2024

Thank you very much @gregorleban . Unfortunately, even though I changed the category to "news/Business", after approximately 30 searches I start to get the warning again.

=========== WARNING ===========
The processing of the request took a lot of time (18 sec). By repeatedly making slow requests your account will be automatically disabled.

Could you please let me know which other factors can make my query slow?

This is how my query looks like:

query = QueryArticlesIter(
      keywordsLoc="body,title",
      ignoreKeywords=["a", "b", "c", "d", "e"],  # 5 keywords
      ignoreKeywordsLoc="title",
      ignoreSourceUri=ignore_sources,  # 30 sources
      keywords=QueryItems.AND(items=keywords),  # 1 to 3 keywords
      conceptUri=concept_uri,  # a wikipedia organizaytion entry
      dataType=article_types,  # only news
      categoryUri=news_categories,  #  news/business
      isDuplicateFilter=duplicate_filter,  # skipDuplicates
      dateStart=date_start,  # 2020-01-01
      dateEnd=date_end,  # today
      startSourceRankPercentile=0,
      endSourceRankPercentile=60,

from event-registry-python.

gregorleban avatar gregorleban commented on June 30, 2024

from event-registry-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.