News | Graph Massivizer EU Project https://graph-massivizer.eu Thu, 26 Feb 2026 05:46:35 +0000 en-US hourly 1 https://wordpress.org/?v=7.1 https://graph-massivizer.eu/wp-content/uploads/sites/27/2023/01/cropped-favicon-32x32.gif News | Graph Massivizer EU Project https://graph-massivizer.eu 32 32 From Complex Queries to Intelligent Assistants: How Graph-Powered AI is Transforming Data Center Operations (UNIBO) https://graph-massivizer.eu/from-complex-queries-to-intelligent-assistants-how-graph-powered-ai-is-transforming-data-center-operations-unibo/ Thu, 18 Dec 2025 14:42:25 +0000 https://graph-massivizer.wp.itec.aau.at/?p=1377 Innovations from the University of Bologna and CINECA in the Graph-Massivizer Project

Authors: Prof.Andrea Bartolini (Associate Professor at University of Bologna) and Junaid Ahmed Khan (PhD student and Research Fellow at the University of Bologna)

Modern data centers and high-performance computing (HPC) systems generate extraordinary volumes of telemetry data. The CINECA Marconi100 supercomputer alone produced approximately 49 terabytes of uncompressed operational data, with individual systems containing up to one million unique sensors sampling at 20-second intervals [1]. This data flows continuously from compute nodes, memory subsystems, power delivery infrastructure, cooling systems, and storage components—creating an unprecedented wealth of operational intelligence. Yet despite this abundance, extracting actionable insights remains remarkably difficult.

The fundamental challenge lies not in data collection but in data access. Operators seeking to understand system behavior must navigate three simultaneous barriers: deep domain expertise in HPC operations, intimate knowledge of the specific monitoring framework architecture, and proficiency in the query languages and APIs of underlying NoSQL databases. This triple requirement effectively restricts analytical capabilities to a small group of specialists, leaving the vast potential of operational telemetry largely untapped.

Researchers at the University of Bologna, in collaboration with CINECA (Italy’s largest supercomputing center), have spent several years addressing this challenge through the EU-funded Graph-Massivizer project. Their work traces an evolution from complex manual queries through structured knowledge representations to an intelligent natural language assistant capable of answering operational questions with over 92% accuracy—transforming how facility managers and engineers interact with their data.


Figure 1: Examon’s massive scale and data heterogeneity

The Marconi100 (M100) system at CINECA utilizes a holistic monitoring framework for operational data analytics called “ExaMon”. It is designed to collect data from various sources, including hardware sensors, software logs, and performance metrics, and stores this data in a NoSQL database (Cassandra, with KairosDB for time-series) in a centralized repository. Figure 1 shows the complexity of the data collected at the M100 system using the ExaMon framework. It integrates data from nine specialized plugins that collect a wide spectrum of information—from air-conditioning and power-distribution data (Vertiv, Schneider, Logics) to node-level sensor telemetry (IPMI), cluster-wide performance metrics (Ganglia, SLURM, Nagios), and external environmental conditions (Weather). Each plugin contributes its own set of metrics and plugin-specific fields, resulting in a highly heterogeneous and multidimensional dataset. This diversity of data sources underscores the complexity of the monitoring environment.

Structured Understanding Through Domain Ontology

The research began by recognizing that the schema-less nature of NoSQL databases—while enabling flexibility and scalability—creates fundamental obstacles for complex analytical queries. Without predefined schemas, users must manually establish connections between different data sources, navigate vendor-specific naming conventions, and construct multi-step query chains that require extensive domain knowledge.

The team’s first innovation was developing a domain-specific ontology for operational data analytics telemetry [2]. Unlike existing data center ontologies that focus primarily on inventory cataloging and infrastructure documentation, this ontology captures the critical relationships between topological components, hardware systems, and job execution data. The representation mirrors how domain experts actually conceptualize HPC operations: racks contain compute nodes positioned in three-dimensional space, plugins organize sensors that produce timestamped readings, and submitted jobs connect directly to the computational resources they utilize. Figure 2 shows the developed ODA ontology.

Figure 2: Operational data analytics (ODA) Ontology

This structured representation enables queries through SPARQL, a graph query language whose logical structure follows the natural relationships in the data. Comparative analysis revealed dramatic simplifications: complex queries requiring dozens of lines of Python code with multiple sub-queries in NoSQL approaches could be expressed in just five to fifteen lines of SPARQL. More significantly, these queries follow paths that non-experts can understand by tracing relationships through the ontology—from rack to node to plugin to sensor to reading—without requiring intimate knowledge of database internals.

The approach proved particularly valuable for queries involving relationships across data sources. Calculating the average power consumption during a specific job’s execution, for instance, traditionally requires querying the job table to identify execution times and allocated nodes, then separately querying sensor tables for power readings during those intervals, and finally correlating the results through manual data manipulation. With the knowledge graph approach, this becomes a single query that traverses the explicit job-to-node-to-sensor-to-reading pathway defined in the ontology.

Confronting the Scalability Challenge

While the ontology approach proved effective for query simplification, a fundamental scalability challenge emerged during implementation. Converting time-series telemetry data into RDF triples resulted in storage requirements approximately 745 times larger than equivalent NoSQL representations. For a single month of data from just one monitoring plugin on the Marconi100 system, this translated to nearly three terabytes of graph storage versus four gigabytes in compressed Parquet format. Such overhead rendered full materialization impractical for production environments.

The solution emerged through virtual knowledge graphs—a technique that constructs graph representations on-demand, containing only the data relevant to answer a specific user query. Rather than materializing the entire dataset as a persistent graph, the system dynamically extracts entities from user questions, fetches relevant data from the NoSQL datalake based on identified time ranges and metrics, constructs a temporary lightweight graph, and executes queries against this focused representation.

Figure 3: Data Analytics (DA) Chatbot

Figure 3 shows the proposed end-to-end architecture for the Data Analytics (DA) chatbot for data centers and HPC [3]. The architecture contains five components: (1) Frontend, built using streamlit library, that provides a chatbot interface to the user, (2) Backend, that is built using FlaskAPI, once it receives a user question, two concurrent processes of SPARQL generation and Virtual Knowledge Graph (VKG) generation is started. SPARQL is generated using the (3) LLM inference service, that takes as input the user input prompt in natural language along with the ODA ontology, to guide the LLM about the logical data model, and a set of few-shot examples as context. Meanwhile, the second concurrent task of VKG takes the user prompt, and using natural language processing tools, such as pattern matching and rule-based critertias to extract the necessary entities from the user text that guides the system of which parameters and sensor data to fetch from the (5) IoT datalake component of the system. Once these entities are extracted, using templated query codes, specific to the IoT datalake, the system fetches the data and then maps it according to the ODA ontology to create the virtual knowledge graph and then this graph is stored inside the (4) Graph database. Inside the graph database, their is already a Base-KG that contains the system’s topological and spatial metadata and combining these with the incoming virtual knowledge graph, the system now has the required data to get the answer to the initial natural language user question. Finally, the generated SPARQL query is executed on the SPARQL endpoint of the (4) Graph Database, and the corresponding answer is then returned back to the user on the (1) Frontend, as a table, or in case of a large table with more than 50 rows, as a CSV downloadable link.

This approach maintained the semantic advantages of knowledge graphs while reducing storage overhead to manageable levels. The maximum observed virtual knowledge graph size across evaluated queries was just 179 megabytes—trivial compared to multi-terabyte full materializations. The team further optimized the generation pipeline through several technical refinements: adopting the Polars library for data processing (achieving 92.75% faster data fetching than the initial Pandas implementation), selecting N-Triples serialization format for its speed advantages, and implementing batch triple generation rather than incremental graph construction.

Natural Language Meets Graph Intelligence

The culmination of this research trajectory is EXASAGE—the first operational data analysis assistant for HPC systems [4]. The figure 4 shows the architecture diagram of EXASAGE framework. EXASAGE combines the structured power of knowledge graphs with large language models to create a natural language interface for telemetry data, enabling operators to ask questions in ordinary language and receive accurate, contextually appropriate responses.

The system architecture reflects careful integration of complementary technologies. An input validator extracts key entities from natural language questions—identifying nodes, racks, jobs, metrics, and time ranges through rule-based algorithms aligned with the domain ontology. The LLM-query generator translates these validated questions into SPARQL queries, grounded by the ontology schema and few-shot examples that demonstrate correct query patterns. Simultaneously, the virtual knowledge graph generator constructs a query-specific graph containing precisely the data needed to answer the question. A query refinement stage then corrects common LLM-generated syntax errors through pattern matching before execution.

Figure 4: EXASAGE: The first data center operational data analysis assistant, shown as a block diagram.

Evaluation across one thousand queries demonstrated remarkable effectiveness. The system achieved 93.6% accuracy in generating correct SPARQL queries and retrieving accurate answers—compared to just 25% accuracy when large language models attempted to generate equivalent NoSQL queries directly. This dramatic difference stems from the knowledge graph’s explicit encoding of relationships between data sources: information that NoSQL approaches require users to establish manually through multiple coordinated queries.

The knowledge graph approach also proved more efficient in practice. SPARQL queries generated by the system were significantly more concise, with 56.89% fewer output tokens on average, and executed faster despite the additional virtual knowledge graph construction step. Optimization efforts reduced complete end-to-end latency from 20.36 seconds to just 3.03 seconds—an 85% improvement that makes the system practical for interactive analytical sessions rather than batch processing alone [3].

Toward Universal Interoperability

The most recent advancement extends this work toward cross-system analytics through a unified ontology designed to support multiple heterogeneous HPC environments [5]. The figure 5 shows the developed ontology, comprising 164 axioms: 104 logical axioms defining semantics (e.g., domains, ranges, characteristics, inverses) and 60 declarations introducing named entities. The ontology defines 12 classes representing core HPC concepts—jobs, compute nodes, racks, sensors, users—and includes 23 object properties for inter-class relations (e.g., job-tonode, rack-to-node) and 25 data properties linking individuals to literals (e.g., timestamps, metrics). Designed for interoperability across heterogeneous HPC systems, the schema supports multiple facilities via DataCenter and HPCSystem, captures workloads through User, Job, and JobMetric, and models infrastructure layout with Rack, ComputeNode, and Position. Monitoring data is represented via Sensor and SensorReading, while temporal dynamics are abstracted with the Time class, enabling representation of time-dependent events and relationships. The Plugin class models software components involved in monitoring and analysis. The research team validated this generalized schema on the two largest publicly available operational datasets from top-ranked supercomputers: the Marconi100 dataset [1] from CINECA in Italy and F-DATA [6] from the Fugaku supercomputer at RIKEN in Japan.

Figure 5: Unified ODA Ontology

This unification required addressing fundamental differences in how facilities conceptualize and record operational data. While the Marconi100 telemetry follows a sensor-centric model where time-series readings attach to physical monitoring devices, Fugaku’s F-DATA dataset is fundamentally job-centric—recording performance metrics per job rather than per sensor. The unified ontology accommodates both paradigms through new classes that capture data center and HPC system hierarchies, user-specific workload patterns, and job-level metrics alongside traditional sensor readings.

The team also addressed storage efficiency through ontology design optimizations. By eliminating redundant classes, centralizing timestamp representations through a dedicated Time class with Unix encoding, and relocating unit specifications from individual readings to parent sensor definitions, the unified ontology achieves 38.84% storage reduction compared to the previous approach. Additional deployment configurations using blank nodes for sensor readings provide a further 26.82% reduction when global addressability of individual readings is not required.

The unified ontology was validated against 36 competency questions spanning system topology, sensor monitoring, job execution analysis, user activity patterns, scheduling efficiency, and cross-system comparative analytics. Questions that would be essentially impossible with traditional approaches—such as comparing average job execution times across different HPC systems or identifying which facility achieves better energy efficiency per job—become answerable through standardized SPARQL queries operating over the unified schema.

Implications for Operational Intelligence

This research progression—from complex NoSQL queries through unified ontologies and virtual knowledge graphs to intelligent natural language assistants—represents a fundamental shift in how data center operators can interact with telemetry data. The implications extend beyond high-performance computing to any IoT environment generating heterogeneous time-series data at scale.

The core insight is that knowledge graphs, when combined with modern language model capabilities and careful architectural optimization, can bridge the gap between massive operational datasets and actionable insights. By encoding domain semantics explicitly and leveraging the reasoning capabilities of language models, these systems enable facility managers, system administrators, and engineers to query telemetry data using questions they would naturally ask—rather than requiring mastery of database internals and query languages.

The accuracy improvements are particularly striking. A 92-93% query accuracy rate versus 25% for direct LLM-to-NoSQL approaches reflects more than incremental optimization; it demonstrates that providing structured semantic context transforms language models from unreliable query generators into effective analytical partners. The knowledge graph supplies precisely the relational information that large language models struggle to infer from unstructured database schemas.

As data centers grow in complexity to meet AI-driven computational demands, these graph-powered approaches offer a scalable path toward intelligent, accessible operational analytics. The research demonstrates that the barrier between operational data and operational insight need not remain as high as current practices suggest—and that thoughtful integration of semantic technologies with modern AI can democratize access to the intelligence hidden within facility telemetry.

Conclusion

In conclusion, thanks to the Graph-Massivizer project, CINECA and UNIBO have demonstrated that graph-based data representation is a key enabler for future autonomous and sustainable data centres: democratizing data and trasforming them from a storage overhead into actionalble insight. This research will be a valuable asset for the future development of data centres, enabling simpler, more effective, and more intelligent operational optimization.

References

[1] Borghesi, Andrea, et al. “M100 Exadata: a data collection campaign on the CINECA’s Marconi100 Tier-0 supercomputer.” Scientific Data 10.1 (2023): 288.

[2] Junaid Ahmed Khan, Martin Molan, Matteo Angelinelli, and Andrea Bartolini. 2024. ExaQuery: Proving Data Structure to Unstructured Telemetry Data in Large-Scale HPC. In Companion of the 15th ACM/SPEC International Conference on Performance Engineering (ICPE ’24 Companion). Association for Computing Machinery, New York, NY, USA, 127–134. https://doi.org/10.1145/3629527.3652898

[3] Junaid Ahmed Khan, Hiari Pizzini Cavagna, Andrea Proia, Andrea Bartolini. “From Data Center IoT Telemetry to Data Analytics Chatbots — Virtual Knowledge Graph is All You Need.” arXiv preprint, https://doi.org/10.48550/arXiv.2506.22267

[4] Khan, Junaid Ahmed, Martin Molan, and Andrea Bartolini. “EXASAGE: The First Data Center Operational Data Analysis Assistant.” Future Generation Computer Systems (2025): 108185.

[5] Khan, Junaid Ahmed, and Andrea Bartolini. “A Unified Ontology for Scalable Knowledge Graph-Driven Operational Data Analytics in High-Performance Computing Systems.” arXiv preprint arXiv:2507.06107 (2025)

[6] Antici, F., Bartolini, A., Domke, J. et al. F-DATA: A Fugaku Workload Dataset for Job-centric Predictive Modelling in HPC Systems. Sci Data 12, 1321 (2025). https://doi.org/10.1038/s41597-025-05633-1

]]>
Neurosymbolic quality monitoring for sustainable manufacturing https://graph-massivizer.eu/neurosymbolic-quality-monitoring-for-sustainable-manufacturing/ Wed, 31 Jul 2024 13:51:12 +0000 https://graph-massivizer.wp.itec.aau.at/?p=980 Graph Massivizer will be a big step towards harmonizing neural and symbolic AI methods, a revolutionary approach to quality estimation in welding processes, and a profound leap towards realizing a genuinely sustainable automotive industry.

In the fast-paced world of modern manufacturing, quality monitoring and analysis are paramount to ensuring the reliability and performance of products. As industries strive for excellence, maintaining stringent quality standards across all manufacturing processes becomes essential. This is particularly true for intricate and precision-dependent operations such as welding and soldering, which are foundational to the integrity of countless products.
In the fast-paced world of modern manufacturing, quality monitoring and analysis are paramount to ensuring the reliability and performance of products. As industries strive for excellence, maintaining stringent quality standards across all manufacturing processes becomes essential. This is particularly true for intricate and precision-dependent operations such as welding and soldering, which are foundational to the integrity of countless products.

For Bosch  a global leader in engineering, the importance of quality monitoring cannot be overstated. The company’s diverse product line—from automotive components to home appliances—relies heavily on precise manufacturing processes. For instance, the production of an electric drive involves several intricate welding operations that are critical to the product’s functionality and durability. However, quality monitoring not only ensures product excellence but is also a fundamental lever towards a sustainable automotive industry. By optimizing manufacturing processes and reducing waste, robust quality control measures contribute to sustainable manufacturing practices.
However, conventional quality monitoring often presents significant challenges, mainly derived from the costs associated to the required human intervention, as traditional methods for estimating welding quality are often time consuming and expensive. For example, for evaluating the quality of spot-welding operations, one common approach involves measuring the diameters of welding spots using ultrasound technology, which, while effective, requires specialized equipment and skilled operators. Apart from this, destructive testing methods are also used, mainly by pulling the welded metal sheets apart and measuring the required force to separate them, leading to an increase in waste.
As such, to address the challenges in quality monitoring, researchers have developed data-driven methods that approach the problem from a multivariate time series perspective. These models estimate quality based on sensor measurements from the spot-welding machine. In Graph Massivizer we aim at the next generation of such methods that offer versatile explainability and transparency by leveraging expert knowledge.

Aim
The aim of our use case is to develop next-generation quality monitoring methods that go beyond the more traditional data-driven approach by combining knowledge and sensor measurements.
On the one hand, we refer to sensor-measurements as the time series that are produced during the welding operation, which can have the form of currents, voltages, temperatures… These are variables that evolve during each weld and are fundamental to the estimation of the quality (e.g., if an abnormality has been detected in the current that flows through the cathode of the welding machine, the presence of an anomaly will be likely).
On the other hand, we refer to knowledge that encompasses diverse and rich prior information about the process, derived from expert-knowledge, machine manuals, anomaly reports, etc. This knowledge is represented as a Knowledge-Graph, and it comprises what experts on spot-welding would know.

Benefits
The benefits of building models that combine knowledge and data-driven methods are immense, both from the accuracy and explainability sides. On the one hand, incorporating expert knowledge into quality prediction enhances transparency. This increased clarity makes it easier to apply corrective measures and potentially facilitates preventive maintenance. And on the other hand, by integrating expert knowledge with sensor measurements, these models adopt a more informed approach to quality estimation, resulting in more accurate predictions.

All in all, we believe that Graph Massivizer will be a big step towards harmonizing neural and symbolic AI methods. It introduces a revolutionary approach to quality estimation in welding processes, and signifies a profound leap towards realizing a genuinely sustainable automotive industry.

Authors: Mikel Mendibe, Antonis Klironomos, Mohamed Gad-Elrab, Evgeny Kharlamov (Ph. D. at Bosch)

]]>
Building massive knowledge graphs using automated ETL pipelines https://graph-massivizer.eu/building-massive-knowledge-graphs-using-automated-etl-pipelines/ Fri, 09 Feb 2024 13:25:30 +0000 https://graph-massivizer.wp.itec.aau.at/?p=863 In this blog post, written by our colleagues Wolfgang Schell and Pauline Lencio at metaphacts , the Graph-Massivizer team explains how to build a massive knowledge graph from existing information or external sources in a repeatable and scalable manner.

The post describes the process step-by-step, and discuss how the Graph-Massivizer project supports the development of multiple large knowledge graphs and the considerations you need to take when creating your own graph.

Keep reading HERE and stay tuned for more outcomes soon on line!

]]>
From Big Data to Green Data: Reducing the Environmental Impact of Data Science with Graph Massivizer https://graph-massivizer.eu/from-big-data-to-green-data-reducing-the-environmental-impact-of-data-science-with-graph-massivizer/ Tue, 26 Dec 2023 22:45:46 +0000 https://graph-massivizer.wp.itec.aau.at/?p=857 Data analysis and data processing are technologies that are increasingly prevalent in everyday life, with applications in research, industry, commerce, and public administration. However, they also have a significant environmental impact, both direct and indirect, due to their inherent nature.

According to a report by the International Energy Agency (IEA), the collection, storage, processing, and analysis of data account for an estimated 1 to 1.5 percent of global energy consumption. Furthermore, the same IEA report indicates that data centers and the data transmission network are responsible for approximately 1 percent of greenhouse gas emissions related to electricity production and consumption, significantly contributing to global warming. Additionally, the use of non-renewable resources, such as fossil fuels and rare metals, in hardware production should not be overlooked. Furthermore, data centers consume substantial amounts of water, as they require a constant temperature and humidity for optimal operation. Many of them use a liquid cooling system, which can lead to water recycling but also results in increased electricity consumption. While the continuous evolution of technologies in data science advances technological progress, it also leads to rapid obsolescence of hardware and software. This inevitably results in the generation of electronic waste, which may contain toxic additives and hazardous substances if not properly disposed of. According to the United Nations (UN) Agency, the world generated 53.6 metric tonnes (Mt) of electronic waste in 2019, and estimates predict that this figure will increase to 74.7 Mt by 2030.

In this context, the work of Graph Massivizer is of utmost importance. Focusing on the four areas investigated in the project (“Sustainable Green Finance,” “Global Environment Protection Foresight,” “Green Artificial Intelligence for the Sustainable Automotive Industry,” and “Data Centre Digital Twin for Exascale Computing”), Graph Massivizer aims to improve data analysis efficiency by 70 percent and reduce the energy impact of extract-transform-load operations on data by 30 percent. Moreover, it is expected to enhance data center energy efficiency by a factor of two and reduce greenhouse gas emissions associated with operations on graph-organized databases by over 25%. The “Data Centre Digital Twin” use case, involving CINECA and the Alma Mater Studiorium University of Bologna, is crucial. It revolves around creating a virtual representation of the world’s fourth-fastest supercomputer, LEONARDO, in a digital graph form. This representation is fundamental for studying and comprehending its operation, enabling a clear and concise portrayal of all possible relationships within a complex structure like a data center. The study and analysis of these relationships lay the foundation for optimizing the efficiency and sustainability of the next generation of supercomputers, known as exascale supercomputers.

While data science and data processing play essential roles in the fight against climate change, they also possess the potential to be indispensable tools for environmental sustainability. The Graph Massivizer project serves as an example of how technology can drive progress, ultimately reversing the course of climate change and reducing the environmental impact of groundbreaking discoveries

CINECA, December 2023

]]>
The importance of the semantic knowledge graph https://graph-massivizer.eu/the-importance-of-the-semantic-knowledge-graph/ Tue, 26 Dec 2023 22:37:30 +0000 https://graph-massivizer.wp.itec.aau.at/?p=852 This article is the first in a series of two where our partner metaphact presents a perspective on what is considered a semantic knowledge graph, why it’s important (specifically in the context of AI and LLMs) and reflect on how they can drive the enterprises’ goals forward.

Have a look HERE and stay tuned for the next blog signed by metaphacts!

]]>
Unleashing the Power of Graph-Massivizer: Transforming Data Analysis https://graph-massivizer.eu/unleashing-the-power-of-graph-massivizer-transforming-data-analysis/ Wed, 13 Dec 2023 21:56:32 +0000 https://graph-massivizer.wp.itec.aau.at/?p=826 The Webinar, held on November 29th 2023 is now on line on the Graph-Massivizer YouTube Channel.

Have a look at the full recording to know more about the potential of the Graph-Massivizer project to boost the impact of extreme and sustainable graph processing for mitigating existing urgent societal challenges.

CLICK HERE for the full content and see you soon with another Graph-Massivizer webinar.

Stay tuned!

]]>
Exploring Future Opportunities: Master Research Topics with SINTEF! https://graph-massivizer.eu/exploring-future-opportunities-master-research-topics-with-sintef/ Wed, 11 Oct 2023 15:12:25 +0000 https://graph-massivizer.wp.itec.aau.at/?p=788

📢 Exploring Future Opportunities: Master Research Topics with SINTEF! 🎓

An interesting opportunity for aspiring students in the field of data processing and advanced technologies has been published by Graph-Massivizer partner, SINTEF which issued three MSc research topics linked with the Graph-Massivizer project.

  1. Benchmarking the MAGMA Framework:

Dive deep into the world of abstract data pipelines and graph processing. This topic invites dedicated researchers to benchmark the MAGMA framework, covering insights that can revolutionize how we perceive and process data. For a detailed overview, click here.

  1. Testing and Evaluating the New Java Vector API:

Explore the intersections of graph stream processing and the Java Vector API. This research opportunity delves into the nuances of technology, offering a chance to pioneer advancements in this field. Discover more here.

  1. Development of Integration of Language-Agnostic Streaming Operators:

Contribute to the evolution of language-agnostic streaming operators, enabling GNNs-ready stream processing. This research topic opens doors to innovative solutions in the realm of data processing. Explore the possibilities here.

🌟 Why Choose these Opportunities?

These research topics not only promise academic excellence but also offer a chance to pioneer future technologies. Participants will have the privilege of working closely with industry experts and contributing to real-world solutions.

🚀 How to Apply: 

If you are passionate about shaping the future of data processing and wish to embark on a transformative research journey, please direct your inquiries and applications to Daniel Thilo Schroeder (daniel.t.schroeder@sintef.no) or Brian Elvesæter (brian.elvesater@sintef.no) at SINTEF.

This is not just an opportunity; it’s a chance to be at the forefront of technological innovation. Seize the moment and be a part of the pioneering team shaping the future of data-driven industries! 🌐✨ #MScOpportunity #GraphMassivizer #ResearchInnovation #DataProcessing #SINTEFResearch 🎓🔬

]]>
PRESS RELEASE: Graph-Massivizer promotes climate-neutral and sustainable economic sectors boosted by graph data processing https://graph-massivizer.eu/graph-massivizer-promotes-climate-neutral-and-sustainable-economic-sectors-boosted-by-graph-data-processing-2/ Wed, 05 Apr 2023 14:11:57 +0000 https://graph-massivizer.wp.itec.aau.at/?p=594

The Graph-Massivizer project consortium is happy to announce the official start of this European initiative, funded by the European Commission under the Horizon Europe research and innovation programme. Graph-Massivizer aims at delivering open-source and commercial solutions that drive green digital transformation across use cases in finance, manufacturing, environment protection and exascale computing.

Leveraging graph data through an efficient and scalable digital infrastructure driving green digital transformation

Graphs are data structures that represent real-world and digital objects and their relations. In an increasingly complex world, graphs can be useful to intuitively model and represent complex scenarios and systems such as social or economic networks or digital twins.

Over the last decade, graphs have made great advances in making data findable, accessible, interoperable, and reusable. For many organisations, they have become a key instrument for extracting meaningful insights that support timely, high-impact decisions. On a larger scale, graphs are becoming crucial to innovation, competition, and prosperity. They help derive trustworthy insights to create sustainable communities and support digital transformation with better, more profitable, greener products and services. However, current graph processing platforms come with various limitations, ranging from high energy consumption and inefficiency and lack of support for diverse workloads, models, languages, and algebraic frameworks to the difficulty of use for non-experts.

Graph-Massivizer addresses these challenges by delivering an integrated toolkit to support a climate-neutral and sustainable economy based on graph data. The project partners will develop five open-source software tools for high-performance, scalable, and sustainable graph processing, as well as an enterprise-class commercial version based on the metaphactory knowledge graph platform that tightly integrates the tools in an easy-to-use-and-deploy offering to reach a broader market share.

Ambitious green use case validation in finance, environment protection, manufacturing, and high-performance computing sectors

To ensure applicability and scalability in real-world scenarios and the feasibility of commercial solutions developed on top of metaphactory as a result of the Graph-Massivizer Project, the project partners will validate the innovative toolkit on four use cases that cover the economic, societal and environmental sustainability pillars:

  • sustainable green finance,
  • global environment protection foresight,
  • green artificial intelligence (AI) for the sustainable automotive industry, and
  • data centre digital twin for exascale computing.

These use cases tackle extreme data processing and massive graph analytics challenges and are a perfect fit for the Graph-Massivizer toolkit.

Across these use cases, Graph-Massivizer aims to improve analytics efficiency by 70% and energy awareness for extract-transform-load (ETL) storage operations by 30%. Furthermore, it aims to demonstrate a possible two-fold improvement in data centre energy efficiency and over 25% lower greenhouse gas (GHG) emissions for basic graph operations.

“My vision for Graph-Massivizer is to enable a worldwide Sustainability Graph, a universal abstraction that captures, combines, models, analyses and processes knowledge about our economic, societal and environmental world. The project will contribute to this vision by providing a technological solution, coupled with field experiments and experience-sharing for a high-performance and sustainable graph processing of extreme data with a proper response for any need and organisational size by 2030,” commented the project coordinator Radu Prodan from the University of Klagenfurt.

Synthetic Financial Data Multiverse is a solution offered by Peracton Ltd. that generates fast, affordable and unlimited synthetic financial data sets, eliminating biases and increasing accessibility, overcoming traditional financial data limitations. Peracton leverages this tool for green investment and trading, aiming to reduce risks and improve the performance of financial algorithms. The Synthetic Financial Data Multiverse meets financial industry demands, de-risks algorithmic models, and addresses environmental sustainability.

“In the AI era, when there is never enough data to validate and train AI models, the Synthetic Financial Data Multiverse has the potential to radically transform the generation and use of financial markets data. ‘Real data’ problems such as biases, inaccuracies, historical irrelevance, costs, statistical relevance, overfitting will no longer apply when using bespoke synthetic financial data for testing and validating AI-enhanced financial algorithms,” says Laurentiu Vasiliu, CEO and founder of Peracton Ltd.

Global Foresight is a solution developed by Event Registry d.o.o. that empowers decision-makers with comprehensive protection insights. It allows them to stay ahead of emerging trends and scenarios and make informed, data-driven policy decisions that positively impact the environment. The solution analyses vast amounts of data from various open web sources to create an intuitive and interactive contextual graph and deliver insights and forecasts of future events.

“Global Foresight strongly emphasises the geopolitical and business aspects of environment, society and governance, providing a 360-degree view of the future landscape. From climate change to resource depletion, the solution tool will deliver comprehensive forecasts and insights to enable proactive policy-making decisions that promote sustainability practices for environmental protection,” says Gregor Leban, CEO and co-founder of Event Registry.

Green Manufacturing Line Diagnose is a solution developed by Robert Bosch GmbH that captures several value-chain stages to better predict their outcome and detect anomalies in welding control systems essential for many manufacturing processes. Better and quicker analysis prevents defect propagation and unnecessary waste, contributing to a sustainable, circular, and climate-neutral automotive industry.

“By combining graph-based AI methods with digital twins, the tool provides new insights and boosts the efficiency and scalability of the diagnosis beyond that of more expensive alternatives, such as excessive sensor deployment for continuous monitoring. The insights gained will help optimise manufacturing operations and improve the operational quality of the resulting products”, says Evgeny Kharmalov, senior expert at Bosch Center for Artificial Intelligence.

Data Center Digital Twin is a solution developed by Cineca and the University of Bologna that provides a virtual representation of the world’s fourth-fastest supercomputer Leonardo. Leonardo’s digital massive graph representation describes complex spatial, semantic, and temporal relationships between the monitoring metrics, hardware nodes, cooling equipment, and software, which are difficult to capture and express otherwise.

“Once operative, Leonardo will generate over 10 million metrics and petabytes of data that require AI analytics on massive graphs to extract operational insights for improved science throughput. The information in such a large volume of data is essential for understanding and optimising the efficiency and sustainability of future modern supercomputers operating at exascale performance,” says Andrea Bartolini, assistant professor at the University of Bologna.

Graph-Massivizer toolkit covering the sustainable lifecycle of processing extreme data as massive graphs

To support these use cases, Graph-Massivizer develops a software platform  consisting of five integrated tools for extreme data processing that will:

  • translate extreme data streams or follows heuristics to generate synthetic data and persist it within a graph structure.
  • use probabilistic reasoning and AI algorithms for graph pattern discovery, low-footprint graph generation, and low latency error-bounded queries.
  • help co-design the most promising processing infrastructure with guaranteed performance and energy consumption estimates for specific workloads.
  • use operational data centres and national energy supplier data to simulate sustainability profiles for operating graph workload analytics at scale.
  • use the performance and sustainability models to deploy and orchestrate the graph analytics workloads on the computing continuum.

—————————————————————————————————————————————-

About Graph-Massivizer

Graph-Massivizer r, a three-year project that started on January 1, 2023, aims to support a climate-neutral and sustainable economy by developing high-performance, scalable, and sustainable graph data processing tools. Led by the University of Klagenfurt and composed of 12 partners from 8 EU countries, the project brings together the world-leading roles of European researchers in graph processing and serverless computing and uses leadership-class European infrastructure in the computing continuum.

Project partners are: Universität Klagenfurt, IDC4EU, Peracton Ltd., SINTEF AS, University of Twente, metaphacts GmbH, Vrije Universiteit Amsterdam, Cineca Consortio Interuniversitario, Event Registry, Alma Mater Studiorum – Università di Bologna, Robert BOSCH GmbH, Jozef Stefan Institute.

The project is funded by Horizon Europe, the European Union’s key funding programme for research and innovation. Among many other R&D topics, Horizon Europe tackles climate change and helps to achieve the UN’s Sustainable Development Goals. It also aims at boosting the EU’s competitiveness and growth.

 

Press Contact

Prof. Radu Prodan

Institute of Information Technology, University of Klagenfurt, Austria

+43 46327003616, radu.prodan@aau.at

 

Project Brandbook

In our Project Brandbook you will find the project logo and announcement imagery. These images and logos are the property of the Graph-Massivizer project or the respective project partners and are provided for press use only. For different formats or special inquiries, please contact the project coordinator Radu Prodan.

Graph-Massivizer Social Presence

Twitter | LinkedIn | YouTube

 

 

]]>
Kick-off meeting Graph-Massivizer 2023 https://graph-massivizer.eu/kickoff_meeting_graphmassivizer/ Wed, 01 Mar 2023 15:58:27 +0000 https://graph-massivizer.wp.itec.aau.at/?p=308

The kick-off meeting of the EU Horizon project – Graph-Massivizer (Massive Graph Processing of Extreme Data for a Sustainable Economy, Society, and Environment) took place from January 30th – February 2nd, 2023, at Klagenfurt University.
The Graph-Massivizer team comprising twelve international industrial and academic partners from Austria, Italy, Ireland, Slovenia, Norway, Netherlands, and Germany, pledged support to research and develop a high-performance, scalable, and sustainable platform for information processing and reasoning based on the massive graph representation of extreme data. Moreover, various aspects of the Graph-Massivizer toolkit, including five open-source software tools and FAIR graph datasets, were discussed in this meeting.

GRAPH MASSIVIZER KICK OFF KLAGENFURT
]]>
Radu Prodan talks about the Graph-Massivizer effort at HiPEAC 2023 https://graph-massivizer.eu/radu-prodan-talks-about-the-graph-massivizer-effort-at-hipeac-2023/ Wed, 01 Mar 2023 15:29:13 +0000 https://graph-massivizer.wp.itec.aau.at/?p=294

Radu Prodan presented the Graph-Massivizer project at the “Get-to-know” introductory and welcome day, part of Data Spaces Support Centre activities.

GRAPH MASSIVIZER
]]>