Sha256: 61fa2c5c93409ab8cf3881b2459e79c6ca49a3697c06399035766cd076fdce96

Contents?: true

Size: 831 Bytes

Versions: 5

Compression:

Stored size: 831 Bytes

Contents

# -*- ruby -*-

require 'ysql'
require 'stringio'

# Using COPY asynchronously

$stderr.puts "Opening database connection ..."
conn = YSQL.connect(:dbname => 'test' )
conn.setnonblocking( true )

socket = conn.socket_io

$stderr.puts "Running COPY command ..."
buf = ''
conn.transaction do
	conn.send_query( "COPY logs TO STDOUT WITH csv" )
	buf = nil

	# #get_copy_data returns a row if there's a whole one to return, false
	# if there isn't one but the COPY is still running, or nil when it's
	# finished.
	begin
		$stderr.puts "COPY loop"
		conn.consume_input
		while conn.is_busy
			$stderr.puts "  ready loop"
			select( [socket], nil, nil, 5.0 ) or
				raise "Timeout (5s) waiting for query response."
			conn.consume_input
		end

		buf = conn.get_copy_data
		$stdout.puts( buf ) if buf
	end until buf.nil?
end

conn.finish

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
yugabytedb-ysql-0.7 sample/async_copyto.rb
yugabytedb-ysql-0.6 sample/async_copyto.rb
yugabytedb-ysql-0.5 sample/async_copyto.rb
yugabytedb-ysql-0.4 sample/async_copyto.rb
yugabytedb-ysql-0.3 sample/async_copyto.rb