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 +4 -4
- data/lib/cassback/version.rb +7 -1
- data/lib/hadoop.rb +1 -0
- metadata +2 -4
- data/conf/preprod.yml +0 -15
- data/conf/prod.yml +0 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ea67ebf7ce61ab5f9fe0606ab9cf15031029ca8
|
|
4
|
+
data.tar.gz: 38ad08644367525cd7e399ca5f4199fcce777aca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e1f3ff9809b7d038dd9357b1be6d4b832e3aefa877798573bb154b2d4191ae6f048d569f7972d720b422567230239fcb5c79ad48fdf563d256f81170def9a93
|
|
7
|
+
data.tar.gz: d97a160971c5467cc531f510eb7777a16e25bd34f6d00599d383138555c61cd96d50b9194f9b219600eeeba8ce5b037088c7ecebca1882aa2d039a30445b6a5d
|
data/lib/cassback/version.rb
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
module Cassback
|
|
2
|
-
|
|
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
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.
|
|
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-
|
|
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
|