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: delete pipeline #4156

Merged
merged 16 commits into from
Jul 5, 2024
Merged

Conversation

shuiyisong
Copy link
Contributor

@shuiyisong shuiyisong commented Jun 17, 2024

I hereby agree to the terms of the GreptimeDB CLA.

Refer to a related PR or issue link (optional)

What's changed and what's your intention?

This pr mainly

  1. adds delete pipeline api
  2. some refactor work, including moving mod.rs to xxx.rs
  3. adds integration test for pipeline api(create, insert and delete)

Checklist

  • I have written the necessary rustdoc comments.
  • I have added the necessary unit tests and integration tests.
  • This PR requires documentation updates.

Summary by CodeRabbit

  • New Features

    • Introduced GreptimedbManageResponse for better manage API responses, including execution times and formatted outputs.
    • Added ManageResult and PipelineOutput to enhance script and pipeline management responses.
  • Tests

    • Added HTTP test suite to validate pipeline setup, data writing, and pipeline removal with test_pipeline_api.
  • Documentation

    • Improved comments for clarity in convert_scalar_to_py_obj_and_back() and test_vm().

@github-actions github-actions bot added the docs-not-required This change does not impact docs. label Jun 17, 2024
Copy link
Contributor

coderabbitai bot commented Jun 27, 2024

Important

Review skipped

Review was skipped as selected files did not have any reviewable changes.

Files selected but had no reviewable changes (1)
  • src/pipeline/src/etl/processor.rs

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

Walkthrough

The recent updates involve various modules concerning pipeline management functionality. This includes changes to function signatures, restructuring imports, refactoring error handling, and adding new data handling methods and structures. Tests were also updated to reflect these changes, including new methods for managing pipelines via HTTP endpoints, and improved clarity in comments. The Greptime Manage API Response module is notably enhanced with functionalities for pipeline and script management responses.

Changes

Files Change Summaries
.../src/instance/log_handler.rs Reorder imports, update delete_pipeline signature, remove UnsupportedDeletePipelineSnafu, modify declarations.
.../pipeline_operator.rs Reorganize imports, move PIPELINE_TABLE_NAME, adjust method visibility, add delete_pipeline method.
.../table.rs Refactor datafusion imports, rename functions/constants, reorganize PipelineTable methods, adjust error handling and logic.
.../http/event.rs Restructure imports, add LogValidator/LogState, modify add_pipeline function, add delete_pipeline function.
.../query_handler.rs Reorder imports, update delete_pipeline to include version parameter.
.../gsub.rs Update pipeline description in YAML for tests.
.../pipeline.rs Update pipeline description for complex data test.
.../http.rs Add LogValidatorRef in HttpServerBuilder, modify route_log method signature.
.../greptime_manage_resp.rs Introduce structures and methods for managing pipelines/scripts responses, add tests.
tests-integration/tests/http.rs Add test_pipeline_api function to setup, write, remove pipeline, and handle failure scenarios.
src/script/src/python/rspython/builtins/test.rs Improve comment clarity without altering functionality in convert_scalar_to_py_obj_and_back() and test_vm() functions.

Sequence Diagram(s)

Poem

In coding realms, where pipelines dwell,
New methods rise, improvements swell.
Deleting now considers version's call,
Errors caught, imports stand tall.
A rabbit cheers for code refined,
With tests and flows perfectly aligned.
🎉✨


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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

@shuiyisong shuiyisong marked this pull request as ready for review June 27, 2024 12:32
@shuiyisong shuiyisong requested a review from a team as a code owner June 27, 2024 12:32
@shuiyisong shuiyisong requested a review from paomian June 27, 2024 12:35
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 3

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 8702066 and 92e657e.

Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
Files selected for processing (16)
  • src/frontend/src/instance/log_handler.rs (2 hunks)
  • src/frontend/src/server.rs (2 hunks)
  • src/pipeline/Cargo.toml (1 hunks)
  • src/pipeline/src/lib.rs (1 hunks)
  • src/pipeline/src/manager.rs (1 hunks)
  • src/pipeline/src/manager/error.rs (2 hunks)
  • src/pipeline/src/manager/pipeline_operator.rs (5 hunks)
  • src/pipeline/src/manager/table.rs (8 hunks)
  • src/pipeline/src/manager/util.rs (1 hunks)
  • src/servers/src/error.rs (2 hunks)
  • src/servers/src/http.rs (3 hunks)
  • src/servers/src/http/event.rs (8 hunks)
  • src/servers/src/query_handler.rs (2 hunks)
  • tests-integration/Cargo.toml (1 hunks)
  • tests-integration/src/test_util.rs (1 hunks)
  • tests-integration/tests/http.rs (3 hunks)
Files skipped from review due to trivial changes (2)
  • src/pipeline/Cargo.toml
  • tests-integration/Cargo.toml
Additional comments not posted (20)
src/pipeline/src/lib.rs (1)

21-24: Approved new exports for pipeline management.

The added exports are coherent with the described functionality enhancements in pipeline management. Ensure that these new exports are covered by adequate unit tests to maintain code quality.

src/pipeline/src/manager.rs (4)

28-28: Constant for pipeline table name defined.

Ensure that the PIPELINE_TABLE_NAME is consistent with the actual table names used in the database schema.


30-34: Clear and well-documented type alias for PipelineVersion.

The use of Option<TimestampNanosecond> is appropriate for representing optional data, and the comments add useful context for developers.


36-37: Type alias for PipelineInfo is appropriate.

This alias correctly encapsulates the necessary data for pipeline information, aligning with the system's requirements.


39-40: Type aliases using Arc for thread-safe sharing.

Ensure that the use of Arc does not introduce memory leaks or unnecessary overhead in the system.

src/pipeline/src/manager/util.rs (3)

26-35: Function to_pipeline_version correctly implemented.

The error handling using InvalidPipelineVersionSnafu is appropriate. Consider adding more comprehensive tests to cover various error scenarios and edge cases.


37-50: Function build_plan_filter effectively constructs query filters.

Ensure that this function integrates smoothly with the rest of the database querying mechanisms, and consider adding integration tests to verify its effectiveness.


52-61: Cache key generation function generate_pipeline_cache_key is well-implemented.

Verify that the cache keys generated by this function are effectively utilized by the caching system and do not lead to performance bottlenecks.

src/frontend/src/instance/log_handler.rs (1)

71-80: Method delete_pipeline updated to handle pipeline versions.

The update to include the version parameter is crucial for managing different versions of pipelines. Ensure that integration tests cover scenarios with different versions to validate the method's functionality.

src/pipeline/src/manager/error.rs (1)

105-110: New error type InvalidPipelineVersion appropriately defined.

Ensure that this error type is handled consistently across the system, particularly in functions that parse or manipulate pipeline versions.

src/servers/src/query_handler.rs (1)

147-152: Approved: Updated delete_pipeline function signature to include versioning.

This change aligns with the pipeline management enhancements and is crucial for handling specific pipeline versions. Ensure that all integrations with this function are updated to pass the correct version.

Verification successful

Ensure all integrations with the delete_pipeline function are updated to pass the correct version parameter.

The following instances were found:

  • src/servers/src/query_handler.rs
  • src/servers/src/http.rs
  • src/servers/src/http/event.rs
  • src/pipeline/src/manager/table.rs
  • src/pipeline/src/manager/pipeline_operator.rs
  • src/frontend/src/instance/log_handler.rs

We need to verify that each of these calls includes the version parameter. Let's inspect these occurrences in detail to confirm the correct usage.


Approved: Updated delete_pipeline function signature to include versioning.

The function calls to delete_pipeline across the codebase have been verified to include the version parameter, ensuring proper integration with the updated function signature.

  • src/servers/src/http/event.rs: Correct usage found.
  • src/pipeline/src/manager/pipeline_operator.rs: Correct usage found.
  • src/frontend/src/instance/log_handler.rs: Correct usage found.

No issues found with the integration of the updated function signature.

Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify all function calls to `delete_pipeline` in the project.

# Test: Search for the function usage. Expect: Only occurances with version parameter.
rg --type rust $'delete_pipeline'

Length of output: 754



Script:

#!/bin/bash
# Description: Verify correct usage of the delete_pipeline function in each file.

# Check each occurrence of delete_pipeline for correct parameters
for file in src/servers/src/query_handler.rs src/servers/src/http.rs src/servers/src/http/event.rs src/pipeline/src/manager/table.rs src/pipeline/src/manager/pipeline_operator.rs src/frontend/src/instance/log_handler.rs; do
    echo "Checking $file"
    rg --context 5 'delete_pipeline' $file
done

Length of output: 4905

src/servers/src/http/event.rs (1)

Line range hint 103-135: Approved: Updated HTTP handlers for pipeline operations with version handling.

The changes to add and delete pipeline handlers include version handling and validation, which are crucial for accurate pipeline management. Ensure comprehensive testing of these handlers to verify their functionality and error handling.

Also applies to: 147-176

src/servers/src/error.rs (1)

Line range hint 1-250: Removed UnsupportedDeletePipeline error variant.

The removal of the UnsupportedDeletePipeline error variant aligns with the PR's objective to handle pipeline deletions differently. Ensure that all references to this error have been updated throughout the codebase to handle the new logic appropriately.

Verification successful

Verification successful: The UnsupportedDeletePipeline error variant has been removed, and there are no remaining references to it in the codebase.

  • No occurrences of UnsupportedDeletePipeline were found in any files.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify that the `UnsupportedDeletePipeline` error variant is not used elsewhere in the codebase.

# Test: Search for the removed error variant. Expect: No occurrences.
rg --type rust --glob '!src/servers/src/error.rs' 'UnsupportedDeletePipeline'

Length of output: 77



Script:

#!/bin/bash
# Description: Verify that the `UnsupportedDeletePipeline` error variant is not used anywhere in the codebase.

# Test: Search for the removed error variant across all files. Expect: No occurrences.
rg 'UnsupportedDeletePipeline'

Length of output: 30

tests-integration/src/test_util.rs (1)

429-429: Integration of with_log_ingest_handler method.

The addition of the with_log_ingest_handler method in the setup_test_http_app_with_frontend_and_user_provider function is crucial for handling log ingestion in tests. Ensure that the integration is properly tested and that the method behaves as expected under various scenarios.

tests-integration/tests/http.rs (5)

1033-1041: Verify successful pipeline creation.

The test creates a pipeline and checks for a successful response. Ensure that the content of the response is also validated to confirm that the pipeline was created correctly, not just that the server responded with StatusCode::OK.

Consider adding assertions to validate the response content more deeply, such as checking specific fields in the JSON response.


1090-1097: Test failure behavior after pipeline deletion.

This test checks that writing data to a deleted pipeline fails. It is a good practice to verify the type of error returned to ensure it is meaningful and guides the user correctly.

Consider asserting the specific error message or error code returned to ensure it provides clear feedback to the user.


1003-1005: Ensure initialization logging is appropriate for test context.

The line common_telemetry::init_default_ut_logging(); initializes logging for unit tests. Confirm that this is appropriate for integration testing and not just unit testing.


1052-1057: Validate pipeline version handling.

The test extracts and uses the pipeline version from the response. It's crucial to ensure that the version handling is robust, especially given the URL encoding in line 1079.

Verification successful

Pipeline version handling appears robust.

The test suite consistently retrieves, checks, converts, and URL encodes the pipeline version before using it in requests. This ensures that the version handling is robust.

  • tests-integration/tests/http.rs:
    • Lines 1052-1057: Retrieval and validation of the version.
    • Line 1079: URL encoding of the version.
    • Line 1081: Usage of the encoded version in a DELETE request.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Check for consistent handling of pipeline version across the test suite.
rg --type rust 'version.as_bytes()' tests-integration/

Length of output: 182



Script:

#!/bin/bash
# Description: Check for consistent handling of the encoded pipeline version in tests-integration/tests/http.rs
rg --context 5 'url::form_urlencoded::byte_serialize(version.as_bytes()).collect()' tests-integration/tests/http.rs

Length of output: 117



Script:

#!/bin/bash
# Description: Search for all instances of "version" in tests-integration/tests/http.rs to verify its handling.
rg 'version' tests-integration/tests/http.rs

Length of output: 571


1081-1088: Ensure proper cleanup after pipeline deletion.

The test deletes the pipeline and checks for a successful response. It is important to verify that the pipeline is actually removed from the system, not just that the deletion request was successful.

src/servers/src/http.rs (1)

593-601: Refactor suggestion for with_log_ingest_handler method.

This method correctly adds routing for log ingestion. However, consider using consistent error handling and middleware application as seen in other similar methods in this file to ensure uniform behavior across all routes.
[REFACTOR_SUGGESTion]

- self.router.nest(&format!("/{HTTP_API_VERSION}/events"), HttpServer::route_log(handler, validator)),
+ self.router.nest(&format!("/{HTTP_API_VERSION}/events"), HttpServer::route_log(handler, validator).layer(common_middleware()))

src/servers/src/http.rs Show resolved Hide resolved
src/pipeline/src/manager/pipeline_operator.rs Outdated Show resolved Hide resolved
src/pipeline/src/manager/table.rs Show resolved Hide resolved
Copy link

codecov bot commented Jun 27, 2024

Codecov Report

Attention: Patch coverage is 89.13043% with 35 lines in your changes missing coverage. Please review.

Project coverage is 85.04%. Comparing base (69bb7de) to head (9e8773f).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4156      +/-   ##
==========================================
+ Coverage   84.95%   85.04%   +0.08%     
==========================================
  Files        1061     1063       +2     
  Lines      188105   188339     +234     
==========================================
+ Hits       159813   160167     +354     
+ Misses      28292    28172     -120     

@paomian
Copy link
Contributor

paomian commented Jun 28, 2024

almost lgtm.

src/pipeline/src/manager/pipeline_operator.rs Outdated Show resolved Hide resolved
src/pipeline/src/manager/pipeline_operator.rs Outdated Show resolved Hide resolved
src/pipeline/src/manager.rs Outdated Show resolved Hide resolved
src/pipeline/src/manager/util.rs Show resolved Hide resolved
src/pipeline/src/manager/table.rs Show resolved Hide resolved
src/servers/src/http/event.rs Outdated Show resolved Hide resolved
src/servers/src/http/event.rs Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 8

Outside diff range and nitpick comments (4)
src/pipeline/src/manager/util.rs (3)

26-35: Handle potential errors in to_pipeline_version

The function correctly handles valid and invalid versions. However, consider logging the error for debugging purposes.

-                .map_err(|_| InvalidPipelineVersionSnafu { version }.build())?;
+                .map_err(|e| {
+                    eprintln!("Error parsing timestamp: {:?}", e);
+                    InvalidPipelineVersionSnafu { version }.build()
+                })?;

37-49: Optimize the conditional logic in build_plan_filter

The current implementation is clear, but you can simplify the conditional logic using if let with an else.

-    if let Some(v) = version {
-        and(
-            schema_and_name_filter,
-            col(PIPELINE_TABLE_CREATED_AT_COLUMN_NAME).eq(lit(v.0.to_iso8601_string())),
-        )
-    } else {
-        schema_and_name_filter
-    }
+    version.map_or(schema_and_name_filter, |v| {
+        and(
+            schema_and_name_filter,
+            col(PIPELINE_TABLE_CREATED_AT_COLUMN_NAME).eq(lit(v.0.to_iso8601_string())),
+        )
+    })

52-61: Consider using format! for generate_pipeline_cache_key

The format! macro is used correctly, but consider adding comments to explain the logic for clarity.

// Generate cache key with version or 'latest' if version is None
match version {
    Some(version) => format!("{}/{}/{}", schema, name, i64::from(version)),
    None => format!("{}/{}/latest", schema, name),
}
src/pipeline/src/manager/table.rs (1)

318-391: Add detailed logging for pipeline deletion

The delete_pipeline method performs several critical steps. Add detailed logging at each step to aid in debugging and maintenance.

info!("Checking if pipeline exists in catalog: {}, version: {:?}", name, version);
let pipeline = self.find_pipeline(schema, name, version).await?;
if pipeline.is_none() {
    info!("Pipeline not found: {}, version: {:?}", name, version);
    return Ok(());
}
info!("Pipeline found: {}, version: {:?}", name, version);
Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 92e657e and 7a2a61e.

Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
Files selected for processing (7)
  • src/pipeline/src/lib.rs (1 hunks)
  • src/pipeline/src/manager.rs (1 hunks)
  • src/pipeline/src/manager/pipeline_operator.rs (6 hunks)
  • src/pipeline/src/manager/table.rs (8 hunks)
  • src/pipeline/src/manager/util.rs (1 hunks)
  • src/pipeline/src/metrics.rs (1 hunks)
  • src/servers/src/http/event.rs (8 hunks)
Files skipped from review as they are similar to previous changes (3)
  • src/pipeline/src/lib.rs
  • src/pipeline/src/manager.rs
  • src/servers/src/http/event.rs

src/pipeline/src/metrics.rs Show resolved Hide resolved
src/pipeline/src/metrics.rs Show resolved Hide resolved
src/pipeline/src/metrics.rs Show resolved Hide resolved
src/pipeline/src/manager/util.rs Show resolved Hide resolved
src/pipeline/src/manager/pipeline_operator.rs Show resolved Hide resolved
src/pipeline/src/manager/pipeline_operator.rs Show resolved Hide resolved
src/pipeline/src/manager/pipeline_operator.rs Show resolved Hide resolved
src/pipeline/src/manager/table.rs Show resolved Hide resolved
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 7a2a61e and 0ba09f9.

Files selected for processing (5)
  • src/frontend/src/instance/log_handler.rs (2 hunks)
  • src/pipeline/src/manager/pipeline_operator.rs (6 hunks)
  • src/pipeline/src/manager/table.rs (9 hunks)
  • src/servers/src/http/event.rs (7 hunks)
  • src/servers/src/query_handler.rs (2 hunks)
Files skipped from review as they are similar to previous changes (4)
  • src/frontend/src/instance/log_handler.rs
  • src/pipeline/src/manager/pipeline_operator.rs
  • src/servers/src/http/event.rs
  • src/servers/src/query_handler.rs
Additional comments not posted (8)
src/pipeline/src/manager/table.rs (8)

28-29: Approved: Necessary imports added.

The imports for col and TableReference are necessary for the logical plan and table reference in the new delete_pipeline method.


47-53: Approved: Updated error handling and utility imports.

The imports for error handling and utility functions are necessary for the new method implementations.


55-65: Approved: Addition of pipeline table column constants and cache settings.

The addition of constants for pipeline table columns and cache settings improves code readability and maintainability.


Line range hint 68-82: Approved: Addition of cache to PipelineTable struct.

The addition of a cache to the PipelineTable struct improves performance by storing compiled pipelines.


251-255: Approved: Addition of logging for successful pipeline insertions.

Logging successful pipeline insertions helps in monitoring and debugging.


268-282: Approved: Caching of compiled pipelines in get_pipeline method.

Caching compiled pipelines improves performance by avoiding redundant compilations.


305-311: Approved: Caching compiled pipelines with and without version in insert_and_compile method.

Caching pipelines with and without version ensures that the latest and specific versions are quickly accessible.


317-393: Approved: Addition of delete_pipeline method with necessary checks and cache removal.

The delete_pipeline method includes necessary checks for pipeline existence, logical plan creation, execution, and cache removal. This addition enhances the pipeline management functionality.

Copy link
Contributor

@killme2008 killme2008 left a comment

Choose a reason for hiding this comment

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

LGTM

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Outside diff range and nitpick comments (1)
src/servers/src/http/greptime_manage_resp.rs (1)

74-96: Fix the typo in the comment.

The IntoResponse implementation is correct. However, there is a typo in the comment.

-  // We delibrately don't add this format into [`crate::http::ResponseFormat`]
+  // We deliberately don't add this format into [`crate::http::ResponseFormat`]
Tools
GitHub Check: Check typos and docs

[warning] 80-80:
"delibrately" should be "deliberately".

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0ba09f9 and fe1707c.

Files selected for processing (6)
  • src/pipeline/tests/gsub.rs (1 hunks)
  • src/pipeline/tests/pipeline.rs (1 hunks)
  • src/servers/src/http.rs (4 hunks)
  • src/servers/src/http/event.rs (8 hunks)
  • src/servers/src/http/greptime_manage_resp.rs (1 hunks)
  • tests-integration/tests/http.rs (3 hunks)
Files skipped from review due to trivial changes (2)
  • src/pipeline/tests/gsub.rs
  • src/pipeline/tests/pipeline.rs
Files skipped from review as they are similar to previous changes (3)
  • src/servers/src/http.rs
  • src/servers/src/http/event.rs
  • tests-integration/tests/http.rs
Additional context used
GitHub Check: Check typos and docs
src/servers/src/http/greptime_manage_resp.rs

[warning] 80-80:
"delibrately" should be "deliberately".

Additional comments not posted (4)
src/servers/src/http/greptime_manage_resp.rs (4)

1-23: Header comments and imports look good.

The standard Apache License header comments and necessary imports are correctly included.


24-58: Struct definition and methods look good.

The GreptimedbManageResponse struct and its methods are well-defined and appropriately handle serialization and deserialization.


60-72: Enum and struct definitions look good.

The ManageResult enum and PipelineOutput struct are well-defined. The TODO comment for future refactoring is noted.


99-136: Test module looks good.

The test case for the into_response method is comprehensive and correctly validates the method.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between fe1707c and a1d7ab7.

Files selected for processing (1)
  • src/servers/src/http/greptime_manage_resp.rs (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • src/servers/src/http/greptime_manage_resp.rs

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between a1d7ab7 and b946f0c.

Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
Files selected for processing (1)
  • tests-integration/tests/http.rs (3 hunks)
Files skipped from review as they are similar to previous changes (1)
  • tests-integration/tests/http.rs

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between b946f0c and a8913c0.

Files selected for processing (1)
  • src/script/src/python/rspython/builtins/test.rs (2 hunks)
Files skipped from review due to trivial changes (1)
  • src/script/src/python/rspython/builtins/test.rs

@shuiyisong shuiyisong added this pull request to the merge queue Jul 5, 2024
Merged via the queue into GreptimeTeam:main with commit 849e0b9 Jul 5, 2024
51 checks passed
@shuiyisong shuiyisong deleted the feat/delete_pipeline branch July 5, 2024 06:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs-not-required This change does not impact docs.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants