cassback 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d38bae146c37b66749633f43db63d25fc9b48e9
4
- data.tar.gz: 779d848a729ab9c29dd827fce8c527170c391b5c
3
+ metadata.gz: 7ea67ebf7ce61ab5f9fe0606ab9cf15031029ca8
4
+ data.tar.gz: 38ad08644367525cd7e399ca5f4199fcce777aca
5
5
  SHA512:
6
- metadata.gz: 3fbd053d7deb0e13bd9643a8a83a70946cb448e5485af056c279a2235b55d5dbcb193a88dc50222075ce47b8f98577fd4a483a7dbf97d7ecee4322741b613b01
7
- data.tar.gz: e96c906c01f43675792ac17355da3d8148a5cee514585137a42de4ea7204899f96a0fe34f20ecbb939771b40e35e4962371793e6f8f00a493148114f3d0451e5
6
+ metadata.gz: 6e1f3ff9809b7d038dd9357b1be6d4b832e3aefa877798573bb154b2d4191ae6f048d569f7972d720b422567230239fcb5c79ad48fdf563d256f81170def9a93
7
+ data.tar.gz: d97a160971c5467cc531f510eb7777a16e25bd34f6d00599d383138555c61cd96d50b9194f9b219600eeeba8ce5b037088c7ecebca1882aa2d039a30445b6a5d
@@ -1,3 +1,9 @@
1
1
  module Cassback
2
- VERSION = '0.1.5'.freeze
2
+ # This represents the version that been currently deployed to rubygems.org
3
+ # For deploying a new version do the following :
4
+ # 1) Increment the version here
5
+ # 2) Build the gem using command : gem build cassback.gemspec
6
+ # 3) Push the gem using command : gem push cassback-<version>.gem
7
+ # 4) Commit the version change into source control system.
8
+ VERSION = '0.1.6'.freeze
3
9
  end
data/lib/hadoop.rb CHANGED
@@ -13,5 +13,6 @@ class Hadoop < WebHDFS::Client
13
13
  @retry_known_errors = true
14
14
  @retry_times = retry_times
15
15
  @retry_interval = retry_interval
16
+ @read_timeout = 300
16
17
  end
17
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cassback
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Van Hollebeke
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-04-26 00:00:00.000000000 Z
12
+ date: 2016-04-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -140,8 +140,6 @@ files:
140
140
  - bin/setup
141
141
  - cassback.gemspec
142
142
  - conf/local.yml
143
- - conf/preprod.yml
144
- - conf/prod.yml
145
143
  - lib/backuptool.rb
146
144
  - lib/cassandra.rb
147
145
  - lib/cassback/version.rb
data/conf/preprod.yml DELETED
@@ -1,15 +0,0 @@
1
- cassandra:
2
- config: "/etc/cassandra/conf/cassandra.yaml"
3
-
4
- hadoop:
5
- hostname: "jobs-user.hpc.criteo.preprod"
6
- port: 14000
7
- directory: "/tmp/cassandraback/preprod/"
8
- retryTimes : 5
9
- retryInterval : 1
10
-
11
- restore:
12
- destination: "cassback_restore"
13
-
14
- cleanup:
15
- retentionDays: 30
data/conf/prod.yml DELETED
@@ -1,15 +0,0 @@
1
- cassandra:
2
- config: "/etc/cassandra/conf/cassandra.yaml"
3
-
4
- hadoop:
5
- hostname: "jobs-user.hpc.criteo.prod"
6
- port: 14000
7
- directory: "/tmp/cassandrabackups/prod/"
8
- retryTimes : 5
9
- retryInterval : 1
10
-
11
- restore:
12
- destination: "cassback_restore"
13
-
14
- cleanup:
15
- retentionDays: 30