Class: TreasureData::Table

Inherits:
Model
  • Object
show all
Defined in:
lib/td/client/model.rb

Instance Attribute Summary collapse

Attributes inherited from Model

#client

Instance Method Summary collapse

Constructor Details

#initialize(client, db_name, table_name, type, schema, count, created_at = nil, updated_at = nil, estimated_storage_size = nil, last_import = nil, last_log_timestamp = nil, expire_days = nil, primary_key = nil, primary_key_type = nil) ⇒ Table

Returns a new instance of Table.

Parameters:

  • client (TreasureData::Client)
  • db_name (String)
  • table_name (String)
  • type (String)
  • schema (String)
  • count (Fixnum)
  • created_at (String) (defaults to: nil)
  • updated_at (String) (defaults to: nil)
  • estimated_storage_size (Fixnum) (defaults to: nil)
  • last_import (String) (defaults to: nil)
  • last_log_timestamp (String) (defaults to: nil)
  • expire_days (Fixnum, String) (defaults to: nil)
  • primary_key (String) (defaults to: nil)
  • primary_key_type (String) (defaults to: nil)


164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/td/client/model.rb', line 164

def initialize(client, db_name, table_name, type, schema, count, created_at=nil, updated_at=nil, estimated_storage_size=nil, last_import=nil, last_log_timestamp=nil, expire_days=nil, primary_key=nil, primary_key_type=nil)
  super(client)
  @database = nil
  @db_name = db_name
  @table_name = table_name
  @type = type
  @schema = schema
  @count = count
  @created_at = created_at
  @updated_at = updated_at
  @estimated_storage_size = estimated_storage_size
  @last_import = last_import
  @last_log_timestamp = last_log_timestamp
  @expire_days = expire_days
  @primary_key = primary_key
  @primary_key_type = primary_key_type
end

Instance Attribute Details

#countObject (readonly)



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#db_nameObject (readonly) Also known as: database_name



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#estimated_storage_sizeObject (readonly)



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#primary_keyObject (readonly)



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#primary_key_typeObject (readonly)

Returns the value of attribute primary_key_type.



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#schemaObject (readonly)



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#table_nameObject (readonly) Also known as: name



190
# File 'lib/td/client/model.rb', line 190

attr_reader :type, :db_name, :table_name, :schema, :count, :estimated_storage_size, :primary_key, :primary_key_type

#typeObject (readonly)



190
191
192
# File 'lib/td/client/model.rb', line 190

def type
  @type
end

Instance Method Details

#created_atTime?

Returns:

  • (Time, nil)


201
202
203
# File 'lib/td/client/model.rb', line 201

def created_at
  @created_at && !@created_at.empty? ? Time.parse(@created_at) : nil
end

#databaseDatabase

Returns:



226
227
228
229
# File 'lib/td/client/model.rb', line 226

def database
  update_database! unless @database
  @database
end

#database=(database) ⇒ Object

Parameters:

  • database (String)


196
197
198
# File 'lib/td/client/model.rb', line 196

def database=(database)
  @database = database if database.instance_of?(Database)
end

#deleteSymbol

Returns:

  • (Symbol)


243
244
245
# File 'lib/td/client/model.rb', line 243

def delete
  @client.delete_table(@db_name, @table_name)
end

#estimated_storage_size_stringString

Returns:

  • (String)


271
272
273
274
275
276
277
278
279
280
281
# File 'lib/td/client/model.rb', line 271

def estimated_storage_size_string
  if @estimated_storage_size <= 1024*1024
    return "0.0 GB"
  elsif @estimated_storage_size <= 60*1024*1024
    return "0.01 GB"
  elsif @estimated_storage_size <= 60*1024*1024*1024
    "%.1f GB" % (@estimated_storage_size.to_f / (1024*1024*1024))
  else
    "%d GB" % (@estimated_storage_size.to_f / (1024*1024*1024)).to_i
  end
end

#expire_daysFixnum?

Returns:

  • (Fixnum, nil)


221
222
223
# File 'lib/td/client/model.rb', line 221

def expire_days
  @expire_days ? @expire_days.to_i : nil
end

#export(storage_type, opts = {}) ⇒ Job

Parameters:

  • storage_type (String)
  • opts (Hash) (defaults to: {})

Returns:



266
267
268
# File 'lib/td/client/model.rb', line 266

def export(storage_type, opts={})
  @client.export(@db_name, @table_name, storage_type, opts)
end

#identifierString

Returns:

  • (String)


238
239
240
# File 'lib/td/client/model.rb', line 238

def identifier
  "#{@db_name}.#{@table_name}"
end

#import(format, stream, size) ⇒ Float

Parameters:

  • format (String)
  • stream (String, StringIO)
  • size (Fixnum)

Returns:

  • (Float)


259
260
261
# File 'lib/td/client/model.rb', line 259

def import(format, stream, size)
  @client.import(@db_name, @table_name, format, stream, size)
end

#last_importTime?

Returns:

  • (Time, nil)


211
212
213
# File 'lib/td/client/model.rb', line 211

def last_import
  @last_import && !@last_import.empty? ? Time.parse(@last_import) : nil
end

#last_log_timestampTime?

Returns:

  • (Time, nil)


216
217
218
# File 'lib/td/client/model.rb', line 216

def last_log_timestamp
  @last_log_timestamp && !@last_log_timestamp.empty? ? Time.parse(@last_log_timestamp) : nil
end

#permissionString

get the database’s permission as if they were the table’s

Returns:

  • (String)


233
234
235
# File 'lib/td/client/model.rb', line 233

def permission
  database.permission
end

#tail(count, to = nil, from = nil) ⇒ Array?

Parameters:

  • count (Fixnum)
  • to (Fixnum) (defaults to: nil)
  • from (Fixnum) (defaults to: nil)

Returns:

  • (Array, nil)


251
252
253
# File 'lib/td/client/model.rb', line 251

def tail(count, to=nil, from=nil)
  @client.tail(@db_name, @table_name, count, to, from)
end

#update_database!Object



283
284
285
# File 'lib/td/client/model.rb', line 283

def update_database!
  @database = @client.database(@db_name)
end

#updated_atTime?

Returns:

  • (Time, nil)


206
207
208
# File 'lib/td/client/model.rb', line 206

def updated_at
  @updated_at && !@updated_at.empty? ? Time.parse(@updated_at) : nil
end