This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new b3a3c538b Automatic Site Publish by Buildbot
b3a3c538b is described below
commit b3a3c538b20d0e9313b3a6d066ee0bea141b8d10
Author: buildbot <[email protected]>
AuthorDate: Wed Feb 11 21:26:40 2026 +0000
Automatic Site Publish by Buildbot
---
output/{Dockerfile => Containerfile} | 0
output/README.md | 53 ++-
output/css/accumulo.css | 706 +++++++++++++++++++++--------------
output/css/accumulo.css.map | 15 +-
output/feed.xml | 8 +-
output/redirects.json | 2 +-
6 files changed, 475 insertions(+), 309 deletions(-)
diff --git a/output/Dockerfile b/output/Containerfile
similarity index 100%
rename from output/Dockerfile
rename to output/Containerfile
diff --git a/output/README.md b/output/README.md
index a61c5adf2..21f18be1e 100644
--- a/output/README.md
+++ b/output/README.md
@@ -107,44 +107,59 @@ HTML styled "just right".
Jekyll will print a local URL where the site can be viewed (usually,
[http://0.0.0.0:4000/](http://0.0.0.0:4000/)).
-### Testing using Docker environment
+### Testing using a Container environment
+
+Note: The example commands below use `podman`, but you can replace it with a
+compatible tool, such as `docker`.
A containerized development environment can be built using the local
-Dockerfile. You can build it with the following command:
+Containerfile. You can build it with the following command:
```bash
-docker build -t webdev .
+podman build -t webdev -f Containerfile .
```
This action will produce a `webdev` image, with all the website's build
-prerequisites preinstalled. When a container is run from this image, it
-will perform a `jekyll serve` command with the polling option enabled,
-so that changes you make locally will be immediately reflected after
-reloading the page in your browser.
-
-When you run a container using the webdev image, your current working
-directory will be mounted, so that any changes made by the build inside
-the container will be reflected in your local workspace. This is done with
-the `-v` flag. To run the container, execute the following command:
+prerequisites preinstalled. When a container is run from this image, it will
+perform a `jekyll serve` command with the polling option enabled, so that
+changes you make locally will be immediately reflected after reloading the page
+in your browser. To run the container, execute the following command:
```bash
-docker run -d -v "$PWD":/mnt/workdir -p 4000:4000 webdev
+podman run -i -t --rm -v "$(pwd)":/mnt/workdir:Z -p 4000:4000 webdev
```
+Flags used in this command are as follows:
+
+* `-i` : run interactively, to send keyboard commands to the process
+* `-t` : allocate a psuedo-TTY, to send signals like with Ctrl-C to exit
+* `--rm` : clean up the container resources after exiting
+* `-v "$(pwd)":/mnt/workdir:Z` : mount your current working directory, so that
+ any changes made by the build inside the container will be reflected in the
+ local workspace on the host; `:Z` causes the host files to be labeled for
+ SELinux, so the container can access them; the most recent container running
+ will relabel for its own access; use lower-case `:z` instead, if you need the
+ directory to be shared across multiple running containers at the same time;
+ restore any labels to their system defaults with `restorecon -RFv .`.
+* `-p 4000:4000` : forward port TCP from the container to the host, so you can
+ view the served Jekyll site in a browser on the host
+
While this container is running, you will be able to review the rendered
website
in your local browser at [http://127.0.0.1:4000/](http://127.0.0.1:4000/).
Shell access can be obtained by overriding the default container command.
-This is useful for adding new gems, or modifying the Gemfile.lock for updating
-existing dependencies.
+This is useful for adding new gems to `Gemfile` or to run `bundle update` to
+update the existing dependencies in `Gemfile.lock`.
+
+When using shell access, the local directory must be mounted to ensure the
+`Gemfile` and `Gemfile.lock` updates are reflected in your local environment so
+you can create a commit and submit a PR.
-When using shell access, the local directory must be mounted to ensure
-the Gemfile and Gemfile.lock updates are reflected in your local
-environment so you can create a commit and submit a PR.
+To do this, execute the same command as before, but with `/bin/bash` on the
end:
```bash
-docker run -v "$PWD":/mnt/workdir -it webdev /bin/bash
+podman run -i -t --rm -v "$(pwd)":/mnt/workdir:Z -p 4000:4000 webdev /bin/bash
```
You may need to manually delete the `_site` or `.jekyll-cache` directories if
diff --git a/output/css/accumulo.css b/output/css/accumulo.css
index cdd499386..3ba8ba4f0 100644
--- a/output/css/accumulo.css
+++ b/output/css/accumulo.css
@@ -1,276 +1,440 @@
-.highlight .hll { background-color: #d6d6d6; }
-
-.highlight { background: #f5f5f5; color: #4d4d4c; }
-
-.highlight .c { color: #8e908c; }
-
-/* Comment */
-.highlight .err { color: #c82829; }
-
-/* Error */
-.highlight .k { color: #8959a8; }
-
-/* Keyword */
-.highlight .l { color: #f5871f; }
-
-/* Literal */
-.highlight .n { color: #4d4d4c; }
-
-/* Name */
-.highlight .o { color: #3e999f; }
-
-/* Operator */
-.highlight .p { color: #4d4d4c; }
-
-/* Punctuation */
-.highlight .cm { color: #8e908c; }
-
-/* Comment.Multiline */
-.highlight .cp { color: #8e908c; }
-
-/* Comment.Preproc */
-.highlight .c1 { color: #8e908c; }
-
-/* Comment.Single */
-.highlight .cs { color: #8e908c; }
-
-/* Comment.Special */
-.highlight .gd { color: #c82829; }
-
-/* Generic.Deleted */
-.highlight .ge { font-style: italic; }
-
-/* Generic.Emph */
-.highlight .gh { color: #4d4d4c; font-weight: bold; }
-
-/* Generic.Heading */
-.highlight .gi { color: #718c00; }
-
-/* Generic.Inserted */
-.highlight .gp { color: #8e908c; font-weight: bold; }
-
-/* Generic.Prompt */
-.highlight .gs { font-weight: bold; }
-
-/* Generic.Strong */
-.highlight .gu { color: #3e999f; font-weight: bold; }
-
-/* Generic.Subheading */
-.highlight .kc { color: #8959a8; }
-
-/* Keyword.Constant */
-.highlight .kd { color: #8959a8; }
-
-/* Keyword.Declaration */
-.highlight .kn { color: #3e999f; }
-
-/* Keyword.Namespace */
-.highlight .kp { color: #8959a8; }
-
-/* Keyword.Pseudo */
-.highlight .kr { color: #8959a8; }
-
-/* Keyword.Reserved */
-.highlight .kt { color: #917f0d; }
-
-/* Keyword.Type */
-.highlight .ld { color: #718c00; }
-
-/* Literal.Date */
-.highlight .m { color: #f5871f; }
-
-/* Literal.Number */
-.highlight .s { color: #718c00; }
-
-/* Literal.String */
-.highlight .na { color: #4271ae; }
-
-/* Name.Attribute */
-.highlight .nb { color: #4d4d4c; }
-
-/* Name.Builtin */
-.highlight .nc { color: #917f0d; }
-
-/* Name.Class */
-.highlight .no { color: #c82829; }
-
-/* Name.Constant */
-.highlight .nd { color: #3e999f; }
-
-/* Name.Decorator */
-.highlight .ni { color: #4d4d4c; }
-
-/* Name.Entity */
-.highlight .ne { color: #c82829; }
-
-/* Name.Exception */
-.highlight .nf { color: #4271ae; }
-
-/* Name.Function */
-.highlight .nl { color: #4d4d4c; }
-
-/* Name.Label */
-.highlight .nn { color: #917f0d; }
-
-/* Name.Namespace */
-.highlight .nx { color: #4271ae; }
-
-/* Name.Other */
-.highlight .py { color: #4d4d4c; }
-
-/* Name.Property */
-.highlight .nt { color: #3e999f; }
-
-/* Name.Tag */
-.highlight .nv { color: #c82829; }
-
-/* Name.Variable */
-.highlight .ow { color: #3e999f; }
-
-/* Operator.Word */
-.highlight .w { color: #4d4d4c; }
-
-/* Text.Whitespace */
-.highlight .mf { color: #f5871f; }
-
-/* Literal.Number.Float */
-.highlight .mh { color: #f5871f; }
-
-/* Literal.Number.Hex */
-.highlight .mi { color: #f5871f; }
-
-/* Literal.Number.Integer */
-.highlight .mo { color: #f5871f; }
-
-/* Literal.Number.Oct */
-.highlight .sb { color: #718c00; }
-
-/* Literal.String.Backtick */
-.highlight .sc { color: #4d4d4c; }
-
-/* Literal.String.Char */
-.highlight .sd { color: #8e908c; }
-
-/* Literal.String.Doc */
-.highlight .s2 { color: #718c00; }
-
-/* Literal.String.Double */
-.highlight .se { color: #f5871f; }
-
-/* Literal.String.Escape */
-.highlight .sh { color: #718c00; }
-
-/* Literal.String.Heredoc */
-.highlight .si { color: #f5871f; }
-
-/* Literal.String.Interpol */
-.highlight .sx { color: #718c00; }
-
-/* Literal.String.Other */
-.highlight .sr { color: #718c00; }
-
-/* Literal.String.Regex */
-.highlight .s1 { color: #718c00; }
-
-/* Literal.String.Single */
-.highlight .ss { color: #718c00; }
-
-/* Literal.String.Symbol */
-.highlight .bp { color: #4d4d4c; }
-
-/* Name.Builtin.Pseudo */
-.highlight .vc { color: #c82829; }
-
-/* Name.Variable.Class */
-.highlight .vg { color: #c82829; }
-
-/* Name.Variable.Global */
-.highlight .vi { color: #c82829; }
-
-/* Name.Variable.Instance */
-.highlight .il { color: #f5871f; }
-
-/* Literal.Number.Integer.Long */
-table { margin: 10px 0px 30px 0px; padding: 10px 5px 10px 5px; }
-
-th, td { padding: 10px 40px 10px 5px; border-bottom: 1px solid #ddd; }
-
-h1 { font-size: 34px; }
-
-h2 { font-size: 28px; }
-
-h3 { font-size: 22px; }
-
-h4 { font-size: 18px; }
-
-h5 { font-size: 16px; }
-
-h6 { font-size: 15px; }
-
-body { font-size: 14px; }
-
-pre { padding: 11px; margin: 0 0 11.5px; line-height: 1.846; border: 1px solid
#cccccc; border-radius: 3px; }
-
-pre code { font-size: 14px; /* override nowrap in bootstrap */ white-space:
pre; }
-
-code { background-color: #f5f5f5; color: #555; }
-
-#nav-logo { padding-top: 10px; padding-bottom: 10px; padding-left: 10px; }
-
-#home-description { font-size: 17px; }
-
-#sidebar { font-size: 15px; }
-
-.latest-news-item { margin-bottom: 10px; font-size: 15px; line-height: 20px; }
-
-.latest-news-item span { font-size: 12px; }
-
-#bannertext { margin-top: 10px; text-align: left; }
-
-.clear { clear: both; }
-
-#content { padding: 0 8px 20px; }
-
-#content h1 { margin-bottom: 0.5em; }
-
-#content h2 { margin-bottom: 0.5em; border-bottom: 1px solid #CCCCCC;
padding-bottom: 0.25em; }
-
-#content h3 { margin-bottom: 0.5em; }
-
-#content img { vertical-align: middle; }
-
-footer { border-top: 1px solid #CCCCCC; color: #666666; font-size: 0.8em;
padding: 8px 8px; text-align: center; }
-
-footer > p { width: 60%; margin-left: auto; margin-right: auto; }
-
-#asf-logo { float: left; }
-
-#release_notes_testing { border-collapse: collapse; }
-
-#release_notes_testing, #release_notes_testing tr, #release_notes_testing th,
#release_notes_testing td { border: 2px solid black; }
-
-#release_notes_testing th, #release_notes_testing td { padding: 5px; }
-
-#accumulo-summit-logo img { height: 70px; }
-
-.selected { font-weight: bold; }
-
-.header-link { padding-left: 5px; opacity: 0; \-webkit-transition: opacity
0.2s ease-in-out 0.1s; \-moz-transition: opacity 0.2s ease-in-out 0.1s;
\-ms-transition: opacity 0.2s ease-in-out 0.1s; }
-
-h2:hover .header-link, h3:hover .header-link, h4:hover .header-link, h5:hover
.header-link, h6:hover .header-link { opacity: 1; }
-
-/* insert invisible space above header elements with an id attribute, so that
if they are linked to, the actual content will appear below the nav menu */
-h1[id]::before, h2[id]::before, h3[id]::before, h4[id]::before,
h5[id]::before, h6[id]::before { display: block; content: " "; margin-top:
-80px; height: 100px; visibility: hidden; }
-
-/* insert invisible space above Accumulo property names so that if they are
linked to, the actual content will appear below the nav menu */
-a.prop { display: block; content: " "; margin-top: -90px; height: 90px;
visibility: hidden; }
+.highlight .hll {
+ background-color: #d6d6d6;
+}
+
+.highlight {
+ background: #f5f5f5;
+ color: #4d4d4c;
+}
+
+.highlight .c {
+ color: #8e908c;
+} /* Comment */
+.highlight .err {
+ color: #c82829;
+} /* Error */
+.highlight .k {
+ color: #8959a8;
+} /* Keyword */
+.highlight .l {
+ color: #f5871f;
+} /* Literal */
+.highlight .n {
+ color: #4d4d4c;
+} /* Name */
+.highlight .o {
+ color: #3e999f;
+} /* Operator */
+.highlight .p {
+ color: #4d4d4c;
+} /* Punctuation */
+.highlight .cm {
+ color: #8e908c;
+} /* Comment.Multiline */
+.highlight .cp {
+ color: #8e908c;
+} /* Comment.Preproc */
+.highlight .c1 {
+ color: #8e908c;
+} /* Comment.Single */
+.highlight .cs {
+ color: #8e908c;
+} /* Comment.Special */
+.highlight .gd {
+ color: #c82829;
+} /* Generic.Deleted */
+.highlight .ge {
+ font-style: italic;
+} /* Generic.Emph */
+.highlight .gh {
+ color: #4d4d4c;
+ font-weight: bold;
+} /* Generic.Heading */
+.highlight .gi {
+ color: #718c00;
+} /* Generic.Inserted */
+.highlight .gp {
+ color: #8e908c;
+ font-weight: bold;
+} /* Generic.Prompt */
+.highlight .gs {
+ font-weight: bold;
+} /* Generic.Strong */
+.highlight .gu {
+ color: #3e999f;
+ font-weight: bold;
+} /* Generic.Subheading */
+.highlight .kc {
+ color: #8959a8;
+} /* Keyword.Constant */
+.highlight .kd {
+ color: #8959a8;
+} /* Keyword.Declaration */
+.highlight .kn {
+ color: #3e999f;
+} /* Keyword.Namespace */
+.highlight .kp {
+ color: #8959a8;
+} /* Keyword.Pseudo */
+.highlight .kr {
+ color: #8959a8;
+} /* Keyword.Reserved */
+.highlight .kt {
+ color: #917f0d;
+} /* Keyword.Type */
+.highlight .ld {
+ color: #718c00;
+} /* Literal.Date */
+.highlight .m {
+ color: #f5871f;
+} /* Literal.Number */
+.highlight .s {
+ color: #718c00;
+} /* Literal.String */
+.highlight .na {
+ color: #4271ae;
+} /* Name.Attribute */
+.highlight .nb {
+ color: #4d4d4c;
+} /* Name.Builtin */
+.highlight .nc {
+ color: #917f0d;
+} /* Name.Class */
+.highlight .no {
+ color: #c82829;
+} /* Name.Constant */
+.highlight .nd {
+ color: #3e999f;
+} /* Name.Decorator */
+.highlight .ni {
+ color: #4d4d4c;
+} /* Name.Entity */
+.highlight .ne {
+ color: #c82829;
+} /* Name.Exception */
+.highlight .nf {
+ color: #4271ae;
+} /* Name.Function */
+.highlight .nl {
+ color: #4d4d4c;
+} /* Name.Label */
+.highlight .nn {
+ color: #917f0d;
+} /* Name.Namespace */
+.highlight .nx {
+ color: #4271ae;
+} /* Name.Other */
+.highlight .py {
+ color: #4d4d4c;
+} /* Name.Property */
+.highlight .nt {
+ color: #3e999f;
+} /* Name.Tag */
+.highlight .nv {
+ color: #c82829;
+} /* Name.Variable */
+.highlight .ow {
+ color: #3e999f;
+} /* Operator.Word */
+.highlight .w {
+ color: #4d4d4c;
+} /* Text.Whitespace */
+.highlight .mf {
+ color: #f5871f;
+} /* Literal.Number.Float */
+.highlight .mh {
+ color: #f5871f;
+} /* Literal.Number.Hex */
+.highlight .mi {
+ color: #f5871f;
+} /* Literal.Number.Integer */
+.highlight .mo {
+ color: #f5871f;
+} /* Literal.Number.Oct */
+.highlight .sb {
+ color: #718c00;
+} /* Literal.String.Backtick */
+.highlight .sc {
+ color: #4d4d4c;
+} /* Literal.String.Char */
+.highlight .sd {
+ color: #8e908c;
+} /* Literal.String.Doc */
+.highlight .s2 {
+ color: #718c00;
+} /* Literal.String.Double */
+.highlight .se {
+ color: #f5871f;
+} /* Literal.String.Escape */
+.highlight .sh {
+ color: #718c00;
+} /* Literal.String.Heredoc */
+.highlight .si {
+ color: #f5871f;
+} /* Literal.String.Interpol */
+.highlight .sx {
+ color: #718c00;
+} /* Literal.String.Other */
+.highlight .sr {
+ color: #718c00;
+} /* Literal.String.Regex */
+.highlight .s1 {
+ color: #718c00;
+} /* Literal.String.Single */
+.highlight .ss {
+ color: #718c00;
+} /* Literal.String.Symbol */
+.highlight .bp {
+ color: #4d4d4c;
+} /* Name.Builtin.Pseudo */
+.highlight .vc {
+ color: #c82829;
+} /* Name.Variable.Class */
+.highlight .vg {
+ color: #c82829;
+} /* Name.Variable.Global */
+.highlight .vi {
+ color: #c82829;
+} /* Name.Variable.Instance */
+.highlight .il {
+ color: #f5871f;
+} /* Literal.Number.Integer.Long */
+table {
+ margin: 10px 0px 30px 0px;
+ padding: 10px 5px 10px 5px;
+}
+
+th, td {
+ padding: 10px 40px 10px 5px;
+ border-bottom: 1px solid #ddd;
+}
+
+h1 {
+ font-size: 34px;
+}
+
+h2 {
+ font-size: 28px;
+}
+
+h3 {
+ font-size: 22px;
+}
+
+h4 {
+ font-size: 18px;
+}
+
+h5 {
+ font-size: 16px;
+}
+
+h6 {
+ font-size: 15px;
+}
+
+body {
+ font-size: 14px;
+}
+
+pre {
+ padding: 11px;
+ margin: 0 0 11.5px;
+ line-height: 1.846;
+ border: 1px solid #cccccc;
+ border-radius: 3px;
+}
+
+pre code {
+ font-size: 14px;
+ /* override nowrap in bootstrap */
+ white-space: pre;
+}
+
+code {
+ background-color: #f5f5f5;
+ color: #555;
+}
+
+#nav-logo {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ padding-left: 10px;
+}
+
+#home-description {
+ font-size: 17px;
+}
+
+#sidebar {
+ font-size: 15px;
+}
+
+.latest-news-item {
+ margin-bottom: 10px;
+ font-size: 15px;
+ line-height: 20px;
+}
+
+.latest-news-item span {
+ font-size: 12px;
+}
+
+#bannertext {
+ margin-top: 10px;
+ text-align: left;
+}
+
+.clear {
+ clear: both;
+}
+
+#content {
+ padding: 0 8px 20px;
+}
+
+#content h1 {
+ margin-bottom: 0.5em;
+}
+
+#content h2 {
+ margin-bottom: 0.5em;
+ border-bottom: 1px solid #CCCCCC;
+ padding-bottom: 0.25em;
+}
+
+#content h3 {
+ margin-bottom: 0.5em;
+}
+
+#content img {
+ vertical-align: middle;
+}
+
+footer {
+ border-top: 1px solid #CCCCCC;
+ color: #666666;
+ font-size: 0.8em;
+ padding: 8px 8px;
+ text-align: center;
+}
+
+footer > p {
+ width: 60%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+#asf-logo {
+ float: left;
+}
+
+#release_notes_testing {
+ border-collapse: collapse;
+}
+
+#release_notes_testing, #release_notes_testing tr, #release_notes_testing th,
#release_notes_testing td {
+ border: 2px solid black;
+}
+
+#release_notes_testing th, #release_notes_testing td {
+ padding: 5px;
+}
+
+#accumulo-summit-logo img {
+ height: 70px;
+}
+
+.selected {
+ font-weight: bold;
+}
+
+.header-link {
+ padding-left: 5px;
+ opacity: 0;
+ \-webkit-transition: opacity 0.2s ease-in-out 0.1s;
+ \-moz-transition: opacity 0.2s ease-in-out 0.1s;
+ \-ms-transition: opacity 0.2s ease-in-out 0.1s;
+}
+
+h2:hover .header-link,
+h3:hover .header-link,
+h4:hover .header-link,
+h5:hover .header-link,
+h6:hover .header-link {
+ opacity: 1;
+}
+
+/* insert invisible space above header elements with an id attribute, so that
+ * if they are linked to, the actual content will appear below the nav menu */
+h1[id]::before, h2[id]::before, h3[id]::before, h4[id]::before,
h5[id]::before, h6[id]::before {
+ display: block;
+ content: " ";
+ margin-top: -80px;
+ height: 100px;
+ visibility: hidden;
+}
+
+/* insert invisible space above Accumulo property names so that
+ * if they are linked to, the actual content will appear below the nav menu */
+a.prop {
+ display: block;
+ content: " ";
+ margin-top: -90px;
+ height: 90px;
+ visibility: hidden;
+}
/* Turn off sidebar affix for small screens */
-@media (max-width: 975px) { .affix { position: static; } }
-
+@media (max-width: 975px) {
+ .affix {
+ position: static;
+ }
+}
/* Makes navbar collapse at larger width (1050px) */
-@media (max-width: 975px) { .navbar-header { float: none; } .navbar-toggle {
display: block; } .navbar-collapse { border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); } .navbar-collapse.collapse
{ display: none !important; } .navbar-nav { float: none !important; margin:
7.5px; } .navbar-nav > li { float: none; } .navbar-nav > li > a { padding-top:
10px; padding-bottom: 10px; } .navbar-text { float: none; margin: 15px 0; }
.navbar-collapse.collapse.show { [...]
-
-.blog-img-center { max-width: 95%; margin-top: 10px; margin-bottom: 10px;
margin-left: auto; margin-right: auto; display: block; }
+@media (max-width: 975px) {
+ .navbar-header {
+ float: none;
+ }
+ .navbar-toggle {
+ display: block;
+ }
+ .navbar-collapse {
+ border-top: 1px solid transparent;
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+ }
+ .navbar-collapse.collapse {
+ display: none !important;
+ }
+ .navbar-nav {
+ float: none !important;
+ margin: 7.5px;
+ }
+ .navbar-nav > li {
+ float: none;
+ }
+ .navbar-nav > li > a {
+ padding-top: 10px;
+ padding-bottom: 10px;
+ }
+ .navbar-text {
+ float: none;
+ margin: 15px 0;
+ }
+ .navbar-collapse.collapse.show {
+ display: block !important;
+ }
+ .collapsing {
+ overflow: hidden !important;
+ }
+}
+.blog-img-center {
+ max-width: 95%;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ margin-left: auto;
+ margin-right: auto;
+ display: block;
+}
/*# sourceMappingURL=accumulo.css.map */
\ No newline at end of file
diff --git a/output/css/accumulo.css.map b/output/css/accumulo.css.map
index e7709bd03..3751ce2de 100644
--- a/output/css/accumulo.css.map
+++ b/output/css/accumulo.css.map
@@ -1,14 +1 @@
-{
- "version": 3,
- "file": "accumulo.css",
- "sources": [
- "accumulo.scss",
- "_sass/_syntax-highlighting.scss"
- ],
- "sourcesContent": [
- "@import \"syntax-highlighting\";\n\ntable {\n margin: 10px
0px 30px 0px;\n padding: 10px 5px 10px 5px;\n}\n\nth, td {\n padding: 10px
40px 10px 5px;\n border-bottom: 1px solid #ddd;\n}\n\nh1 {\n font-size:
34px;\n}\n\nh2 {\n font-size: 28px;\n}\n\nh3 {\n font-size: 22px;\n}\n\nh4
{\n font-size: 18px;\n}\n\nh5 {\n font-size: 16px;\n}\n\nh6 {\n font-size:
15px;\n}\n\nbody {\n font-size: 14px;\n}\n\npre {\n padding: 11px;\n margin:
0 0 11.5px;\n line-height: 1.846;\n borde [...]
- ".highlight .hll { background-color: #d6d6d6 }\n.highlight {
background: #f5f5f5; color: #4d4d4c }\n.highlight .c { color: #8e908c } /*
Comment */\n.highlight .err { color: #c82829 } /* Error */\n.highlight .k {
color: #8959a8 } /* Keyword */\n.highlight .l { color: #f5871f } /* Literal
*/\n.highlight .n { color: #4d4d4c } /* Name */\n.highlight .o { color: #3e999f
} /* Operator */\n.highlight .p { color: #4d4d4c } /* Punctuation
*/\n.highlight .cm { color: #8e908c } /* Comment.Multil [...]
- ],
- "names": [],
- "mappings":
"ACAA,AAAA,UAAU,CAAC,IAAI,CAAC,EAAE,gBAAgB,EAAE,OAAQ,GAAE;;AAC9C,AAAA,UAAU,CAAE,EAAE,UAAU,EAAE,OAAO,EAAE,KAAK,EAAE,OAAQ,GAAE;;AACpD,AAAA,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;AAAA,aAAa;AAC9C,AAAA,UAAU,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;AAAA,WAAW;AAC9C,AAAA,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;AAAA,aAAa;AAC9C,AAAA,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;AAAA,aAAa;AAC9C,AAAA,UAAU,CAAC,EAAE,CAAC,EAAE,KAAK,EAAE,OAAQ,GAAE;;AAAA,UAAU;AAC3C,AAAA,UAAU,CA
[...]
-}
\ No newline at end of file
+{"version":3,"sourceRoot":"","sources":["../_sass/_syntax-highlighting.scss","accumulo.scss"],"names":[],"mappings":"AAAA;EAAkB;;;AAClB;EAAc;EAAqB;;;AACnC;EAAgB;EAAiB;AACjC;EAAkB;EAAiB;AACnC;EAAgB;EAAiB;AACjC;EAAgB;EAAiB;AACjC;EAAgB;EAAiB;AACjC;EAAgB;EAAiB;AACjC;EAAgB;EAAiB;AACjC;EAAiB;EAAiB;AAClC;EAAiB;EAAiB;AAClC;EAAiB;EAAiB;AAClC;EAAiB;EAAiB;AAClC;EAAiB;EAAiB;AAClC;EAAiB;EAAqB;AACtC;EAAiB;EAAgB;EAAoB;AACrD;EAAiB;EAAiB;AAClC;EAAiB;EAAgB;EAAoB;AACrD;EAAiB;EAAoB;AACrC;EAAiB;EAAgB;EAAoB;A
[...]
\ No newline at end of file
diff --git a/output/feed.xml b/output/feed.xml
index afc3363db..307a8329f 100644
--- a/output/feed.xml
+++ b/output/feed.xml
@@ -6,8 +6,8 @@
</description>
<link>https://accumulo.apache.org/</link>
<atom:link href="https://accumulo.apache.org/feed.xml" rel="self"
type="application/rss+xml"/>
- <pubDate>Tue, 10 Feb 2026 00:22:49 +0000</pubDate>
- <lastBuildDate>Tue, 10 Feb 2026 00:22:49 +0000</lastBuildDate>
+ <pubDate>Wed, 11 Feb 2026 21:26:33 +0000</pubDate>
+ <lastBuildDate>Wed, 11 Feb 2026 21:26:33 +0000</lastBuildDate>
<generator>Jekyll v4.4.1</generator>
@@ -544,7 +544,7 @@ If the compactor processes return the memory to the OS,
i.e. does not stay at th
<ol>
<li>Uncommented lines in <code class="language-plaintext
highlighter-rouge">fluo-uno/install/accumulo-2.1.2/conf/cluster.yaml</code>
regarding the compaction coordinator and compactor q1. A single compactor
process was used, q1. This allows the external compaction processes to start
up.</li>
<li>Configured the java args for the compactor process in
“accumulo-env.sh.” Line:
-<code class="language-plaintext highlighter-rouge">compactor)
JAVA_OPTS=('-Xmx256m' '-Xms256m' "${JAVA_OPTS[@]}")
;;</code></li>
+<code class="language-plaintext highlighter-rouge">compactor)
JAVA_OPTS=('-Xmx256m' '-Xms256m'
"${JAVA_OPTS[@]}") ;;</code></li>
<li>Started accumulo with <code class="language-plaintext
highlighter-rouge">uno start accumulo</code></li>
</ol>
@@ -671,7 +671,7 @@ Data is taken every 5 seconds for an hour or until
stopped.</p>
<span class="nb">set </span>title <span
class="s2">"Resident Set Size (RSS) Memory
usage"</span>
<span class="nb">set </span>xlabel <span
class="s2">"Time"</span>
<span class="nb">set </span>ylabel <span
class="s2">"Mem usage in kilobytes"</span>
-plot <span
class="s2">"output_mem_usage.log"</span> using
<span class="o">(</span><span
class="nv">$0</span><span
class="k">*</span>5<span
class="o">)</span>:2 with lines title <span
class="s1">'Mem usage'</span>
+plot <span
class="s2">"output_mem_usage.log"</span> using
<span class="o">(</span><span
class="nv">$0</span><span
class="k">*</span>5<span
class="o">)</span>:2 with lines title <span
class="s1">'Mem usage'</span>
</code></pre></div></div>
<h2 id="data">Data</h2>
diff --git a/output/redirects.json b/output/redirects.json
index de27eedb7..6e253bd9c 100644
--- a/output/redirects.json
+++ b/output/redirects.json
@@ -1 +1 @@
-{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.5.2.html":"https://accumulo.apache.org/release/accumulo-1.5.2/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/"
[...]
\ No newline at end of file
+{"/release_notes/1.5.1.html":"https://accumulo.apache.org/release/accumulo-1.5.1/","/release_notes/1.6.0.html":"https://accumulo.apache.org/release/accumulo-1.6.0/","/release_notes/1.5.2.html":"https://accumulo.apache.org/release/accumulo-1.5.2/","/release_notes/1.6.1.html":"https://accumulo.apache.org/release/accumulo-1.6.1/","/release_notes/1.6.2.html":"https://accumulo.apache.org/release/accumulo-1.6.2/","/release_notes/1.7.0.html":"https://accumulo.apache.org/release/accumulo-1.7.0/"
[...]
\ No newline at end of file