Skip to content

Commit

Permalink
Fix project list order.
Browse files Browse the repository at this point in the history
  • Loading branch information
izzet committed Nov 13, 2024
1 parent 8499166 commit 020e4fd
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions src/data/projects.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
},
Expand Down Expand Up @@ -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",
Expand All @@ -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;
Expand Down

0 comments on commit 020e4fd

Please sign in to comment.