Skip to content

Commit

Permalink
Updated to add projects page properly
Browse files Browse the repository at this point in the history
  • Loading branch information
veedata committed Feb 27, 2024
1 parent 45f1b39 commit d1e8861
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 81 deletions.
10 changes: 9 additions & 1 deletion _config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# site properties and page defaults
title: ASU-IDI
subtitle:
subtitle: The Intelligent Data Infrastructure Lab at Arizona State University
description: An engaging 1-3 sentence description of your lab.
header: images/background.jpg
footer: images/background.jpg
Expand Down Expand Up @@ -30,6 +30,11 @@ defaults:
type: "posts"
values:
layout: post
# markdown files in /_project_data
- scope:
type: "project_data"
values:
layout: post

collections:
# generate page for each member
Expand All @@ -38,6 +43,9 @@ collections:
# generate page for each post
posts:
output: true
# generate page for each project post
project_data:
output: true

# jekyll plugins
plugins:
Expand Down
3 changes: 1 addition & 2 deletions _includes/post-info.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
{% include portrait.html lookup=include.author style="tiny" %}
{% else %}
<span data-tooltip="Author">
{% include icon.html icon="fa-solid fa-feather-pointed" %}
<span>{{ include.author }}</span>
</span>
{% endif %}
Expand All @@ -33,5 +32,5 @@
</div>

{% if include.tags %}
{% include tags.html tags=include.tags link="blog" %}
{% include tags.html tags=include.tags link="projects" %}
{% endif %}
2 changes: 1 addition & 1 deletion _layouts/member.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</p> -->

{% capture search -%}
blog/?search={{ page.name }}
projects/?search={{ page.name }}
{%- endcapture %}

<!--
Expand Down
2 changes: 0 additions & 2 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ <h1 class="center">{{ page.title }}</h1>
include post-info.html
author=page.author
member=page.member
published=page.date
updated=page.last_modified_at
tags=page.tags
%}

Expand Down
10 changes: 0 additions & 10 deletions _posts/2019-01-07-example-post-1.md

This file was deleted.

6 changes: 0 additions & 6 deletions _posts/2021-09-30-example-post-2.md

This file was deleted.

7 changes: 0 additions & 7 deletions _posts/2023-02-23-example-post-3.md

This file was deleted.

12 changes: 12 additions & 0 deletions _project_data/gpt_project.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: LLM-Assisted Configuration Tuning for Log-Structured Merge-tree-based Key-Value Stores
author: Madhumitha Sukumar, Jiaxin Dai, Kaushiki Singh, Vikriti Lokegaonkar, Viraj Thakkar, Zhichao Cao
tags: LSM-KVS, Tuning, AI
---

<!-- A single line examplation of the project -->
Design and develop an LLM-assisted auto-tuning framework for Log-Structured Merge-tree-based Key-Value Stores (LSM-KVS) to achieve better performance.

Log-Structured Merge-tree-based Key-Value Stores (LSM-KVS) are widely used in today's IT infrastructure , and usually have over 100 options (e.g., HBase and RocksDB ) to tune performance for particular hardware (e.g., CPU, memory, and storage), software, and workloads (e.g., random, skewed, and read/write intensive) . However, tuning the LSM-KVS with appropriate configurations is always challenging, usually requiring IT professionals with LSM-KVS expertise to run hundreds of benchmarking evaluations. Existing related studies on LSM-KVS tuning solutions are still limited, lacking generality, adaptiveness to the versions and deployments. We believe the recent advancements of Large-Language-Models (LLMs) like OpenAI's GPT-4 can be a promising solution to achieve LSM-KVS auto-tuning: 1) LLMs are trained using collections of LSM-KVS-related blog, publications, and almost all the open-sourced code, which makes the LLMs a real "expert" of LSM-KVS; 2) LLMs has the strong inferential capability to analyze the benchmarking results and achieve automatic and interactive adjustments for LSM-KVS on particular hardware and workloads. However, how to design the auto-tuning framework based on LLMs and benchmarking tools, how to generate appropriate prompts for LLMs, and how to calibrate the unexpected errors and wrong configurations are three main challenges to be addressed.

We propose to design and develop an LLM-assisted auto-tuning framework as shown in Figure with the following workflow: 1) Use default options file and a collection of system and hardware information as initial input. 2) Use a feedback loop with the LLM API and create new prompts for LLM with option changes and the processed benchmarking results in the previous iterations. 3) The newly generated options from LLM are calibrated (cleaned and corrected) for a new round of benchmarking; And 4) after several iterations, the benchmarking results have converged and it generates the final optimized option configurations. Note that the whole process is automatically deployed and executed without human intervention. We implemented the framework prototype on RocksDB v8.8.1 and OpenAI's GPT-4-1106 model, and open-sourced. Our preliminary evaluations show that with 5 iterations of auto-tuning, our framework achieves up to 20% of throughput improvement compared with default configurations.
10 changes: 0 additions & 10 deletions _project_posts/2019-01-07-example-post-1.md

This file was deleted.

6 changes: 0 additions & 6 deletions _project_posts/2021-09-30-example-post-2.md

This file was deleted.

7 changes: 0 additions & 7 deletions _project_posts/2023-02-23-example-post-3.md

This file was deleted.

22 changes: 0 additions & 22 deletions blog/index.md

This file was deleted.

15 changes: 8 additions & 7 deletions projects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
title: Projects
nav:
order: 2
tooltip: Software, databases, and more
tooltip: Our Ideas, Solutions, and Work
display: true
date: 2021-01-01
---

# {% include icon.html icon="fa-solid fa-wrench" %}Projects
# {% include icon.html icon="fa-solid fa-cubes" %}Projects

{% include tags.html tags="publication, resource, website" %}
{% include section.html %}

{% include search-info.html %}
{% include search-box.html %}

{% include section.html %}
{% include tags.html tags=site.tags %}

## Current Projects
{% include search-info.html %}

{% include list.html data="project_posts" component="post-excerpt" %}
{% include list.html data="project_data" component="post-excerpt" %}

0 comments on commit d1e8861

Please sign in to comment.