You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by arina-ielchiieva <gi...@git.apache.org> on 2017/10/05 15:27:47 UTC

[GitHub] drill pull request #928: DRILL-5716: Queue-driven memory allocation

Github user arina-ielchiieva commented on a diff in the pull request:

    https://github.com/apache/drill/pull/928#discussion_r142707486
  
    --- Diff: exec/java-exec/src/main/resources/rest/index.ftl ---
    @@ -74,23 +74,66 @@
     
       <div class="row">
           <div class="col-md-12">
    -        <h3>Encryption Info <span class="label label-primary"></span></h3>
    +        <h3>Encryption</h3>
             <div class="table-responsive">
    -          <table class="table table-hover">
    +          <table class="table table-hover" style="width: auto;">
                 <tbody>
                     <tr>
                       <td>Client to Bit Encryption:</td>
    -                  <td>${model.isUserEncryptionEnabled()?string("enabled", "disabled")}</td>
    +                  <td>${model.isUserEncryptionEnabled()?string("Enabled", "Disabled")}</td>
                     </tr>
                     <tr>
                       <td>Bit to Bit Encryption:</td>
    -                  <td>${model.isBitEncryptionEnabled()?string("enabled", "disabled")}</td>
    +                  <td>${model.isBitEncryptionEnabled()?string("Enabled", "Disabled")}</td>
                     </tr>
                 </tbody>
               </table>
             </div>
           </div>
       </div>
    +
    +  <#assign queueInfo = model.queueInfo() />
    +  <div class="row">
    +      <div class="col-md-12">
    +        <h3>Query Throttling</h3>
    +        <div class="table-responsive">
    +          <table class="table table-hover" style="width: auto;">
    +            <tbody>
    +               <tr>
    +                  <td>Queue Status:</td>
    --- End diff --
    
    May be we can remove colons?


---