Code Monkey home page Code Monkey logo

fieldhand's Issues

Allow users to set custom HTTP timeouts

Currently, the Paginator is responsible for creating an HTTP client which actually makes the necessary requests to the OAI-PMH endpoint but offers no way for the user to set an open or read timeout for that client.

We should likely set some default (so that connections don't hang indefinitely) and allow users to configure their own timeouts.

Ability to retry on ResponseError

During harvesting the service randomly returned 500 server error

Fieldhand::ResponseError (Invalid response: 500 Internal Server Error)

Due to this I had to start harvesting from the beginning, because there is no mechanism to retry. It was really annoying on large dataset, so I end up monkey patching Fieldhand::Paginator#request method.

module Fieldhand
  class Paginator

    private

    alias_method :original_request_method, :request

    def request(query = {})
      send(:original_request_method, query).tap do |response|
        logger.debug('Fieldhand') { response.body }
      end
    rescue => e
      retries = retries.to_i + 1
      if retries < 30
        delay = retries * retries
        logger.warn('Fieldhand') { "Error fetching response: [#{e.class}] #{e}\nRetrying in #{delay} seconds" }
        sleep delay
        retry
      else
        raise e
      end
    end
  end
end

It would be really helpful to have such a mechanism in a gem.

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.