Skip to content

Cherry-Picking Commits for 1.5 #2689

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: release/1.5
Choose a base branch
from

Conversation

RubenCerna2079
Copy link
Contributor

Why make this change?

This change is made in order to add all of the commits for milestone 1.5 into its respective branch.

What is this change?

This change cherry-picks all of the commits that were added after the first release candidate.

How was this tested?

  • Integration Tests
  • Unit Tests

Sample Request(s)

sezal98 and others added 8 commits May 15, 2025 17:41
## Why make this change?
Resolves #2649

## What is this change?
The pipelines are failing due to udpate from ubutu 24.04. 
We are using the latest version in our yamls hence, this change needs to
be handled.
<img width="527" alt="image"
src="https://github.com/user-attachments/assets/b1f14841-ea20-4b18-8b17-b9f1c43b4022"
/>

The error message we are seeing is due to the fact that default Ubuntu
24.04+ image on Microsoft-hosted agents does not include Mono, which is
required for the NuGet client that powers NuGetCommand@2 in our
pipeline. Microsoft recommends migrating to using the
NuGetAuthenticate@1 task and .NET CLI commands instead of the older
NuGetCommand@2 task, which relies on Mono.

Steps to Fix the Issue:
- Remove NuGetCommand@2 task: Since this task requires Mono (which is no
longer available by default on Ubuntu 24.04+), we should remove it and
replace it with .NET CLI commands for restoring the NuGet packages.
- Add .NET CLI restore command: Instead of using the NuGetCommand@2
task, use the DotNetCoreCLI@2 task to restore NuGet packages.
- Update NuGet authentication: Ensure that you're using
NuGetAuthenticate@1 before the restore task to handle authentication.

## How was this tested?
The pipelines are running as expected.

---------

Co-authored-by: sezalchug <[email protected]>
## Why make this change?
Resolved #2645

## What is this change?
We need to take the plural value for the creating the http payload for
the graphql request. Further we need to camel case this value instead of
using the objects value which I was currently using

## How was this tested?
Local Testing
1. Type.Plural not provided and entity name is not the same as table
name
2. Type.Plural not provided and entity name is caps
3. Type.Plural not provided and entity name is all small
4. source.objects is provided as `dbo.books`
5. Type.Plural provided but in all small case
6. Type.Plural provided in all caps


## Sample Request(s)
<img width="310" alt="image"
src="https://github.com/user-attachments/assets/26c35c70-34a0-40d9-b344-90d7c31d117f"
/>
<img width="234" alt="image"
src="https://github.com/user-attachments/assets/b3385e59-c9ee-4ad7-8fdb-2555bfaf16ed"
/>

---------

Co-authored-by: sezalchug <[email protected]>
…#2617)

## Why make this change?

- Closes #2554
- Enhances OTEL instrumentation with custom traces and metrics for the
REST APIs

## What is this change?

This PR enhances the OTEL instrumentation for the REST APIs by adding
custom traces and metrics.

I have removed ASP NET Core standard instrumentation since it does not
provide great value given the custom nature of the webservice. I have
written two main Helper classes: `TelemetryMetricsHelper` and
`TelemetryTracesHelper` to provide a single point of management for
custom traces and metrics.

Metrics can be filtered for `status_code`, `api_type`, `endpoint` and
`method`.

I have also fixed the loggings which are now sent to the configured OTEL
endpoint.

### Logs

![image](https://github.com/user-attachments/assets/2b2b21ab-b16e-4678-8a3f-2c6bc3ab7168)

### Metrics
![Screenshot 2025-03-14
190730](https://github.com/user-attachments/assets/322f6111-8580-49c2-b6ff-5cddc191178c)

### Traces
![image
(2)](https://github.com/user-attachments/assets/1e9f320a-7445-44d6-a1c6-b0d5eb21fa8f)
![image
(3)](https://github.com/user-attachments/assets/efc754c1-a646-4500-9ebf-4f5cfba34b85)
![image
(4)](https://github.com/user-attachments/assets/cadc9665-934f-48bd-a1bc-afedbf5fe395)




## How was this tested?

- [ ] Integration Tests
- [ ] Unit Tests

## Sample Request(s)

To test everything locally I recommend using [this
repo](https://github.com/tommasodotNET/dab-workbench) that allows to run
the local build of the dab cli and send metrics to the .NET Aspire OTEL
endoint.

---------

Co-authored-by: Aaron Powell <[email protected]>
Co-authored-by: RubenCerna2079 <[email protected]>
Co-authored-by: aaronburtle <[email protected]>
Co-authored-by: Ruben Cerna <[email protected]>
Co-authored-by: Aniruddh Munde <[email protected]>
## Why make this change?
Internal Issue Resolved

## What is this change?
Created a check before creating the HttpClient where the URI would be
validated
Conditions
1.  It ensures the URI is absolute.
2. It checks for valid HTTP/HTTPS schemes.
3. Disallow empty hostnames

Working as expected 
Code QL resolution would be checked after merging and running the
pipelines

---------

Co-authored-by: sezalchug <[email protected]>
Co-authored-by: aaronburtle <[email protected]>
## Why make this change?

closes #2603

## What is this change?

Includes caching options with the `add` and `update` verbs for the CLI.
These verbs are used to add or update new entities in a config file, and
will now include support for the `cache` entry in those entities.

## How was this tested?

Current test suite.

## Sample Request(s)

You can test with the CLI by using the `add` or `update` verb along with
the flags `--cache.enabled` and `--cache.ttl`, default values are false
and 5.

---------

Co-authored-by: Ruben Cerna <[email protected]>
Co-authored-by: Aniruddh Munde <[email protected]>
## Why make this change?
Closes [#2534](#2534)

## What is this change?
This PR involves creating another parameter in the runtime config which
defines the cache-ttl-seconds for the health endpoint.
+ I am using the IMemoryCache to define the cache which has the
CacheKey: `HealthCheckResponse` in ComprehensiveResponseWriter and saves
the serialized version of the response in the cache.

+ The changes in Convertor Factory are in respect to the serialization
and deserialization of this attribute appropriately. We consider default
as 5 seconds in case not provided in the config file. And in case this
is 0, caching is disabled.

+ Added timestamp to the health check report


## How was this tested?

- [x] Integration Tests
- [x] Unit Tests

## Sample Request(s)
Call this CURL
curl --request GET \
  --url http://localhost:5000/health \
  --header 'User-Agent: insomnia/10.3.0'
Define the cache value as 5. Then in case of hitting the request without
any delay, we get the same response back from the cache. In case hitting
after the delay, we get a new response.

---------

Co-authored-by: sezalchug <[email protected]>
Co-authored-by: Aniruddh Munde <[email protected]>
…h check (#2667)

## Why make this change?
Resolves #2662 

## What is this change?
1. Created the HttpUtilities with HttpClient already instantiated and
basic details filled from Startup.cs
2. Using this httpClient, call the REST and GraphQL requests with
relative URI
3. Created a function in DatabaseObject to access mapping dict as it is
an abstract class which was not allowed to be mocked.
4. Test cases for both REST and GraphQL
5. Rest Test case: Mock the client to return a 200 response when we
receive a GET request with specific URI. Validate the error message from
HttpUtilities should be null.
6. GraphQL Test case: Mock the client to return a 200 response when we
get a POST request with /graphql URI and content payload. Mock the
Dabase Object with columns in the entity map to only return the db
object when a certain entity is called for.


## How was this tested?

- [ ] Integration Tests
- [x] Unit Tests

## Sample Request(s)
Requests are running as expected. Test cases added for Rest and Graphql

---------

Co-authored-by: sezalchug <[email protected]>
Co-authored-by: Aniruddh Munde <[email protected]>
…2673)

This closes #2642

This PR enhances the OTEL instrumentation for the GraphQL APIs by adding
custom traces and metrics.
Metrics can be filtered for `status_code`, `api_type`, `endpoint` and
`method`.

- [X] Local Testing
- [ ] Integration Tests
- [ ] Unit Tests

All of the tests were done locally to check if the log information that
was provided was correct, for both scenarios in which the query gave the
proper information or when an exception was raised.
Another thing that was tested is that when we open GraphQL it would send
a few requests called `Introspection Queries` used to ensure that
GraphQL is working properly. However, we do not want the user to see
these requests as part of the total count as this is done automatically,
which may confuse the users.

![image](https://github.com/user-attachments/assets/1f66da36-d537-47cc-95d6-fd19cf73242e)

![image](https://github.com/user-attachments/assets/91b3801f-b48e-4841-99a6-72de1b8b482a)

![image](https://github.com/user-attachments/assets/48a8ee9a-4d17-4b52-9f66-7e5c745aeef4)

- Clone the following repo
`https://github.com/tommasodotNET/dab-workbench.git`
- Run your DAB version in CLI so the files from the `out` folder are
created, and make sure to stop it before running the DAB Workbench since
both cannot be running at the same time.
- Find the path to the `Microsoft.DataApiBuilder.exe`, which should look
something like
`<PATH_TO_REPO>\data-api-builder\src\out\cli\net8.0\Microsoft.DataApiBuilder.exe`
- Copy the path of the `.exe` file and paste it in the file
`/DABWorkbench.AppHost/Program.cs` in the variable `dabCLIPath` which is
found in line 3 as follows:
`var dabCLIPath =
@"<PATH_TO_REPO>\data-api-builder\src\out\cli\net8.0\Microsoft.DataApiBuilder.exe";`
- Now you should be able to run DAB Workbench with your version of DAB.

---------

Co-authored-by: Tommaso Stocchi <[email protected]>
Co-authored-by: Jerry Nixon <[email protected]>
Co-authored-by: Ruben Cerna <[email protected]>
@Copilot Copilot AI review requested due to automatic review settings May 16, 2025 00:51
@RubenCerna2079
Copy link
Contributor Author

/azp run

Copy link

Azure Pipelines successfully started running 6 pipeline(s).

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR cherry-picks all commits for milestone 1.5 into the release branch, introducing entity-level caching support, enhancing health‐check serialization, and updating pipeline restore steps.

  • Add CLI flags, runtime model, converters, tests, and schema entries for cache.enabled/cache.ttl
  • Extend RuntimeHealthCheckConfig to parse and emit cache-ttl-seconds
  • Replace NuGetCommand@2 with DotNetCoreCLI@2 restore steps in pipeline templates

Reviewed Changes

Copilot reviewed 49 out of 49 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/Cli/Utils.cs Introduce ConstructCacheOptions for parsing cache flags
src/Cli/ConfigGenerator.cs Wire Cache option into entity creation/update
src/Cli/Commands/*Options.cs Add cacheEnabled and cacheTtl parameters
src/Cli.Tests/* Add tests and snapshots for entity caching
src/Config/Converters/RuntimeHealthOptionsConvertorFactory.cs Parse and write new cache-ttl-seconds field
schemas/dab.draft.schema.json Add JSON schema entry for cache-ttl-seconds
src/Config/HealthCheck/DatasourceHealthCheckConfig.cs Adjust constructor parameter naming
src/Config/DatabasePrimitives/DatabaseObject.cs Make SourceDefinition property virtual
.pipelines/** Switch pipeline restore tasks to DotNetCoreCLI@2
Comments suppressed due to low confidence (2)

src/Config/DatabasePrimitives/DatabaseObject.cs:58

  • Making SourceDefinition virtual is a breaking API change—ensure this is documented in the changelog and that any derived types override or delegate correctly.
public virtual SourceDefinition SourceDefinition

.pipelines/templates/build-pipelines.yml:65

  • Indentation and dash prefix appear inconsistent compared to surrounding steps; verify YAML syntax to prevent pipeline parse errors.
- task: DotNetCoreCLI@2

Comment on lines +411 to +413
"cache-ttl-seconds": {
"type": "integer",
"description": "Time to live in seconds for the Comprehensive Health Check Report cache entry.",
Copy link
Preview

Copilot AI May 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] CLI flag uses --cache.ttl but JSON schema uses cache-ttl-seconds; consider unifying or documenting the translation to avoid confusion for API consumers.

Suggested change
"cache-ttl-seconds": {
"type": "integer",
"description": "Time to live in seconds for the Comprehensive Health Check Report cache entry.",
"cache.ttl": {
"type": "integer",
"description": "Time to live (in seconds) for the Comprehensive Health Check Report cache entry. Matches the CLI flag '--cache.ttl'.",

Copilot uses AI. Check for mistakes.

@RubenCerna2079
Copy link
Contributor Author

/azp run

Copy link

Azure Pipelines successfully started running 6 pipeline(s).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants