Project

General

Profile

Bug #42225

Updated by Prashant D over 4 years ago

1. To flush or evict at 1 TB, we execute the following:

<pre><code class="text">
# ceph osd pool hot-storage target_max_bytes 1000000000000
</code></pre>

Similarly, user should be allowed to specify target_max_bytes as 1T
<pre><code class="text">
# ceph osd pool hot-storage target_max_bytes 1T
</code></pre>


2. To flush or evict at 1M objects, we execute the following:
<pre><code class="text">
# ceph osd pool set hot-storage target_max_objects 1000000
</code></pre>

Similarly, user should be allowed to specify target_max_objects as 1M
<pre><code class="text">
# ceph osd pool set hot-storage target_max_objects 1M
</code></pre>

Back