Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions _includes/featuredbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,24 @@ <h4 class="card-text">{{ post.teaser | strip_html | truncatewords:25 }}</h4>
<div class="card-footer b-0 bg-white mt-auto">
<div class="wrapfooter">
{% if post.author %}
<span>Authors: &nbsp;</span>
<span class="meta-footer-thumb">
{% if author.avatar %}
<img class="author-thumb" src="{{site.baseurl}}/{{ author.avatar }}" alt="{{ author.display_name }}">
{% else %}
<img class="author-thumb" src="https://www.gravatar.com/avatar/{{ author.gravatar }}?s=250&d=mm&r=x" alt="{{ author.display_name }}">
{% endif %}
</span>
<span class="author-meta">
<span class="post-name"><a target="_blank" href="{{ author.web }}">{{ author.display_name }}</a></span><br/>
<span class="post-name">{{ author.display_name }}</span><br/>
{% endif %}
<span class="post-date">{{ post.date | date_to_string }}</span>
{% if post.authors %}
<span>Authors: &nbsp;</span>
<span class="meta-footer-thumb">
</span>
<span class="author-meta">
{% assign authors_list = post.authors | split: "," %}
{% for single_author in authors_list %}
{% assign this_author = site.authors[single_author] %}
<span class="post-name">{{ this_author.display_name }} &nbsp;</span><br/>
{% endfor %}
{% endif %}
<!--span class="post-date">{{ post.date | date_to_string }}</span-->
</span>
<span class="post-read-more"><a href="{{ site.baseurl }}/{{ post.url }}" title="Read Story"><svg class="svgIcon-use" width="25" height="25" viewbox="0 0 25 25"><path d="M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z" fill-rule="evenodd"></path></svg></a></span>
<div class="clearfix"></div>
Expand Down
19 changes: 13 additions & 6 deletions _includes/postbox.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,24 @@ <h4 class="card-text">{{ post.excerpt | strip_html | truncatewords:30 }}</h4>
<div class="card-footer bg-white">
<div class="wrapfooter">
{% if post.author %}
<span>Author: &nbsp;</span>
<span class="meta-footer-thumb">
{% if author.avatar %}
<img class="author-thumb" src="{{site.baseurl}}/{{ author.avatar }}" alt="{{ author.display_name }}">
{% else %}
<img class="author-thumb" src="https://www.gravatar.com/avatar/{{ author.gravatar }}?s=250&d=mm&r=x" alt="{{ author.display_name }}">
</span>
<span class="author-meta">
<span class="post-name">{{ author.display_name }}</span><br/>
{% endif %}

{% if post.authors %}
<span>Authors: &nbsp;</span>
<span class="meta-footer-thumb">
</span>
<span class="author-meta">
<span class="post-name"><a target="_blank" href="{{ author.web }}">{{ author.display_name }}</a></span><br/>
{% assign authors_list = post.authors | split: "," %}
{% for single_author in authors_list %}
{% assign this_author = site.authors[single_author] %}
<span class="post-name">{{ this_author.display_name }} &nbsp;</span><br/>
{% endfor %}
{% endif %}
<span class="post-date">{{ post.date | date_to_string }}</span>
</span>
<span class="post-read-more"><a href="{{ site.baseurl }}{{ post.url }}" title="Read Story"><svg class="svgIcon-use" width="25" height="25" viewbox="0 0 25 25"><path d="M19 6c0-1.1-.9-2-2-2H8c-1.1 0-2 .9-2 2v14.66h.012c.01.103.045.204.12.285a.5.5 0 0 0 .706.03L12.5 16.85l5.662 4.126a.508.508 0 0 0 .708-.03.5.5 0 0 0 .118-.285H19V6zm-6.838 9.97L7 19.636V6c0-.55.45-1 1-1h9c.55 0 1 .45 1 1v13.637l-5.162-3.668a.49.49 0 0 0-.676 0z" fill-rule="evenodd"></path></svg></a></span>
<div class="clearfix"></div>
Expand Down
25 changes: 25 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,31 @@
</div>
{% endif %}

{% if page.authors %}
{% assign authors = page.authors | split: "," %}
<h2>Authors</h2>
{% for author_name in authors %}
{% assign author = site.authors[author_name] %}
{% if author %}
<!-- Author Box -->
<div class="row post-top-meta">
<div class="col-xs-12 col-md-3 col-lg-2 text-center text-md-left mb-4 mb-md-0">
{% if author.avatar %}
<img class="author-thumb" src="{{site.baseurl}}/{{ author.avatar }}" alt="{{ author.display_name }}">
{% else %}
<img class="author-thumb" src="https://www.gravatar.com/avatar/{{ author.gravatar }}?s=250&d=mm&r=x" alt="{{ author.display_name }}">
{% endif %}
</div>
<div class="col-xs-12 col-md-9 col-lg-10 text-center text-md-left">
<a target="_blank" class="link-dark" href="{{ author.web }}">{{ author.display_name }}</a>
<a target="_blank" href="{{ author.twitter }}" class="btn follow">Follow</a>
<span class="author-description">{{ author.description }}</span>
</div>
</div>
{% endif %}
{% endfor %}
{% endif %}

<!-- Post Title -->
<h1 class="posttitle">{{ page.title }}</h1>

Expand Down
2 changes: 1 addition & 1 deletion _posts/2023-03-30-kafka-client-performance-metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ categories: [ Kafka, Kubernetes, Performance, Helm ]
featured: true
image: assets/blog-images/kafka-perf-suite/kafka-benchmark-metrics-featured.png
teaser: "Distributed testing grid for Kafka on top of Kubernetes"
author: badri
authors: badri,p6
---

There are numerous parameters we have to consider tweaking when benchmarking a Kafka cluster. Irrespective of these parameters, we optimize along the following dimensions:
Expand Down