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

refactor: capture ingestion time at receive #1210

Merged
merged 2 commits into from
Feb 25, 2025
Merged

Conversation

de-sh
Copy link
Contributor

@de-sh de-sh commented Feb 25, 2025

Fixes #XXXX.

Description

Currently we are capturing ingestion time in many disjoint places, with this PR we bring it to just one point, right after data is received.


This PR has:

  • been tested to ensure log ingestion and log query works.
  • added comments explaining the "why" and the intent of the code wherever would not be obvious for an unfamiliar reader.
  • added documentation for new or modified features or behaviors.

Summary by CodeRabbit

  • New Features
    • Enhanced event processing with a centralized, current timestamp applied uniformly across event logs, batching, and ingestion. This update ensures that all events and records now display a precise and consistent time, resulting in improved accuracy and traceability in real‑time analytics and historical data.

Copy link

coderabbitai bot commented Feb 25, 2025

Walkthrough

This change series introduces a new timestamp parameter across several modules. The modifications update method signatures in key functions such as into_recordbatch and get_timestamp_array so that the current UTC time (via Utc::now()) is passed explicitly. Updates span the Kafka processor, event formatting trait, HTTP ingest handlers, and Arrow utility. The consistent propagation of the timestamp parameter enhances the precision of record batch generation and log processing.

Changes

File(s) Change Summary
src/connectors/kafka/processor.rs
src/event/format/mod.rs
Updated into_recordbatch signatures to include a new timestamp parameter (p_timestamp), ensuring that the current UTC time is passed and utilized in event batch construction.
src/handlers/http/ingest.rs
src/handlers/http/modal/utils/ingest_utils.rs
Modified internal logic to capture the current timestamp using Utc::now() and pass it consistently to related functions and tests, replacing the previous parsed_timestamp variable.
src/utils/arrow/mod.rs Updated the get_timestamp_array function signature to accept a DateTime<Utc> parameter, adjusting its functionality and test cases to generate timestamp arrays based on the provided timestamp.

Sequence Diagram(s)

sequenceDiagram
    participant IngestHandler as HTTP Ingest Handler
    participant KafkaProcessor as Kafka Processor
    participant EventFormat as Event Format Module
    participant ArrowUtil as Arrow Utility

    IngestHandler->>KafkaProcessor: Invoke build_event_from_chunk (includes Utc::now())
    KafkaProcessor->>EventFormat: Call into_recordbatch(p_timestamp = Utc::now(), ...)
    EventFormat->>ArrowUtil: Request get_timestamp_array(p_timestamp, num_rows)
    ArrowUtil-->>EventFormat: Return timestamp array
    EventFormat-->>KafkaProcessor: Return RecordBatch with timestamp data
    KafkaProcessor-->>IngestHandler: Return processed event batch
Loading

Possibly related PRs

Suggested reviewers

  • nikhilsinhaparseable
  • parmesant

Poem

Oh, I hop with delight, a rabbit on the run,
Timestamp in paw, coding under the sun.
Every function now sings a time-tuned song,
From Kafka to Arrow, the logs dance along.
With a twitch of my nose, the changes gleam bright –
Celebrate the code, as day turns into night!
🐇

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

🪧 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>, please review it.
    • 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @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 generate docstrings to generate docstrings for this PR. (Beta)
  • @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 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.

Copy link

@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

🧹 Nitpick comments (1)
src/connectors/kafka/processor.rs (1)

77-87: Consider using the same timestamp instance throughout the function.

While the timestamp for the record batch is now passed explicitly at line 71, a separate timestamp is still generated for parsed_timestamp at line 83. For better consistency, consider using the same timestamp instance for both places.

+let now = Utc::now();
 let (rb, is_first) = batch_json_event.into_recordbatch(
     &schema,
-    Utc::now(),
+    now,
     static_schema_flag,
     time_partition.as_ref(),
     schema_version,
 )?;

 let p_event = ParseableEvent {
     rb,
     stream_name: stream_name.to_string(),
     origin_format: "json",
     origin_size: total_payload_size,
     is_first_event: is_first,
-    parsed_timestamp: Utc::now().naive_utc(),
+    parsed_timestamp: now.naive_utc(),
     time_partition: None,
     custom_partition_values: HashMap::new(),
     stream_type: StreamType::UserDefined,
 };
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 245ec54 and 6cf0ef2.

📒 Files selected for processing (5)
  • src/connectors/kafka/processor.rs (1 hunks)
  • src/event/format/mod.rs (3 hunks)
  • src/handlers/http/ingest.rs (14 hunks)
  • src/handlers/http/modal/utils/ingest_utils.rs (4 hunks)
  • src/utils/arrow/mod.rs (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (10)
  • GitHub Check: Build Default x86_64-pc-windows-msvc
  • GitHub Check: Build Default aarch64-apple-darwin
  • GitHub Check: Build Default x86_64-apple-darwin
  • GitHub Check: Build Kafka aarch64-apple-darwin
  • GitHub Check: Build Default aarch64-unknown-linux-gnu
  • GitHub Check: Quest Smoke and Load Tests for Standalone deployments
  • GitHub Check: Build Default x86_64-unknown-linux-gnu
  • GitHub Check: Build Kafka x86_64-unknown-linux-gnu
  • GitHub Check: coverage
  • GitHub Check: Quest Smoke and Load Tests for Distributed deployments
🔇 Additional comments (24)
src/connectors/kafka/processor.rs (1)

69-75: Updated timestamp handling matches new method signature.

The code now correctly passes the current timestamp from Utc::now() to the into_recordbatch method, aligning with the updated signature in the EventFormat trait.

src/handlers/http/modal/utils/ingest_utils.rs (4)

99-99: Captures ingestion timestamp at a single point.

Storing the current time in a variable at the start ensures consistent timestamp usage throughout the log processing flow.


125-125: Uses the captured timestamp for consistency.

Uses the previously captured timestamp rather than generating a new one, ensuring the same timestamp is used consistently.


146-152: Passes the captured timestamp to into_event_batch.

Correctly updates the function call to pass the timestamp parameter, ensuring consistency with the updated method signature.


170-184: Updates function signature to accept timestamp parameter.

The function signature has been properly updated to accept a DateTime<Utc> parameter, and it correctly passes this timestamp to the underlying into_recordbatch method.

src/utils/arrow/mod.rs (3)

136-138: Function signature enhanced to accept explicit timestamp.

The get_timestamp_array function now accepts a DateTime<Utc> parameter instead of always using the current time, providing more flexibility and ensuring consistent timestamp usage across the codebase.


197-206: Tests updated to match new function signature.

The tests have been properly updated to work with the new function signature, including creating a timestamp variable and comparing against its value.


210-212: Zero-size test updated for new signature.

This test has been properly updated to match the new function signature.

src/event/format/mod.rs (2)

108-115: Method signature updated to accept timestamp parameter.

The into_recordbatch method now accepts a p_timestamp parameter, allowing the ingestion time to be captured at receipt and consistently used throughout processing.


145-150: Uses provided timestamp for array generation.

Updated to pass the provided timestamp to get_timestamp_array rather than generating a new one, ensuring consistency in timestamp usage.

src/handlers/http/ingest.rs (14)

82-82: Good improvement - capturing timestamp earlier in the process

Adding a timestamp capture at the beginning of the function ensures consistency throughout the processing pipeline. This aligns with the PR objective of capturing ingestion time at receipt.


96-96: Consistent timestamp propagation

Appropriate modification to pass the captured timestamp to the into_recordbatch method, ensuring the same timestamp is used throughout the processing pipeline.


104-104: Using consistent timestamp reference

Good change to use the previously captured timestamp instead of generating a new one. This maintains temporal consistency between record creation and event processing.


396-404: Updated test function signature to match implementation changes

The into_event_batch test call has been properly updated to include the timestamp parameter, ensuring the tests reflect the new implementation requirements.


430-438: Consistent test updates

Test cases have been consistently updated to include the timestamp parameter in all calls to into_event_batch.


468-469: Aligned test with implementation

Test case correctly updated to include timestamp parameter.


499-501: Test assertion updated correctly

Error checking test case properly updated to include timestamp in method call.


517-518: Test consistency maintained

Empty object test correctly updated with timestamp parameter.


557-565: Array conversion test updated

Array to recordbatch test properly updated to include timestamp parameter.


611-619: Test with null values updated correctly

Test with null values in arrays properly updated with timestamp parameter.


666-667: Schema derivation test updated

Test with schema derivation properly updated to include timestamp parameter.


714-716: Schema mismatch test updated

Schema mismatch error test properly updated with timestamp parameter.


757-757: Nested type test updated

Nested array object test properly updated to include timestamp parameter.


846-846: Schema version V1 test updated

Test with SchemaVersion::V1 properly updated to include timestamp parameter.

Copy link
Contributor

@nikhilsinhaparseable nikhilsinhaparseable left a comment

Choose a reason for hiding this comment

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

good to merge

@nitisht nitisht merged commit b651864 into parseablehq:main Feb 25, 2025
14 checks passed
@de-sh de-sh deleted the one-time branch February 25, 2025 10:57
7h3cyb3rm0nk pushed a commit to 7h3cyb3rm0nk/parseable that referenced this pull request Feb 26, 2025
Currently we are capturing ingestion time in many disjoint 
places, with this PR we bring it to just one point, right after data is received.
7h3cyb3rm0nk pushed a commit to 7h3cyb3rm0nk/parseable that referenced this pull request Feb 26, 2025
Currently we are capturing ingestion time in many disjoint 
places, with this PR we bring it to just one point, right after data is received.
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