Skip to content

Commit

Permalink
Add index on severity, finish_time to speed up welcome page display (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ashangit authored and akshayrai committed Jun 7, 2017
1 parent cdf680b commit f77886a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions conf/evolutions/default/4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# --- Indexing on severity,finish_time for count on welcome page
# --- !Ups

create index yarn_app_result_i9 on yarn_app_result (severity,finish_time);

# --- !Downs

drop index yarn_app_result_i9 on yarn_app_result;




0 comments on commit f77886a

Please sign in to comment.