There are no reviews yet. Be the first to send feedback to the community and the maintainers!
= RightScale Amazon Web Services Ruby Gems Published by RightScale, Inc. under the MIT License. For information about RightScale, see http://www.rightscale.com == THE GEM IS NO LONGER MAINTAINED We recommend you use https://github.com/rightscale/right_aws_api instead. == DESCRIPTION: The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront. These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon. The RightScale AWS gems comprise: - RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud), VPC (Virtual Private Cloud) and the associated EBS (Elastic Block Store) - RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service) - RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) - RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) - RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB) - RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service - RightAws::AsInterface -- interface to Amazon Auto Scaling - RightAws::AcwInterface -- interface to Amazon Cloud Watch - RightAws::ElbInterface -- interface to Amazon Elastic Load Balancer - RightAws::RdsInterface -- interface to Amazon RDS instances == FEATURES: - Full programmmatic access to EC2, EBS, S3, SQS, SDB, CloudFront, AS, ACW, ELB and RDS. - Complete error handling: all operations check for errors and report complete error information by raising an AwsError. - Persistent HTTP connections with robust network-level retry layer using RightHttpConnection). This includes socket timeouts and retries. - Robust HTTP-level retry layer. Certain (user-adjustable) HTTP errors returned by Amazon's services are classified as temporary errors. These errors are automaticallly retried using exponentially increasing intervals. The number of retries is user-configurable. - Fast REXML-based parsing of responses (as fast as a pure Ruby solution allows). - Uses libxml (if available) for faster response parsing. - Support for large S3 list operations. Buckets and key subfolders containing many (> 1000) keys are listed in entirety. Operations based on list (like bucket clear) work on arbitrary numbers of keys. - Support for streaming GETs from S3, and streaming PUTs to S3 if the data source is a file. - Support for single-threaded usage, multithreaded usage, as well as usage with multiple AWS accounts. - Support for both first- and second-generation SQS (API versions 2007-05-01 and 2008-01-01). These versions of SQS are not compatible. - Support for signature versions 0 and 1 on SQS, SDB, and EC2. - Interoperability with any cloud running Eucalyptus (http://eucalyptus.cs.ucsb.edu) - Test suite (requires AWS account to do "live" testing). == THREADING: All RightScale AWS interfaces offer two threading options: 1. Use a single persistent HTTP connection per process. 2. Use a persistent HTTP connection per Ruby thread. Either way, it doesn't matter how many (for example) RightAws::S3 objects you create, they all use the same per-program or per-thread connection. The purpose of sharing the connection is to keep a single persistent HTTP connection open to avoid paying connection overhead on every request. However, if you have multiple concurrent threads, you may want or need an HTTP connection per thread to enable concurrent requests to AWS. The way this plays out in practice is: 1. If you have a non-multithreaded Ruby program, use the non-multithreaded setting. 2. If you have a multi-threaded Ruby program, use the multithreaded setting to enable concurrent requests to S3 (or SQS, or SDB, or EC2). 3. For running under Mongrel/Rails, use the non-multithreaded setting even though mongrel is multithreaded. This is because only one Rails handler is invoked at time (i.e. it acts like a single-threaded program) Note that due to limitations in the I/O of the Ruby interpreter you may not get the degree of parallelism you may expect with the multi-threaded setting. == GETTING STARTED: * For EC2 read RightAws::Ec2 and consult the Amazon EC2 API documentation at http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=87 * For S3 read RightAws::S3 and consult the Amazon S3 API documentation at http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=48 * For first generation SQS read RightAws::Sqs and consult the Amazon SQS API documentation at http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=31 * For second generation SQS read RightAws::SqsGen2, RightAws::SqsGen2Interface, and consult the Amazon SQS API documentation at http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1214&categoryID=31 Amazon's Migration Guide for moving from first to second generation SQS is avalable at: http://developer.amazonwebservices.com/connect/entry.jspa?externalID=1148 * For SDB read RightAws::SdbInterface, RightAws::ActiveSdb, and consult the Amazon SDB API documentation at http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=141 * For CloudFront (ACF) read RightAws::AcfInterface and consult the Amazon CloudFront API documentation at http://developer.amazonwebservices.com/connect/kbcategory.jspa?categoryID=213 == KNOWN ISSUES: - 7/08: A user has reported that uploads of large files on Windows may be broken on some Win platforms due to a buggy File.lstat.size. Use the following monkey-patch at your own risk, as it has been proven to break Rails 2.0 on Windows: require 'win32/file' class File def lstat self.stat end end - Attempting to use the Gibberish plugin (used by the Beast forum app) will break right_aws as well as lots of other code. Gibberish changes the semantics of core Ruby (specifically, the String class) and thus presents a reliability problem for most Ruby programs. - 2/11/08: If you use RightAws in conjunction with attachment_fu, the right_aws gem must be included (using the require statement) AFTER attachment_fu. If right_aws is loaded before attachment_fu, you'll encounter errors similar to: s3.amazonaws.com temporarily unavailable: (wrong number of arguments (5 for 4)) or 'incompatible Net::HTTP monkey-patch' This is due to a conflict between the right_http_connection gem and another gem required by attachment_fu. - 8/07: Amazon has changed the semantics of the SQS service. A new queue may not be created within 60 seconds of the destruction of any older queue with the same name. Certain methods of RightAws::Sqs and RightAws::SqsInterface will fail with the message: "AWS.SimpleQueueService.QueueDeletedRecently: You must wait 60 seconds after deleting a queue before you can create another with the same name." == REQUIREMENTS: RightAws requires REXML and the right_http_connection gem. If libxml and its Ruby bindings (distributed in the libxml-ruby gem) are present, RightAws can be configured to use them: RightAws::RightAWSParser.xml_lib = 'libxml' Any error with the libxml installation will result in RightAws failing-safe to REXML parsing. == INSTALL: sudo gem install right_aws == LICENSE: Copyright (c) 2007-2013 RightScale, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
wstunnel
Web-sockets tunnel for HTTP requests: facilitates requests to an HTTP server sitting behind a firewallcookbooks_public
rightscale_cookbooks
right_link
RightLink: server agent for RightScalescheduled_job
A thin flexible interface that enables you to define recurring jobs using DelayedJobcookbooks_public_windows
RightScale cookbooks used on Windowspolicy_templates
Flexera CMP built-in Policy Templates to provide effortless governance via automation.right_http_connection
right_api_client
rsc
Generic RightScale API client Go package and command line toolbehaveJS
right_popen
Asynchronous multiplatform popen implementation relying on EventMachinerightimage
persist
Simple persistence or replay log for golangflexera-plugins
Library of open source Flexera pluginsright_aws_api
Ruby gem to access many AWS servicescookbooks_opensource
right_st
RightScale ServerTemplate and RightScript toolcmdb
Command-line tool for configuration management databasesright_scraper
Download and incrementally update git, SVN and tar repositoriesdesign-kit
A branding guide for RightScale productsright_chimp
The chimp automation tool, created for RightScale operationsgo_middleware
A set of common Go web application middlewarego-boilerplate
Starting point for a Golang projectsql_partitioner
right_agent
Fundation code for RightNet agentsrs-premium_free_trial
right_api_cmd
CLI app for RightScale RightAPI 1.5 & 1.6 with capability to extract response fields.mock_em
Gem to mock EventMachine for testingprocess_watcher
Cross platform process watching solutionright_amqp
RightScale AMQP client rubygemcbi-oi-kubecost-exporter
rsssh
RightScale Secure Shellrightlink_scripts
RightScripts for RightScale's RightLink10 (aka RightLinkLite) agentsca-codeinsight-reports-project-vulnerabilities
Code Insight report showing project vulnerabilitiescollectd-container
Run collectd in a container to monitor the host, support CoreOSterraform-provider-rightscale
[ Archived ] A Terraform provider that leverages the RightScale platform - Moved here: https://github.com/terraform-providers/terraform-provider-rightscaleexamples
sca-codeinsight-utilities-inventory-search
Code Insight v7 Inventory Keyword Search Scriptsca-codeinsight-reports-claim-files
Report to allow users to show files they can claim based on evidienceaws-control-tower
Flexera Optima Integration with AWS Control Towerpublic_resources
Set of cross-product code samples, snippets and other helpful resources.ldap-group-sync
Script used to synchronize groups between LDAP and RightScale Governancebulk-rightlink10-enablement
Install RightLink 10 on a group of servers. Uses ssh keys or a password to access servers.sca-codeinsight-restapi-example
Example script utilizing the Code Insight REST API interfacesca-codeinsight-reports-cyclonedx
rackspace_cookbooks
sca-codeinsight-reports-third-party-notices
The sca-codeinsight-reports-third-party-notices repository is a report for Revenera's Code Insight product. This report allows a user to generate a Third Party Notices report to satisfy the attribution requirement of open source licenses. This report will automatically include licenses with attribution data where available.sca-codeinsight-reports-spdx
Code Insight SPDX reportgojiutil
Helpers for the golang goji web frameworkcassandra
croner
A simple cron implementation with an HTTP status interfaceequinix-public
policy_sdk
right_develop
Developer toolsui-charts
sca-codeinsight-reports-project-inventory-license-audit
Report to flag when restricted license are modified for an inventory itemlibnss-rightscale
Unix Name Service Switch (NSS) module that pulls passwd/shadow information from RightLink system management agent.cbi-oi-mongodb-atlas
MongoDB Atlas CBI UploadRightGridWindowsImplementation
This is a purely c# implementation of the rightgrid features. This is for windows users and in .net 4.0sca-codeinsight-reports-project-sbom
netflix-tools
aws-xray-daemon
Dockerfile for the AWS X-Ray daemon.self-service-assets
CMP Self Service Assetsaad_oauth
Command line tool that generates Oauth tokens from Azure Active Directoryrightscale-docs
New github org, same rightscale Docsscfld-rs-app
rightscale_upload
self-service-plugins
Self-service namespacesmysql
Version 2.8.2 of mysql gemsca-codeinsight-workflow-v6
Script that allows users to correlate inventory items in Code Insight v7 with requests in Code Insight v6sca-codeinsight-reports-project-vulnerability-exclusions
An Code Insight report to display the vulnerabilities that were excluded for each inventory as well as the reason why it was excludedsca-codeinsight-restapi-python
A common repo containing python based RESTAPI calls for Code InsightLove Open Source and this site? Check out how you can help us