Skip to content
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

Improve PS API report-sink "replace" logic #315

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

manu-govind
Copy link
Contributor

No description provided.

@manu-govind manu-govind requested a review from mkrystof February 13, 2025 01:57
} catch (e: Exception) {
logger.error { e.localizedMessage }
return null
/* private fun handleReportReplacement(
Copy link
Collaborator

Choose a reason for hiding this comment

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

This appears to be added, but commented out. Can it be removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

TBD- as discussed.

try {
logger.info("Removed all reports with stage name = $stageInfo?.stage")

/*
Copy link
Collaborator

Choose a reason for hiding this comment

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

Can we remove this since added, but commented out?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

TBD- as discussed.

@@ -47,9 +48,23 @@ class CouchbaseRepository(

private val logger = KotlinLogging.logger {}

/**
Copy link
Collaborator

Choose a reason for hiding this comment

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

Do we need this comment about lazy creating the transactions? Seems like nothing is done below it and there is a similar comment a few lines below that roughly matches this one, along with the code to lazy create the transactions.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

TBD- as discussed.

/**
* When we need transaction in the future we can use this function
*/
/* fun runTransaction(action: (TransactionAttemptContext) -> Unit) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

This new method is added but commented out. Do we need it?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

TBD- as discussed.

@@ -64,6 +64,10 @@ dependencies {
implementation 'io.opentelemetry:opentelemetry-exporter-otlp:1.29.0'
implementation 'com.google.code.gson:gson:2.10.1'
implementation group: 'io.github.microutils', name: 'kotlin-logging-jvm', version: '3.0.5'
implementation("com.couchbase.client:java-client:3.4.2")
Copy link
Collaborator

Choose a reason for hiding this comment

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

Do we need this added? If so, that's an issue - the report-sink should not have any implementation specific database stuff in it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've removed it for now. But we may need it for "runTransaction" logic if the repository is CouchbaseRepository. Unless we pass the report and items to a generic method into CouchbaseRepository class in the commons-database. I guess that would be better.

* @param ctx TransactionAttemptContext
* @param item T
*/
fun<T> upsertItem(ctx: TransactionAttemptContext,id: String, item: T) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

The code that would use this function is commented out. Do we need this?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

TBD- as discussed.

Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
6.6% Duplication on New Code (required ≤ 3%)

See analysis details on SonarQube Cloud

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.

2 participants