You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by dl...@apache.org on 2022/12/08 12:05:26 UTC

[accumulo-website] branch main updated: Update release notes with recent changes (#369)

This is an automated email from the ASF dual-hosted git repository.

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/main by this push:
     new a1610070 Update release notes with recent changes (#369)
a1610070 is described below

commit a16100709bce06eaa9f9834a0ab7056d27341516
Author: Dave Marion <dl...@apache.org>
AuthorDate: Thu Dec 8 07:05:20 2022 -0500

    Update release notes with recent changes (#369)
---
 _posts/release/2022-11-02-accumulo-2.1.1.md | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/_posts/release/2022-11-02-accumulo-2.1.1.md b/_posts/release/2022-11-02-accumulo-2.1.1.md
index 2172ef0f..1be3d6fd 100644
--- a/_posts/release/2022-11-02-accumulo-2.1.1.md
+++ b/_posts/release/2022-11-02-accumulo-2.1.1.md
@@ -12,20 +12,17 @@ Apache Accumulo 2.1.1 is a patch release of the 2.1.0 LTM line.
 
 ### Minor Improvements
 
-* {% ghi 3077 %}, {% ghi 3079 %} Avoid filling OS file caches by setting the
+* {% ghi 3077 %}, {% ghi 3079 %}, {% ghi 3083 %} Avoid filling OS page cache by setting the
   `FSDataOutputStream.setDropBehind` flag when performing likely one-time file
-  accesses, as with WAL files and major compaction input files. This should allow
-  files that might benefit more from caching to stay in the cache longer.
+  accesses, as with WAL input and output files and major compaction input files. This should allow
+  files that might benefit more from caching to stay in the cache longer. {% ghi 3083 %}
+  introduces a new property, table.compaction.major.output.drop.cache, for dropping pages
+  from the OS page cache for major compaction output files. These changes will only have an
+  impact on HDFS FileSystem implementations and operating systems that support them.
 * {% ghi 3023 %}, {% ghi 3053 %} Prevent excessive logging when an ExternalCompaction
   is cancelled for cause and around the ThreadPools
 * {% ghi 3057 %} Modified Monitor to direct DataTable errors to console
 
-### Behavior Changes
-
-* {% ghi 3082 %} ScanServers can now scan offline tables. The AccumuloClient will no longer
-  throw a TableOfflineException when creating a Scanner or BatchScanner against an offline table.
-  Instead, an error will be thrown on the call to iterator() if it can't be scanned because it is offline.
-
 ### Bug Fixes
 
 * {% ghi 3059 %} Removed stale compactions from CompactionCoordinator internal structure. The