Skip to content

Commit

Permalink
Proxy Dev: tune http connection pool size
Browse files Browse the repository at this point in the history
  • Loading branch information
dmoll1974 committed Jan 22, 2025
1 parent e17d3dd commit 5e05819
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface EmployeeMapper {
" JOIN employees em ON dm.emp_no = em.emp_no" +
" WHERE em.last_name = #{lastName}" +
" AND dm.to_date = (SELECT MAX(to_date) FROM dept_manager WHERE dept_no = dm.dept_no) " +
" AND s.to_date = (SELECT MAX(to_date) FROM salaries WHERE emp_no = em.emp_no)) limit 200;"
") limit 200;"
)
List<Employee> findEmployeesByManagerLastName(@Param("lastName") String lastName);

Expand Down
2 changes: 1 addition & 1 deletion afterburner-java/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ afterburner.async_queue_size=0
afterburner.remote.call.httpclient.connect.timeout.millis=500
afterburner.remote.call.httpclient.socket.timeout.millis=6000
afterburner.remote.call.httpclient.connection.request.timeout.millis=400
afterburner.remote.call.httpclient.connections.max=2
afterburner.remote.call.httpclient.connections.max=60

logging.level.org.springframework.web=INFO
logging.level.org.hibernate=INFO
Expand Down

0 comments on commit 5e05819

Please sign in to comment.