Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9343500
D6199.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
D6199.diff
View Options
diff --git a/data/common/common.yaml b/data/common/common.yaml
--- a/data/common/common.yaml
+++ b/data/common/common.yaml
@@ -1814,6 +1814,11 @@
cls: local
db: "host=%{hiera('swh::deploy::vault::db::host')} port=%{hiera('swh::deploy::vault::db::port')} user=%{hiera('swh::deploy::vault::db::user')} dbname=%{hiera('swh::deploy::vault::db::dbname')} password=%{hiera('swh::deploy::vault::db::password')}"
+swh::deploy::graph::user: swhworker
+swh::deploy::graph::group: swhworker
+swh::deploy::graph::backend::listen::host: 127.0.0.1
+swh::deploy::graph::backend::listen::port: "%{alias('swh::remote_service::graph::port')}"
+
swh::deploy::journal::conf_directory: "%{hiera('swh::conf_directory')}/journal"
swh::deploy::journal::brokers:
diff --git a/site-modules/profile/manifests/swh/deploy/graph.pp b/site-modules/profile/manifests/swh/deploy/graph.pp
new file mode 100644
--- /dev/null
+++ b/site-modules/profile/manifests/swh/deploy/graph.pp
@@ -0,0 +1,41 @@
+# Deployment of graph (checks for now)
+
+# FIXME: Graph is currently managed manually and running through a venv. At some point,
+# adapt here to also install fully the graph from that manifest
+class profile::swh::deploy::graph {
+
+ $packages = ['python3-venv']
+ package {$packages:
+ ensure => 'present',
+ }
+
+ $user = lookup('swh::deploy::graph::user')
+ $group = lookup('swh::deploy::graph::group')
+
+ # install services from templates
+ $services = [ { # this matches the current status
+ 'name' => 'swhgraphshm',
+ 'status' => 'present',
+ 'enable' => false,
+ }, {
+ 'name' => 'swhgraphdev',
+ 'status' => 'running',
+ 'enable' => true,
+ }
+ ]
+ each($services) | $service | {
+ $unit_name = "${service['name']}.service"
+
+ # template uses:
+ # $user
+ # $group
+ ::systemd::unit_file {$unit_name:
+ ensure => present,
+ content => template("profile/swh/deploy/graph/${unit_name}.erb"),
+ mode => '0644',
+ } ~> service {$service['name']:
+ ensure => $service['status'],
+ enable => $service['enable'],
+ }
+ }
+}
diff --git a/site-modules/profile/templates/swh/deploy/graph/swhgraphdev.service.erb b/site-modules/profile/templates/swh/deploy/graph/swhgraphdev.service.erb
new file mode 100644
--- /dev/null
+++ b/site-modules/profile/templates/swh/deploy/graph/swhgraphdev.service.erb
@@ -0,0 +1,16 @@
+# Managed by puppet class profile::swh::deploy::graph
+# Changes will be overwritten
+
+[Unit]
+Description=swh graph
+After=swhgraphshm.service
+Requires=swhgraphshm.service
+
+[Service]
+Type=simple
+User=<%= @user %>
+Group=<%= @group %>
+ExecStart=/opt/swhgraph_venv/bin/swh graph rpc-serve -g /dev/shm/swh-graph/default/graph
+
+[Install]
+WantedBy=multi-user.target
diff --git a/site-modules/profile/templates/swh/deploy/graph/swhgraphshm.service.erb b/site-modules/profile/templates/swh/deploy/graph/swhgraphshm.service.erb
new file mode 100644
--- /dev/null
+++ b/site-modules/profile/templates/swh/deploy/graph/swhgraphshm.service.erb
@@ -0,0 +1,20 @@
+# Managed by puppet class profile::swh::deploy::graph
+# Changes will be overwritten
+
+[Unit]
+Description=swh graph shm mapper
+
+[Service]
+Type=oneshot
+User=<%= @user %>
+Group=<%= @group %>
+RemainAfterExit=yes
+# ExecStart=/opt/swhgraph_venv/bin/swh graph cachemount --graph /srv/softwareheritage/ssd/graph/2020-05-20/compressed/graph --cache /dev/shm/swh-graph/default
+ExecStart=mkdir -p /dev/shm/swh-graph/default
+ExecStart=sh -c "ln -s /srv/softwareheritage/ssd/graph/2020-12-15/compressed/* /dev/shm/swh-graph/default"
+ExecStart=sh -c "cp --remove-destination /srv/softwareheritage/ssd/graph/2020-12-15/compressed/graph.graph /dev/shm/swh-graph/default"
+ExecStart=sh -c "cp --remove-destination /srv/softwareheritage/ssd/graph/2020-12-15/compressed/graph-transposed.graph /dev/shm/swh-graph/default"
+ExecStop=rm -rf /dev/shm/swh-graph/default
+
+[Install]
+WantedBy=multi-user.target
diff --git a/site-modules/role/manifests/swh_graph_backend.pp b/site-modules/role/manifests/swh_graph_backend.pp
--- a/site-modules/role/manifests/swh_graph_backend.pp
+++ b/site-modules/role/manifests/swh_graph_backend.pp
@@ -2,4 +2,5 @@
class role::swh_graph_backend inherits role::swh_base {
include profile::docker
include profile::megacli
+ include profile::swh::deploy::graph
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jul 3, 1:35 PM (5 d, 21 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3217042
Attached To
D6199: Install graph services as-is
Event Timeline
Log In to Comment