petasos 0.5.1 → 0.5.2

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
  SHA256:
3
- metadata.gz: 4ff98d0ee0f69c09a8436007524d6650b8ed5e82c4f2ced088b0a8da72ac31cd
4
- data.tar.gz: 4e16bc991db6f87baa0f056e64834251749c290b3e6aba9db66586ff6850a2fb
3
+ metadata.gz: cb623c372e4177df95553923e61d111337bb01b28ace724d443d2a2014631ad2
4
+ data.tar.gz: b914c31bbd9c6743f662c051b881ca9e9195542e5ec6b7b1c8890b33496470a6
5
5
  SHA512:
6
- metadata.gz: d0cc807729014a25f679cfadddcc8ee6851b2312438790e193ebd4b38ce9182d1a4ee4a0d0da07685eee1b125671841f1b7758b1708699d6b2328bd8ea74bab8
7
- data.tar.gz: 9b44f27902559d5b0d3df48ab822186d3de4f28627b86a0f1288000e4d1e61ad7985348ea6efaf03bb94d9ba654941b48ec72a2febe6d851d5825b83753c3f46
6
+ metadata.gz: 8882b063964e50f3c3e6109d652eedac094c619007d173760ccc769c2452b86ab875b1355c5434d431e20a1e634624dd642207484f76d1c13de6bcc96ceaa03d
7
+ data.tar.gz: 5e545b2c1fbe779f1effa4641fe3fa93b5f46aa60611bacaae6e24d9b57a5809fe5bac79c17ab5f996dfa80a62dfe2258b6289faa3ba9a817653b81f43e1adfd
@@ -112,6 +112,7 @@ class Petasos::Distributor
112
112
 
113
113
  # Process the backfills.
114
114
  @pools.each_pair do |pool_name, manifest_hash|
115
+ `mkdir -p petasos_distributor_workspace`
115
116
  # for each canonical exporter loop through the backfill lists, identify files that need moving and move them
116
117
  manifest_hash["canonical_exporters"].each do |canonical_exporter_details|
117
118
  exporter_seen_files = get_seen_file_hash(canonical_exporter_details.first, canonical_exporter_details.last, pool_name)
@@ -134,15 +135,15 @@ class Petasos::Distributor
134
135
  end
135
136
  end
136
137
  # clear the seen files locally.
137
- `rm seen_*`
138
+ `rm petasos_distributor_workspace/*`
138
139
  end
139
140
 
140
141
  def get_seen_file_hash(node_name, location_name, pool_name)
141
142
  find_node(node_name).grab_seen_file_for_location(location_name, pool_name)
142
143
  seen_file_hash = {}
143
144
  # some locations/pools do not generate a seen file.
144
- if File.file?("seen_#{location_name}_#{pool_name}.yaml")
145
- seen_file_list = YAML.load_file("seen_#{location_name}_#{pool_name}.yaml")
145
+ if File.file?("petasos_distributor_workspace/seen_#{location_name}_#{pool_name}.yaml")
146
+ seen_file_list = YAML.load_file("petasos_distributor_workspace/seen_#{location_name}_#{pool_name}.yaml")
146
147
  else
147
148
  seen_file_list = []
148
149
  end
@@ -144,12 +144,12 @@ class Petasos::Location
144
144
  end
145
145
  end
146
146
 
147
- def clear_all_seen_pool_files
148
- pools.each do |pool|
149
- yaml_path = File.join(path, "seen_#{pool["name"]}.yaml")
150
- write_yaml(yaml_path, [])
151
- end
152
- end
147
+ # def clear_all_seen_pool_files
148
+ # pools.each do |pool|
149
+ # yaml_path = File.join(path, "seen_#{pool["name"]}.yaml")
150
+ # write_yaml(yaml_path, [])
151
+ # end
152
+ # end
153
153
 
154
154
  def create_file_export_list(pool, file_paths)
155
155
  yaml_path = File.join(Dir.pwd, "exports_#{@config["name"]}_#{pool["name"]}_#{Time.now.strftime("%Y-%m-%d-%H:%M:%S")}.yaml")
data/lib/petasos/node.rb CHANGED
@@ -39,7 +39,7 @@ class Petasos::Node
39
39
  end
40
40
 
41
41
  def grab_seen_file_for_location(location_name, pool_name)
42
- `scp #{config["host"]}:#{config["path"]}/seen_#{location_name}_#{pool_name}.yaml .`
42
+ `scp #{config["host"]}:#{config["path"]}/seen_#{location_name}_#{pool_name}.yaml petasos_distributor_workspace/`
43
43
  end
44
44
 
45
45
  def parse_manifests
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: petasos
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Myers