-
Notifications
You must be signed in to change notification settings - Fork 15
Port ChartHistogram from FireFly Core (#196) #202
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
Merged
EnriqueL8
merged 3 commits into
hyperledger-firefly:main
from
Apostlex0:feature/chart-histogram
Jul 22, 2026
+547
−0
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,178 @@ | ||
| // Copyright © 2024 Kaleido, Inc. | ||
| // | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package dbsql | ||
|
|
||
| import ( | ||
| "context" | ||
| "database/sql" | ||
| "strconv" | ||
|
|
||
| sq "github.com/Masterminds/squirrel" | ||
| "github.com/hyperledger/firefly-common/pkg/config" | ||
| "github.com/hyperledger/firefly-common/pkg/fftypes" | ||
| "github.com/hyperledger/firefly-common/pkg/i18n" | ||
| ) | ||
|
|
||
| // GetChartHistogram executes a collection of queries (one per interval) and builds | ||
| // a histogram response for the specified table and time intervals. | ||
| func (s *Database) GetChartHistogram( | ||
| ctx context.Context, | ||
| tableName string, | ||
| timestampColumn string, | ||
| typeColumn string, | ||
| namespaceColumn string, | ||
| namespaceValue string, | ||
| intervals []fftypes.ChartHistogramInterval, | ||
| ) ([]*fftypes.ChartHistogram, error) { | ||
|
|
||
| maxRows := config.GetUint64(SQLConfHistogramsMaxChartRows) | ||
|
|
||
| // check if we have a type column for grouping | ||
| hasTypeColumn := typeColumn != "" | ||
|
|
||
| // Build qs for each interval | ||
| queries := s.buildHistogramQueries( | ||
| tableName, timestampColumn, typeColumn, | ||
| namespaceColumn, namespaceValue, | ||
| intervals, maxRows, | ||
| ) | ||
|
|
||
| histogramList := []*fftypes.ChartHistogram{} | ||
|
|
||
| for i, query := range queries { | ||
| rows, _, err := s.Query(ctx, tableName, query) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| defer rows.Close() | ||
|
|
||
| // Process results | ||
| data, total, err := s.processHistogramRows(ctx, tableName, rows, hasTypeColumn) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
|
|
||
| // Build histogram bucket | ||
| histBucket := &fftypes.ChartHistogram{ | ||
| Count: strconv.FormatInt(total, 10), | ||
| Timestamp: intervals[i].StartTime, | ||
| Types: []*fftypes.ChartHistogramType{}, | ||
| IsCapped: total == int64(maxRows), //warning here doesn't matter since maxrows value is capped at 100 | ||
| } | ||
|
|
||
| // Add type counts if applicable | ||
| if hasTypeColumn { | ||
| for t, c := range data { | ||
| histBucket.Types = append(histBucket.Types, | ||
| &fftypes.ChartHistogramType{ | ||
| Count: strconv.Itoa(c), | ||
| Type: t, | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| histogramList = append(histogramList, histBucket) | ||
| } | ||
|
|
||
| return histogramList, nil | ||
| } | ||
|
|
||
| // buildHistogramQueries constructs SQL queries for each time interval. | ||
| // each query selects data within the interval's time range, optionally | ||
| // filtered by namespace, and limited to maxRows. | ||
| func (s *Database) buildHistogramQueries( | ||
| tableName string, | ||
| timestampColumn string, | ||
| typeColumn string, | ||
| namespaceColumn string, | ||
| namespaceValue string, | ||
| intervals []fftypes.ChartHistogramInterval, | ||
| maxRows uint64, | ||
| ) []sq.SelectBuilder { | ||
|
|
||
| queries := []sq.SelectBuilder{} | ||
|
|
||
| // Determine columns to select | ||
| cols := []string{timestampColumn} | ||
| if typeColumn != "" { | ||
| cols = append(cols, typeColumn) | ||
| } | ||
|
|
||
| for _, interval := range intervals { | ||
| whereClause := sq.And{ | ||
| sq.GtOrEq{timestampColumn: interval.StartTime}, | ||
| sq.Lt{timestampColumn: interval.EndTime}, | ||
| } | ||
|
|
||
| // namespace filter | ||
| if namespaceColumn != "" && namespaceValue != "" { | ||
| whereClause = append(whereClause, sq.Eq{namespaceColumn: namespaceValue}) | ||
| } | ||
|
|
||
| // Build query with PlaceholderFormat applied | ||
| query := sq.Select(cols...). | ||
| From(tableName). | ||
| Where(whereClause). | ||
| OrderBy(timestampColumn). | ||
| Limit(maxRows). | ||
| PlaceholderFormat(s.features.PlaceholderFormat) | ||
|
|
||
| queries = append(queries, query) | ||
| } | ||
|
|
||
| return queries | ||
| } | ||
|
|
||
| // processHistogramRows scans SQL result rows and builds histogram data | ||
| // If hasTypeColumn is true, it groups counts by type else it just | ||
| // counts total rows. | ||
| func (s *Database) processHistogramRows( | ||
| ctx context.Context, | ||
| tableName string, | ||
| rows *sql.Rows, | ||
| hasTypeColumn bool, | ||
| ) (map[string]int, int64, error) { | ||
|
|
||
| total := int64(0) | ||
|
|
||
| if !hasTypeColumn { | ||
| // counting rows | ||
| for rows.Next() { | ||
| var timestamp interface{} | ||
| if err := rows.Scan(×tamp); err != nil { | ||
| return nil, 0, i18n.NewError(ctx, i18n.MsgDBReadErr, tableName) | ||
| } | ||
| total++ | ||
| } | ||
| return map[string]int{}, total, nil | ||
| } | ||
|
|
||
| // Count by type | ||
| typeMap := map[string]int{} | ||
| for rows.Next() { | ||
| var timestamp interface{} | ||
| var typeStr string | ||
| if err := rows.Scan(×tamp, &typeStr); err != nil { | ||
| return nil, 0, i18n.NewError(ctx, i18n.MsgDBReadErr, tableName) | ||
| } | ||
|
|
||
| typeMap[typeStr]++ | ||
| total++ | ||
| } | ||
|
|
||
| return typeMap, total, nil | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| // Copyright © 2024 Kaleido, Inc. | ||
| // | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| package fftypes | ||
|
|
||
| const ( | ||
| ChartHistogramMaxBuckets = 100 | ||
| ChartHistogramMinBuckets = 1 | ||
| ) | ||
|
|
||
| // ChartHistogram: list of buckets with types | ||
| type ChartHistogram struct { | ||
| Count string `ffstruct:"ChartHistogram" json:"count"` | ||
| Timestamp *FFTime `ffstruct:"ChartHistogram" json:"timestamp"` | ||
| Types []*ChartHistogramType `ffstruct:"ChartHistogram" json:"types"` | ||
| IsCapped bool `ffstruct:"ChartHistogram" json:"isCapped"` | ||
| } | ||
|
|
||
| type ChartHistogramType struct { | ||
| Count string `ffstruct:"ChartHistogramType" json:"count"` | ||
| Type string `ffstruct:"ChartHistogramType" json:"type"` | ||
| } | ||
|
|
||
| type ChartHistogramInterval struct { | ||
| StartTime *FFTime `json:"startTime"` | ||
| EndTime *FFTime `json:"endTime"` | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to be 2025 and make sure to add your own Copyright if applicable