I am writing a riak client script which will have methods for connecting, getting, putting etc
require 'riak'
require 'logger'
$log=Logger.new(STDOUT)
class RiakClient
attr_accessor :client, :bucket
def initialize(bucket)
begin
@client=Riak::Client.new(:nodes => [{:http_port => 8091},{:http_port =>8092},{:http_port=>8093},{:http_port =>8094}])
@bucket=@client.bucket(bucket)
rescue RuntimeError => e
if $log.info e.message.match(/Connection refused/)
$log.info "Riak returned with RuntimeError - Connection refused, possibly due to non availaibility of nodes "
end
exit
end
end
def change_bucket(bucket)
@bucket=bucket
end
def bucket_hash()
return @client[@bucket.name.to_s]
end
def get( key)
if exists?(key)
obj =@bucket.get(key)
obj.raw_data
else
$log.info "The given key=\" #{key} \" doesnt exist"
end
end
def put( key, data, content_type)
begin
my_obj=@bucket.get_or_new(key)
my_obj.raw_data=data
my_obj.content_type=content_type
my_obj.store
rescue RuntimeError => e
if $log.info e.message.match(/Connection refused/)
$log.info "Riak returned with RuntimeError - Connection refused, possibly due to non availaibility of nodes "
end
exit
end
end
def exists?(key, options={})
begin
return @bucket.exists?(key, options)
rescue RuntimeError => e
$log.info e.message
$log.info "Riak returned with RuntimeError - Connection refused, possibly due to non availaibility of nodes "
exit
rescue Error => e
$log.info e.class
end
end
def delete(key, options={})
begin
result=@bucket.delete(key, options)
if result[:code]==404
$log.info "The given key=\"#{key}\" could not be found"
end
rescue Error => e
$log.info "something went wrong while deleting key=\"#{key}\""
end
end
def keys()
#NOTE - this is an expensive operation and should never be used.
begin
return @bucket.keys
rescue Error => e
$log.info "something went wrong when listing keys"
end
end
end
if __FILE__ == $0
my_client=RiakClient.new("doc")
my_client.put("index.html", "<html>some data here</html>", "text/html")
puts my_client.get("whatever")
puts my_client.get( "index.html")
#puts my_client.delete("index.html")
end
The only 2 exceptions i have caught are connection failure and key doesnt exist case, Am I missing any failure scenarios/cases where there could be some exceptions thrown etc?