Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cyclop

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cyclop

  • 0.1.8
  • Rubygems
  • Socket score

Version published
Maintainers
2
Created
Source

Cyclop

Job queue with MongoDB with emphasis on never losing any task even if worker fails hard (segfault).

Dependencies

  • Ruby >= 1.9.2
  • gem "mongo", "~> 1.3.1"
  • gem "posix-spawn", "~> 0.3.6"

Usage

  • Give Cyclop access to mongo:

      Cyclop.db = Mongo::Connection.new["database_name"]
    

    or with Replica-Sets

      Cyclop.db = Mongo::ReplSetConnection.new["database_name"]
    

    or if you're using MongoMapper:

      Cyclop.db = MongoMapper.database
    

    or if you're using Mongoid:

      Cyclop.db = Mongoid.database
    
  • Queue a new task:

      Cyclop.push({
        queue: :upload,
        job_params: {
          url: "http://example.com",
        },
      })
    
  • Queue a new task to process in 5 minutes, to retry 3 times in case of error with a 1 minute delay between each:

      Cyclop.push({
        queue: :convert,
        job_params: {
          tmp_file: "/tmp/uploaded_file_32.png",
        },
        delay: 300,
        retries: 3,
        splay: 60,
      })
    
  • Get next job:

      Cyclop.next
    
  • Get next job on specific queues:

      Cyclop.next :upload, :convert
    
  • Get next job on specific queues for a specific host:

      Cyclop.next :upload, :convert, host: "tartarus.local"
    
  • Get failed jobs (limit to 30):

      Cyclop.failed limit: 30
    
  • Get failed jobs (skip first 10, limit to 30):

      Cyclop.failed skip: 10, limit: 30
    
  • Requeue a failed job:

      job = Cyclop.failed.first
      job.requeue
    
  • Start a worker:

      cyclop -c config.yml
      
    
  • To get help about the format for config.yml

      cyclop -h
    

Build Status

Build Status

License

cyclop is Copyright © 2011 TalentBox SA. It is free software, and may be redistributed under the terms specified in the LICENSE file.

FAQs

Package last updated on 16 Jul 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc