This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new a51e3a079e minor : add crypto function benchmark (#19539)
a51e3a079e is described below
commit a51e3a079eff3a158e69ca1a6b49b322268a6325
Author: Namgung Chan <[email protected]>
AuthorDate: Tue Dec 30 14:52:46 2025 +0900
minor : add crypto function benchmark (#19539)
## Which issue does this PR close?
<!--
We generally require a GitHub issue to be filed for all bug fixes and
enhancements and this helps us generate change logs for our releases.
You can link an issue to this PR using the GitHub syntax. For example
`Closes #123` indicates that this PR will close issue #123.
-->
- Closes #.
## Rationale for this change
1. add crypto function benchmark code
2. simplify inner digest function code
1. I checked for any performance changes using the benchmark code(1),
but there was no changement.
<!--
Why are you proposing this change? If this is already explained clearly
in the issue then this section is not needed.
Explaining clearly why changes are proposed helps reviewers understand
your changes and offer better suggestions for fixes.
-->
## What changes are included in this PR?
<!--
There is no need to duplicate the description in the issue here but it
is sometimes worth providing a summary of the individual changes in this
PR.
-->
## Are these changes tested?
yes.
<!--
We typically require tests for all PRs in order to:
1. Prevent the code from being accidentally broken by subsequent changes
4. Serve as another way to document the expected behavior of the code
If tests are not included in your PR, please explain why (for example,
are they covered by existing tests)?
-->
## Are there any user-facing changes?
no
<!--
If there are user-facing changes then we may require documentation to be
updated before approving the PR.
-->
<!--
If there are any breaking changes to public APIs, please add the `api
change` label.
-->
Co-authored-by: Jeffrey Vo <[email protected]>
---
datafusion/functions/Cargo.toml | 5 +++
datafusion/functions/benches/crypto.rs | 75 ++++++++++++++++++++++++++++++++
datafusion/functions/src/crypto/basic.rs | 16 +------
3 files changed, 82 insertions(+), 14 deletions(-)
diff --git a/datafusion/functions/Cargo.toml b/datafusion/functions/Cargo.toml
index 9555e828ca..23a4b79e02 100644
--- a/datafusion/functions/Cargo.toml
+++ b/datafusion/functions/Cargo.toml
@@ -275,6 +275,11 @@ harness = false
name = "ends_with"
required-features = ["string_expressions"]
+[[bench]]
+harness = false
+name = "crypto"
+required-features = ["crypto_expressions"]
+
[[bench]]
harness = false
name = "translate"
diff --git a/datafusion/functions/benches/crypto.rs
b/datafusion/functions/benches/crypto.rs
new file mode 100644
index 0000000000..bf30cc9a0c
--- /dev/null
+++ b/datafusion/functions/benches/crypto.rs
@@ -0,0 +1,75 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements. See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership. The ASF licenses this file
+// to you 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.
+
+extern crate criterion;
+
+use arrow::datatypes::{DataType, Field};
+use arrow::util::bench_util::create_string_array_with_len;
+use criterion::{Criterion, criterion_group, criterion_main};
+use datafusion_common::config::ConfigOptions;
+use datafusion_expr::ScalarFunctionArgs;
+use datafusion_expr_common::columnar_value::ColumnarValue;
+use datafusion_functions::crypto;
+use std::hint::black_box;
+use std::sync::Arc;
+
+fn criterion_benchmark(c: &mut Criterion) {
+ let crypto = vec![
+ crypto::md5(),
+ crypto::sha224(),
+ crypto::sha256(),
+ crypto::sha384(),
+ crypto::sha512(),
+ ];
+ let config_options = Arc::new(ConfigOptions::default());
+
+ for func in crypto {
+ let size = 1024;
+ let arr_args = vec![ColumnarValue::Array(Arc::new(
+ create_string_array_with_len::<i32>(size, 0.2, 32),
+ ))];
+ c.bench_function(&format!("{}_array", func.name()), |b| {
+ b.iter(|| {
+ let args_cloned = arr_args.clone();
+ black_box(func.invoke_with_args(ScalarFunctionArgs {
+ args: args_cloned,
+ arg_fields: vec![Field::new("a", DataType::Utf8,
true).into()],
+ number_rows: size,
+ return_field: Field::new("f", DataType::Utf8, true).into(),
+ config_options: Arc::clone(&config_options),
+ }))
+ })
+ });
+
+ let scalar_args = vec![ColumnarValue::Scalar("test_string".into())];
+ c.bench_function(&format!("{}_scalar", func.name()), |b| {
+ b.iter(|| {
+ let args_cloned = scalar_args.clone();
+ black_box(func.invoke_with_args(ScalarFunctionArgs {
+ args: args_cloned,
+ arg_fields: vec![Field::new("a", DataType::Utf8,
true).into()],
+ number_rows: 1,
+ return_field: Field::new("f", DataType::Utf8, true).into(),
+ config_options: Arc::clone(&config_options),
+ }))
+ })
+ });
+ }
+}
+
+criterion_group!(benches, criterion_benchmark);
+criterion_main!(benches);
diff --git a/datafusion/functions/src/crypto/basic.rs
b/datafusion/functions/src/crypto/basic.rs
index 3cb53d3b60..5a7d891e0c 100644
--- a/datafusion/functions/src/crypto/basic.rs
+++ b/datafusion/functions/src/crypto/basic.rs
@@ -173,26 +173,14 @@ macro_rules! digest_to_array {
($METHOD:ident, $INPUT:expr) => {{
let binary_array: BinaryArray = $INPUT
.iter()
- .map(|x| {
- x.map(|x| {
- let mut digest = $METHOD::default();
- digest.update(x);
- digest.finalize()
- })
- })
+ .map(|x| x.map(|x| $METHOD::digest(x)))
.collect();
Arc::new(binary_array)
}};
}
macro_rules! digest_to_scalar {
- ($METHOD: ident, $INPUT:expr) => {{
- ScalarValue::Binary($INPUT.as_ref().map(|v| {
- let mut digest = $METHOD::default();
- digest.update(v);
- digest.finalize().as_slice().to_vec()
- }))
- }};
+ ($METHOD: ident, $INPUT:expr) => {{ ScalarValue::Binary($INPUT.map(|v|
$METHOD::digest(v).as_slice().to_vec())) }};
}
impl DigestAlgorithm {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]