Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. digraph Migrering {
  2. rankdir = TB;
  3. graph [labeljust="l"];
  4. fontsize=16;
  5. node[fontsize=12];
  6. edge[fontsize=11];
  7.  
  8. subgraph cluster_0 {
  9. label="Grunnlagsdata fra Bibliofil";
  10. style=filled;
  11. color=lightgrey;
  12. node[shape=record, style=filled];
  13.  
  14. vmarc[label="{<f0>vmarc|<f1>~1,8 mill. poster}"];
  15. exemp[label="{<f0>exemp|<f1>~1,3 mill. eks.}"];
  16.  
  17. }
  18.  
  19.  
  20. subgraph cluster_2 {
  21. label="Bearbeiding, filtrering og sammenslåing av data";
  22. color=white;
  23.  
  24. "catalogue.mrc"[label="{<f0>catalogue.mrc|<f1>~400,000 poster, ~1,3 mill eks.}", shape=record];
  25. "catalogue.marcxml"[label="{<f0>catalogue.marcxml|<f1>~400,000 poster, uten eks.}", shape=record];
  26. "branches.sql"[label="branches", shape=record];
  27. "itypes.sql"[label="item types", shape=record];
  28. "avalues.sql"[label="authorized values (item statuses)", shape=record];
  29. virtuoso[label="virtuoso triplestore", shape=box3d];
  30. migmarc2rdf;
  31. SPARQL[label="SPARQL rules (gen. works etc)"];
  32. SQL[label="SQL inserts"];
  33. catmassage -> {"catalogue.mrc", "catalogue.marcxml", "branches.sql", "itypes.sql", "avalues.sql"};
  34. {"branches.sql", "itypes.sql", "avalues.sql"} -> SQL;
  35. "catalogue.marcxml" -> migmarc2rdf -> virtuoso -> construct;
  36. virtuoso -> SPARQL -> virtuoso;
  37. }
  38.  
  39. subgraph cluster_3 {
  40. label="LS.EXT";
  41. style=filled;
  42. color=lightgreen;
  43. Services;
  44. Koha;
  45. Fuseki[shape=box3d];
  46. MySQL[shape=box3d];
  47. Elasticsearch[shape=box3d];
  48.  
  49. "catalogue.mrc" -> bulkmarcimport -> Koha;
  50. Koha -> MySQL;
  51. Services -> {Koha, Fuseki, Elasticsearch};
  52.  
  53. }
  54.  
  55. {vmarc, exemp} -> catmassage;
  56. SQL -> MySQL;
  57. construct -> Fuseki;
  58. Koha -> sync -> Fuseki;
  59. indexing -> Services;
  60.  
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement