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

feat(marketo_bulk_upload): add support to perform marketo bulk upload polling and fetch job status #4939

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

sandeepdsvs
Copy link
Contributor

Description

< Replace with adequate description for this PR as per Pull Request document >

Linear Ticket

< Replace with Linear Link ( create or search linear ticket) or >

Security

  • The code changed/added as part of this pull request won't create any security issues with how the software is being used.

Copy link
Contributor

coderabbitai bot commented Jul 26, 2024

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Tip

Early access features: enabled

We are currently testing the following features in early access:

  • Anthropic claude-3-5-sonnet for code reviews: Anthropic claims that the new Claude model has stronger code understanding and code generation capabilities than their previous models. Note: Our default code review model was also updated late last week. Please compare the quality of the reviews between the two models by toggling the early access feature.

Note:

  • You can enable or disable early access features from the CodeRabbit UI or by updating the CodeRabbit configuration file.
  • Please join our Discord Community to provide feedback and report issues on the discussion post.

Copy link

codecov bot commented Jul 26, 2024

Codecov Report

Attention: Patch coverage is 0.90498% with 219 lines in your changes missing coverage. Please review.

Project coverage is 74.23%. Comparing base (069c23f) to head (7e9fcd2).
Report is 10 commits behind head on master.

Files Patch % Lines
...ationmanager/marketo-bulk-upload/fetchJobStatus.go 0.00% 99 Missing ⚠️
...syncdestinationmanager/marketo-bulk-upload/poll.go 0.00% 75 Missing ⚠️
...syncdestinationmanager/marketo-bulk-upload/util.go 0.00% 38 Missing ⚠️
...onmanager/marketo-bulk-upload/marketobulkupload.go 0.00% 7 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master    #4939      +/-   ##
==========================================
- Coverage   74.44%   74.23%   -0.21%     
==========================================
  Files         428      431       +3     
  Lines       49763    49989     +226     
==========================================
+ Hits        37044    37108      +64     
- Misses      10284    10446     +162     
  Partials     2435     2435              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


func getJobsStatus(event MarketoAsyncFailedPayload, jobType string, accessToken string) (string, error) {
config := event.Config
munchkinId := config["MunchkinId"]
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we need to do a nil check for config?

endTime := time.Now()
requestTime := endTime.Sub(startTime).Milliseconds()

fmt.Printf("Request time: %d ms\n", requestTime)
Copy link
Contributor

Choose a reason for hiding this comment

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

use stats or logs


data := make(map[int64]string)

fieldSchemaMapping, err := getFieldSchemaMap(accessToken, config["MunchkinId"])
Copy link
Contributor

Choose a reason for hiding this comment

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

can we use some CSV reader rather than doing manually

elemArr = elemArr[:len(elemArr)-1]

for key, val := range data {
if val == strings.Join(elemArr, ",") {
Copy link
Contributor

Choose a reason for hiding this comment

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

do we need to join for every comparison? can we do this outside the loop?

elemArr = elemArr[:len(elemArr)-1]

for key, val := range data {
if val == strings.Join(elemArr, ",") {
Copy link
Contributor

Choose a reason for hiding this comment

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

we should use the lookup field for comparison not compare the whole record
https://developer.adobe.com/marketo-apis/api/mapi/#tag/Bulk-Import-Leads

Copy link
Contributor

@shrouti1507 shrouti1507 Aug 6, 2024

Choose a reason for hiding this comment

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

There can be one possible change in the functionality. The user needs to ensure that lookup field should be chosen as primary key while configuring the source.
Here is the reason:
Let's say lookup field is Email, and while configuring the source if we choose ID as a primary key, then source can query the rows where id must be present but email can be null / empty string etc.
In that case, Marketo throws some warning.
I was sending the below data in csv:

FirstName,LastName,Email,Company
'Able','Baker','', 'marketo'
Able,"Baker","dummy@gmail.com", "marketo"

And while polling I got response :

{
    "requestId": "14cf8#1912627bf66",
    "result": [
        {
            "batchId": 7271,
            "importId": "7271",
            "status": "Complete",
            "numOfLeadsProcessed": 2,
            "numOfRowsFailed": 0,
            "numOfRowsWithWarning": 1,
            "message": "Import succeeded, 2 records imported (2 members), 1 warning."
        }
    ],
    "success": true
}

For this the code flow will appear in fetch job status part, and if we search with only lookup field, we will not get anything to refer from. Previously we were marking these kind of warnings as failure, but here, it will be automatically marked as success.

The response :

FirstName,LastName,Email,Company,Import Warning Reason
'Able','Baker','', 'marketo',Invalid email address

@koladilip let me know if you need some more clarification.

Copy link
Contributor

Choose a reason for hiding this comment

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

this is a rare case and it is fine, we can update a footer note in the form, I don't think this breaks our logic so we are good

Copy link

This PR is considered to be stale. It has been open 20 days with no further activity thus it is going to be closed in 7 days. To avoid such a case please consider removing the stale label manually or add a comment to the PR.

@github-actions github-actions bot added the Stale label Aug 27, 2024
@github-actions github-actions bot removed the Stale label Sep 3, 2024
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.

3 participants