diff --git a/src/data/projects.ts b/src/data/projects.ts index 45faa83f..6c8aa81e 100644 --- a/src/data/projects.ts +++ b/src/data/projects.ts @@ -1,6 +1,21 @@ import { Project, ProjectId } from "../types"; const projects: Project[] = [ + { + id: "chronolog", + name: "ChronoLog", + title: + "ChronoLog: A High-Performance Storage Infrastructure for Activity and Log Workloads", + shortDescription: + "HPC applications generate more data than storage systems can handle, and it is becoming increasingly important to store activity (log) data generated by people and applications. ChronoLog is a hierarchical, distributed log store that leverages physical time to achieve log ordering and reduce contention while utilizing storage tiers to elastically scale the log capacity.", + link: "/research/projects/chronolog", + isFeatured: true, + isOpenSource: true, + isOurs: true, + researchStatus: "testing", + status: "active", + type: "funded", + }, { id: "coeus", name: "Coeus", @@ -15,29 +30,28 @@ const projects: Project[] = [ type: "funded", }, { - id: "chronolog", - name: "ChronoLog", + id: "dayu", + name: "DaYu", title: - "ChronoLog: A High-Performance Storage Infrastructure for Activity and Log Workloads", + "DaYu: Optimizing Distributed Scientific Workflows by Decoding Dataflow Semantics and Dynamics", shortDescription: - "HPC applications generate more data than storage systems can handle, and it is becoming increasingly important to store activity (log) data generated by people and applications. ChronoLog is a hierarchical, distributed log store that leverages physical time to achieve log ordering and reduce contention while utilizing storage tiers to elastically scale the log capacity.", - link: "/research/projects/chronolog", - isFeatured: true, + "Nowadays, distributed scientific workflows encounter challenges in data movement through storage systems. DaYu, by capturing the mapping of data objects to I/O operations, can uncover new insights for optimizing workflow data movement.", + link: "/research/projects/dayu", + isFeatured: false, isOpenSource: true, isOurs: true, - researchStatus: "testing", + researchStatus: "ready", status: "active", type: "funded", }, { - id: "iris", - name: "IRIS", - title: "IRIS: I/O Redirection Via Integrated Storage", + id: "dtio", + name: "DTIO", + title: "DTIO: A Data Task I/O Runtime", shortDescription: - "Various storage solutions exist and require specialized APIs and data models in order to use, which binds developers, applications, and entire computing facilities to using certain interfaces. Each storage system is designed and optimized for certain applications but does not perform well for others. IRIS is a unified storage access system that bridges the semantic gap between filesystems and object stores.", - link: "/research/projects/iris", + "In partnership with Argonne National Laboratory, DTIO investigates the use of a task framework for unifying complex I/O stacks and providing features such as resilience, fault-tolerance, and task replay.", + link: "/research/projects/dtio", isFeatured: false, - isOpenSource: true, isOurs: true, researchStatus: "testing", status: "active", @@ -58,6 +72,20 @@ const projects: Project[] = [ status: "active", type: "funded", }, + { + id: "iris", + name: "IRIS", + title: "IRIS: I/O Redirection Via Integrated Storage", + shortDescription: + "Various storage solutions exist and require specialized APIs and data models in order to use, which binds developers, applications, and entire computing facilities to using certain interfaces. Each storage system is designed and optimized for certain applications but does not perform well for others. IRIS is a unified storage access system that bridges the semantic gap between filesystems and object stores.", + link: "/research/projects/iris", + isFeatured: false, + isOpenSource: true, + isOurs: true, + researchStatus: "testing", + status: "active", + type: "funded", + }, { id: "labios", name: "Labios", @@ -86,15 +114,16 @@ const projects: Project[] = [ type: "funded", }, { - id: "dtio", - name: "DTIO", - title: "DTIO: A Data Task I/O Runtime", + id: "storehub", + name: "StoreHub", + title: "StoreHub", shortDescription: - "In partnership with Argonne National Laboratory, DTIO investigates the use of a task framework for unifying complex I/O stacks and providing features such as resilience, fault-tolerance, and task replay.", - link: "/research/projects/dtio", + "StoreHub is a collaborative platform designed to advance data storage research by providing a specialized infrastructure that meets the unique needs of researchers. It brings together experts handling large amounts of data, focusing on I/O performance, and developing innovative storage solutions, making it a vital resource for the community.", + link: "/research/projects/storehub", isFeatured: false, + isOpenSource: false, isOurs: true, - researchStatus: "testing", + researchStatus: "r&d", status: "active", type: "funded", }, @@ -128,21 +157,6 @@ const projects: Project[] = [ status: "active", type: "funded", }, - { - id: "dayu", - name: "DaYu", - title: - "DaYu: Optimizing Distributed Scientific Workflows by Decoding Dataflow Semantics and Dynamics", - shortDescription: - "Nowadays, distributed scientific workflows encounter challenges in data movement through storage systems. DaYu, by capturing the mapping of data objects to I/O operations, can uncover new insights for optimizing workflow data movement.", - link: "/research/projects/dayu", - isFeatured: false, - isOpenSource: true, - isOurs: true, - researchStatus: "ready", - status: "active", - type: "funded", - }, { id: "wisio", name: "WisIO", @@ -158,20 +172,6 @@ const projects: Project[] = [ status: "active", type: "student", }, - { - id: "storehub", - name: "StoreHub", - title: "StoreHub", - shortDescription: - "StoreHub is a collaborative platform designed to advance data storage research by providing a specialized infrastructure that meets the unique needs of researchers. It brings together experts handling large amounts of data, focusing on I/O performance, and developing innovative storage solutions, making it a vital resource for the community.", - link: "/research/projects/storehub", - isFeatured: false, - isOpenSource: false, - isOurs: true, - researchStatus: "r&d", - status: "active", - type: "funded", - }, ]; export default projects;