Solved

502 in api-calls depending on the authentication

  • 30 April 2024
  • 9 replies
  • 135 views

Badge +1

Since we upgraded the indicium to the latest version, we have the following scenario: 

 

We perform the same API-call: 

{{BASE_URL}}/api_call_a?$expand=detail_ref_api_call_a_api_call_b,detail_ref_api_call_a_api_call_c,api_call_a_api_call_d

If we perform this API-call using “Basic Auth” it is working as expected
if we perform this API-call using “Bearer token” it is not working (error 502) 

 

If I remove the latest 2 expands, it works with the “Bearer token” again. 


 

The error-logs are clean and this case is reproducable in Postman. 

Bearer token is a token based on the same user as the basic-auth login. 
Prefilters are used in these API's



502 error: 
 

<html>

 

<head>

    <title>502 Bad Gateway</title>

</head>

 

<body>

    <center>

        <h1>502 Bad Gateway</h1>

    </center>

    <hr>

    <center>nginx/1.22.1</center>

</body>

 

</html>

icon

Best answer by martijngaasbeek 8 May 2024, 15:22

View original

9 replies

Userlevel 6
Badge +4

Hello @martijngaasbeek,

The 502 Bad Gateway response coming from nginx indicates that there is some kind of connectivity issue between the nginx reverse proxy and Indicium. Since the issue appears to be related to how many details are expanded, my first guess is that Indicium takes too long to complete the request, which causes nginx to assume that there will be no response from Indicium and give the 502 Bad Gateway response.

Expanding detail references can be very taxing, depending on the amount of data that's involved. Expanding three detail references at the same time is even more taxing. Assuming that there is quite a bit of data involved, I'm not surprised that a request like that could cause a timeout. The only thing that doesn't make sense is that this timeout only occurs with bearer authentication and not with basic authentication. I think it's likely that the two requests are not authenticated as the same user, even though you might be under the impression that they are. One possible explanation is that one of the requests includes an authentication cookie that overrides either the basic authentication or bearer authentication, because authentication cookies take precedence over all other forms of authentication.

My assumption right now is that the basic authentication request applies prefilters and the bearer authentication request does not, because it is a different user.

I have a few questions to help clear this up:

  • Does it take very long for you to get the 502 Bad Gateway response? For example, 30 seconds or 60 seconds?
  • Does the basic authentication request that succeeds take much less long?
  • Can you confirm that both requests are authenticated by the same user, for example by looking at the Session Log in IAM? Or calling a view that selects dbo.tsf_user() for example.
  • Can you give the user in question the Developer Mode administrator role in IAM and compare the query of both requests by looking at Indicium's Database Event Log?
    • Is there an obvious difference between the queries, for example is one of them missing prefilters?
    • Is there a large difference in duration of the queries?
  • What version of Indicium are you on?
Badge +1

@Vincent Doppenberg 

Do you have time for a quick call? I think it will be much faster to show you the issues?

 

It is only since the last upgrade of Indicium. Before that we didn't have this problem.

 

Badge +1

To answer your questions: 

 

  • It is the same user i'm using.

    The bottom one is bearer token
    The top one is basic auth. 

  • The error with bearer token is 162ms, the succesfull call with basic auth is 129ms.
  • We just upgraded to the newest version of indicium, since then we have this problem. The version before that (that is still running in production) doesn't have this issue. 

 

Badge +1

The queries are identical in the dbEventLog for that user

 

Userlevel 6
Badge +4

Hello @martijngaasbeek,

What version of Indicium is production on? And does the bearer authentication request work if you skip the nginx proxy and call Indicium directly?

Badge +1

Development: 2024.1
Production: 2023.3


If I make the call directly using the IP address, then the call succeeds in both cases

Userlevel 6
Badge +4

Hello @martijngaasbeek,

With all of this information, the most logical explanation to me seems to be that the nginx reverse proxy has some kind of maximum response size or buffer size which is being exceeded, causing it to reject the request. The reason that the change in Indicium version might trigger this problem could be because the new version of Indicium returns a little bit more data, such as some extra headers. It would make sense that removing some of the expanded details would then fix the issue, as this would shrink the response size.

I would expect nginx to log an error message somewhere that specifically points to what the exact problem is. If not, you can try simply configuring the proxy buffer size to see if it fixes the problem. You could start with 32k for instance and go lower if it works.

I hope this helps.

Badge +1

@Vincent Doppenberg  

 

One control question before we change configuration. 

 

If I keep the cookie in postman, (the cookie from basic auth) and then run the call also with a bearer token, the correct response is given instead of a 502. Is this also in line with your expectation? 

 

so reproduction:

  • First run a succesful call with basic auth
  • Run the same call without deleting the cookie and do it with a bearer token. 
  • Get a normal response. 

 

If I delete the cookie from the basic auth call, I get the 502 again. 

 

 

Userlevel 6
Badge +4

Hello @martijngaasbeek

Yes, that would be my expectation, because cookie authentication overrules bearer authentication. So sending the cookie from your basic authentication session causes the bearer token to be ignored completely.

To be a bit more clear regarding what I think the actual problem here is, I think that the authentication cookie returned by Indicium after bearer authentication is (much) larger than the authentication cookie returned by Indicium after basic authentication. The reason for this would be the number of claims contained by the JWT token that is provided for bearer authentication. These claims will be stored in the authentication cookie that is returned by Indicium.

If you call Indicium directly by bypassing your nginx proxy and you compare the responses of your basic authentication request and your bearer authentication request, I would expect that the Set-Cookie response header of the bearer authentication request is larger. Specifically, I would expect the .AspNetCore.Identity.Application cookie to be larger or even be split up into multiple cookies called .AspNetCore.Identity.ApplicationC1, .AspNetCore.Identity.ApplicationC2, etc.

If my assumptions above are correct then there are two ways of looking at this problem.

  1. Nginx should be able to handle larger response headers - for which the solution is to increase the size of the proxy buffer.
  2. The cookies should not become this large. In my opinion, this perspective is only reasonable if the .AspNetCore.Identity.Application is actually much larger than its basic authentication equivalent. For example, if the cookie is only 10% larger than is basic authentication equivalent, and just barely crosses nginx's buffer size threshold, then point 1 is the correct way of looking at this problem. However, if the cookie is multitudes larger, then you could argue that the cookie contains an abnormal amount of claims, most likely caused by a very large bearer token that also contains all of these claims. If this seems to be the case, then we can continue the conversation from there, but given all the information you've provided so far, I'm leaning towards the scenario that the response is only marginally larger and coincidentally just passes the proxy buffer size (which is rather small by default).

I hope this helps.

Reply